/* Google Fonts — Cormorant Garamond (headings) + Lato (body) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

/* Design System Tokens */
:root {
  --color-primary: #acd860;       /* Bright Green */
  --color-secondary: #287d54;     /* Dark Forest Green */
  --color-text-main: #3a3530;
  --color-text-muted: #6b6560;
  --color-bg-light: #faf9f7;
  --color-bg-white: #ffffff;
  --color-border: #e8e4df;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-family:  'Lato', sans-serif;
  --transition: all 0.3s ease-in-out;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Elegant heading typography */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-headline,
.slide-title-wp {
  font-family: var(--font-heading) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem);   font-weight: 600; }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }

/* Navigation, buttons, labels — stay Lato */
nav, button, .header-cta, .btn, .btn-slider-wp,
.elementor-tab-title, .elementor-icon-list-text {
  font-family: var(--font-family) !important;
  letter-spacing: 0.06em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Modern Header Layout — Sticky with scroll-shrink effect */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

/* Hamburger menu */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-muted);
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Header right area */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Mobile nav drawer styles */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  #main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--shadow);
  }
  #main-nav.nav-open {
    max-height: 500px;
  }
  .nav-links { flex-direction: column; gap: 0.5rem; padding: 1rem; }
  .header-right { margin-left: auto; }
}


/* Shrinks the header when scrolled down */
.main-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.main-header.scrolled .logo img {
  height: 64px;
}

/* Push page content below fixed header */
body > #global-header + * {
  padding-top: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  width: 100%;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}

.header-container nav {
  margin-left: auto;
  margin-right: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-family);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0px;
  padding: 0.5rem 0;
  position: relative;
  color: var(--color-text-muted);
}

.nav-links a:hover,
.nav-links li.active a {
  color: var(--color-secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
  width: 100%;
}

/* Call to Action Button */
.header-cta {
  background-color: var(--color-secondary);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: var(--shadow);
}

.header-cta:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(172, 216, 96, 0.1) 0%, rgba(40, 125, 84, 0.05) 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

/* Image Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  max-width: 600px;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* 3-Column Grid Layout for Shop & Services */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 4rem 0;
}

.card {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-primary);
}

/* Treatment Detail View */
.treatment-detail {
  padding: 5rem 0;
}

/* Footer widget structure */
.main-footer {
  background-color: #1a231d;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-widget h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-widget p {
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--color-primary);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Custom High-Fidelity Hero Slider (Modern 85vh) */
.custom-hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #0b0f0c;
}

.slider-container-wp {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-wp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  box-sizing: border-box;
  overflow: hidden;
}

.slide-wp.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg-wp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transform: scale(1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-wp.active .slide-bg-wp {
  transform: scale(1.08);
}

.slide-overlay-wp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 35, 29, 0.7) 100%);
  z-index: 1;
}

.slide-content-wp {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 950px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s, opacity 1s ease 0.5s;
}

.slide-wp.active .slide-content-wp {
  opacity: 1;
  transform: translateY(0);
}

.slide-left-align {
  text-align: left;
}

.slide-center-align {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider-border-accent {
  position: absolute;
  top: -25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.slide-title-wp {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

.slide-title-wp .accent-color-green {
  color: #acd860;
  text-shadow: 0 0 10px rgba(172, 216, 96, 0.3);
}

.slide-desc-wp {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
}

.btn-slider-wp {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  border: 2px solid #ffffff;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-slider-wp:hover {
  background-color: #ffffff;
  color: #1a231d;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
}

.slide-layer-image-wp {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s, opacity 1.2s ease 0.7s;
}

.slide-wp.active .slide-layer-image-wp {
  opacity: 1;
  transform: translateX(0);
}

.floating-layer-img {
  max-height: 550px;
  width: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.slider-logo-wrap {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease 0.3s;
}

.slide-wp.active .slider-logo-wrap {
  opacity: 1;
  transform: scale(1);
}

.slider-center-logo {
  height: 90px;
  width: auto;
  filter: brightness(0) invert(1); /* Premium white logo */
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Responsive slider overrides */
@media (max-width: 1024px) {
  .slide-layer-image-wp {
    display: none;
  }
  .slide-wp {
    padding: 0 5%;
    justify-content: center;
  }
  .slide-title-wp {
    font-size: 2.5rem;
  }
}

/* ─── Back to Top Button ───────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(40, 125, 84, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--color-primary);
  box-shadow: 0 6px 28px rgba(172, 216, 96, 0.5);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s ease;
}

#back-to-top:hover svg {
  stroke: #1a231d;
}

/* ─── WooCommerce Catalogue loop h4 typography overrides ─── */
h4.woocommerce-loop-product__title,
.woocommerce ul.products li.product h4.woocommerce-loop-product__title,
.woocommerce ul.products li.product .product-details h4.woocommerce-loop-product__title {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  margin: 0.75rem 0 0.5rem 0 !important;
  text-align: center;
  color: var(--color-secondary) !important;
}

h4.woocommerce-loop-product__title a,
.woocommerce ul.products li.product h4.woocommerce-loop-product__title a {
  color: var(--color-secondary) !important;
  transition: var(--transition);
}

h4.woocommerce-loop-product__title a:hover,
.woocommerce ul.products li.product h4.woocommerce-loop-product__title a:hover {
  color: var(--color-primary) !important;
}

/* ─── Clean Catalogue List Items (Strip Black Dots) ─── */
ul.products,
.products {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

ul.products li,
.products li,
.woocommerce ul.products li.product {
  list-style: none !important;
  list-style-type: none !important;
  background-image: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* ─── Catalogue Controls Bar (Clean and Beautiful Filter) ─── */
.catalogue-controls-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  background: var(--color-bg-white);
  padding: 1rem 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.catalogue-controls-bar .search-wrap {
  flex: 1 1 300px;
}

.catalogue-search-input {
  width: 100%;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.92rem;
  font-family: var(--font-family);
  background: var(--color-bg-light);
  outline: none;
  transition: all 0.3s ease;
}

.catalogue-search-input:focus {
  border-color: var(--color-secondary);
  background: var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(40, 125, 84, 0.12);
}

.catalogue-controls-bar .kadence-shop-top-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.catalogue-controls-bar select.orderby {
  padding: 0.55rem 2.25rem 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background-color: var(--color-bg-white);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23287d54' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.catalogue-controls-bar select.orderby:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(40, 125, 84, 0.12);
}

.woocommerce-result-count {
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0 !important;
}

/* Force 3 Columns on Catalog Grid for Desktop */
@media screen and (min-width: 992px) {
  ul.products,
  .products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    row-gap: 50px !important;
    column-gap: 30px !important;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  ul.products,
  .products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 40px !important;
    column-gap: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  ul.products,
  .products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 40px !important;
  }
}

/* Smooth Product Excerpt Toggle Style */
.product-excerpt.collapsed-excerpt {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0 !important;
  padding: 0;
  display: block !important; /* overrides display: none */
}

.product-excerpt.collapsed-excerpt.expanded {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1rem !important;
}

/* Beautiful Learn More Button Style */
.btn-learn-more {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.btn-learn-more:hover,
.btn-learn-more.active {
  background-color: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(40, 125, 84, 0.25);
  transform: translateY(-1px);
}

/* Center all elements inside product catalog cards */
.woocommerce ul.products li.product,
.products li {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  margin: 0 !important;
  padding: 0 0 2.5rem 0 !important;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-loop-image-link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto 1.5rem auto !important;
}

.woocommerce ul.products li.product img,
.products li img {
  display: block !important;
  margin: 0 auto !important;
}

.product-details {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Premium Infinite Scroll Spinner */
.spinner {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 3px solid rgba(40, 125, 84, 0.1);
  border-left-color: var(--color-secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hide eCommerce features for clean catalog presentation */
.woocommerce-product-details__short-description + .cart,
form.cart,
.price,
.single_add_to_cart_button,
.woocommerce-variation-add-to-cart,
.quantity,
.woocommerce-cart-tab,
.elementor-widget-woocommerce-menu-cart,
#site-header-menu .menu-cart-link {
  display: none !important;
}

/* Product Detail Page Styling */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 991px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.product-detail-image-wrap {
  background: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.product-detail-info-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-sku-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.product-detail-title {
  font-family: var(--font-heading) !important;
  font-size: 2.5rem !important;
  color: var(--color-secondary) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 700 !important;
}

.product-detail-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2.5rem;
}

.product-detail-description p {
  margin-bottom: 1rem;
}

.btn-request-info {
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(40, 125, 84, 0.25);
  transition: all 0.3s ease;
}

.btn-request-info:hover {
  background-color: var(--color-primary);
  color: #1a231d;
  box-shadow: 0 8px 25px rgba(172, 216, 96, 0.4);
  transform: translateY(-2px);
}

/* Info Request Modal Styles */
.info-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 29, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.info-modal-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.info-modal-content {
  background: var(--color-bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--color-border);
  position: relative;
  transform: translateY(30px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-modal-backdrop.visible .info-modal-content {
  transform: translateY(0);
}

.info-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.info-modal-close:hover {
  color: var(--color-secondary);
}

.info-modal-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.info-modal-subheading {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.info-modal-prod-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-bg-light);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
}

.info-modal-prod-summary img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

#modal-product-title-badge {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-light);
  outline: none;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  background: var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(40, 125, 84, 0.1);
}

.btn-request-submit {
  width: 100%;
  background-color: var(--color-secondary);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(40, 125, 84, 0.2);
  transition: all 0.3s;
}

.btn-request-submit:hover {
  background-color: var(--color-primary);
  color: #1a231d;
  box-shadow: 0 6px 20px rgba(172, 216, 96, 0.35);
  transform: translateY(-1px);
}

/* Related Products Slider - Viewport Breakout to span Fullwidth in all places */
.related-slider-container {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
}

.slider-track-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  scroll-behavior: smooth;
  display: block;
}

.slider-track-wrap::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Webkit */
}

.products-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  width: max-content !important;
  float: none !important;
  clear: none !important;
}

/* Individual slider product cards - configured to show 5 items on desktop */
.related-slider-container .slider-track-wrap ul.products-slider-track li.product {
  flex: 0 0 calc(20% - 16px) !important;
  width: 210px !important;
  min-width: 190px !important;
  max-width: 250px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 0 1.5rem 0 !important;
  background: var(--color-bg-white) !important;
  border-radius: 12px !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: var(--shadow) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  float: none !important;
  clear: none !important;
}

.related-slider-container .slider-track-wrap ul.products-slider-track li.product:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Ensure images inside cards display nicely and are not squeezed */
.related-slider-container .slider-track-wrap ul.products-slider-track li.product img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  margin: 0 auto 1rem auto !important;
  display: block !important;
  float: none !important;
}

/* Slider Arrow Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(40, 125, 84, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  font-weight: bold;
}

.slider-btn:hover {
  background-color: var(--color-primary);
  color: #1a231d;
  box-shadow: 0 6px 15px rgba(172, 216, 96, 0.4);
}

.slider-btn.prev-btn {
  left: -10px;
}

.slider-btn.next-btn {
  right: -10px;
}

.slider-btn:disabled {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* Product Page Hero Banner Heights and Centering */
.product-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-hero-section .entry-hero-container-inner {
  position: relative;
  min-height: 320px; /* Matched to reservation page height */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 48px 1.5rem !important; /* Matched to reservation page padding */
  box-sizing: border-box;
}

.product-hero-section .hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 29, 0.6) !important; /* Elegant overlay filter */
  z-index: 1;
}

.product-hero-section .hero-container {
  width: 100%;
  max-width: var(--global-content-width);
  margin: 0 auto;
  z-index: 2;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.product-hero-section .product-title {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100%;
}

/* Custom Home Products and Testimonials sections (non-Elementor) */
.home-products-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg-white);
}

.home-products-section .woocommerce {
  max-width: var(--global-content-width, 1200px);
  margin: 0 auto;
}

.home-testimonials-section {
  background-color: #ee4c5c; /* Reconstructed beautiful pinkish red */
  padding: 6rem 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.home-testimonials-container {
  max-width: var(--global-content-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .home-testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-testimonials-container {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-quote {
  font-family: var(--font-body, inherit);
  font-size: 1.1rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.testimonial-name {
  font-family: var(--font-heading, inherit);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #acd860 !important; /* Premium logo green color for name text */
}

/* Dynamic Text Rotation for "We Do" headline */
.elementor-headline-dynamic-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: 8px;
}

.elementor-headline-dynamic-text {
  display: none;
  opacity: 0;
  color: #acd860; /* Highlight color (logo green) */
}

.elementor-headline-dynamic-text.elementor-headline-text-active {
  display: inline-block;
  opacity: 1;
  animation: swirlIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes swirlIn {
  0% {
    transform: rotate(-15deg) scale(0.7) translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg) scale(1) translateY(0);
    opacity: 1;
  }
}

/* Margin spacing below the animated headline */
.elementor-widget-animated-headline {
  margin-bottom: 4rem !important;
}

/* --- Modernization, Security & SEO Styling Enhancements --- */
html {
  scroll-behavior: smooth;
}

/* Copy Prevention (DevTools & Scraper deterrent) */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection in input forms, reservation, and interactive components */
input, textarea, select, button, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Anti-Drag Image Protection \u2014 prevents click-drag to desktop theft */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* Re-enable pointer-events on clickable images (links, buttons, sliders) */
a img, button img, .slider-track-wrap img, .slide-bg-wp, li.product img,
.testimonial-card img, .logo img, .home-products-section img {
  pointer-events: auto;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark, #1a231d);
}

::-webkit-scrollbar-thumb {
  background: #acd860;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #90b84c;
}

/* Serene Scroll Reveal Animations */
.reveal-fade {
  opacity: 0 !important;
  transform: translateY(22px) !important;
  will-change: transform, opacity;
  transition: opacity 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important, 
              transform 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

.reveal-fade.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Location Page — strip ALL vertical spacing from every parent wrapper */
.elementor-page-172 .content-area,
.elementor-page-172 #primary,
.elementor-page-172 .content-container,
.elementor-page-172 #main,
.elementor-page-172 .site-main,
.elementor-page-172 .content-wrap,
.elementor-page-172 article,
.elementor-page-172 .entry-content-wrap,
.elementor-page-172 .entry-content,
.elementor-page-172 .elementor-172,
.elementor-page-172 .elementor-element-7f7e7d0,
.elementor-page-172 .elementor-element-4e154ff3,
.elementor-page-172 .elementor-element-5e8f7351,
.elementor-page-172 .elementor-element-5e8f7351 > .elementor-widget-wrap {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Location Page Specific Layout (Map edge-to-edge with Contact overlay) */
.elementor-page-172 .elementor-element-12acf066 {
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Make container full width */
.elementor-page-172 .elementor-element-12acf066 > .elementor-container {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* Map Column - Full width */
.elementor-page-172 .elementor-element-5132c0c8 {
  width: 100% !important;
  display: block !important;
  padding: 0 !important;
}

.elementor-page-172 .elementor-element-7ffd2d9d,
.elementor-page-172 .elementor-element-7ffd2d9d .elementor-widget-container,
.elementor-page-172 .elementor-element-7ffd2d9d .elementor-custom-embed {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.elementor-page-172 .elementor-element-7ffd2d9d iframe {
  width: 100% !important;
  height: 75vh !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
}

/* Contact Info Card - Floats in front of the map on the right with 30px margin */
.elementor-page-172 .elementor-element-616d6609 {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  width: 400px !important;
  max-width: calc(100% - 60px) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;
  padding: 2.5rem !important;
  box-shadow: 0 10px 50px rgba(0,0,0,0.18) !important;
  border: 1px solid rgba(172, 216, 96, 0.2) !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
}

/* Hide the duplicate spa photo */
.elementor-page-172 .elementor-element-11ed976f {
  display: none !important;
}

/* Mobile: stack naturally */
@media (max-width: 768px) {
  .elementor-page-172 .elementor-element-12acf066 {
    width: 100vw !important;
  }
  .elementor-page-172 .elementor-element-7ffd2d9d iframe {
    height: 350px !important;
  }
  .elementor-page-172 .elementor-element-616d6609 {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
  }
}

/* --- Global UI Enhancements --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animations */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Instagram Footer Feed */
.footer-instagram {
  padding: 3rem 0;
  background-color: #0b0f0c;
  border-top: 1px solid #1a231d;
  border-bottom: 1px solid #1a231d;
}
.footer-instagram h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}
.footer-instagram h3 a {
  color: var(--color-primary);
  text-decoration: none;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ig-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.ig-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ig-grid a:hover img {
  transform: scale(1.1);
}

/* Gift Cards & Testimonials Sections */
.home-testimonials-section, .gift-cards-section {
  padding: 5rem 0;
  background: var(--color-bg-white);
}
.gift-cards-section {
  background: linear-gradient(135deg, rgba(172, 216, 96, 0.1) 0%, rgba(40, 125, 84, 0.05) 100%);
  text-align: center;
}
.gift-cards-banner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.gift-cards-banner h2 {
  color: var(--color-secondary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gift-cards-banner p {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-weight: bold;
  color: var(--color-secondary);
}

@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid img { height: 180px; }
  .whatsapp-float { bottom: 80px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* --- Google Reviews Slider --- */
.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.reviews-track-wrap {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}
.reviews-track-wrap::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.review-slide {
  flex: 0 0 calc(33.333% - 2rem);
  min-width: 300px;
}

/* --- Groupon Popup --- */
.groupon-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.groupon-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.groupon-popup {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.groupon-popup-overlay.show .groupon-popup {
  transform: translateY(0);
}
.groupon-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.groupon-close-btn:hover {
  color: #333;
}

/* --- Floating Book CTA --- */
.book-now-float {
  position: fixed;
  bottom: 90px;
  left: 40px;
  background: linear-gradient(135deg, #287d54, #1a5e3d);
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 10000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.book-now-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #fff;
}
@media (max-width: 768px) {
  .book-now-float { bottom: 80px; left: 20px; padding: 12px 20px; font-size: 1rem; }
}
