/* ════════════════════════════════════════════════════════════════
   BEYOND BEAUTY SWELLENDAM — Main Stylesheet
   Fonts: Cormorant Garamond (headings) · Jost (body)
   Palette: Dark Gold · Gray · White
════════════════════════════════════════════════════════════════ */

/* ── 1. Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C49A3C;
  --gold-dark:   #9A7020;
  --gold-light:  #E0C06C;
  --dark:        #141414;
  --dark-2:      #1C1C1C;
  --dark-3:      #252525;
  --gray:        #888888;
  --gray-light:  #D0D0D0;
  --off-white:   #F7F5F1;
  --white:       #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container:   1200px;
  --transition:  0.35s ease;
  --radius:      2px;
}

/* ── 2. Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── 3. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p {
  line-height: 1.85;
  color: var(--gray);
  font-size: 0.97rem;
}

/* ── 4. Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section              { padding: 100px 0; }
.section--light       { background: var(--off-white); }
.section--dark        { background: var(--dark-2); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--gold); }

.section__header { margin-bottom: 60px; }

/* ── 5. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ── 6. Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(20, 20, 20, 0.55);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}

/* Logo — far left */
.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
  flex-shrink: 0;
}
.header__logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.header__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav — takes remaining space, links sit left */
.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav-list li a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.header__nav-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.header__nav-list li a:hover,
.header__nav-list .current-menu-item > a,
.header__nav-list .current_page_item > a { color: var(--gold); }
.header__nav-list li a:hover::after,
.header__nav-list .current-menu-item > a::after { width: 100%; }

/* Mobile footer inside slide-out panel */
.header__nav-mobile-footer { display: none; }

/* Right actions — social icons + separator + Book Now */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Social icon links */
.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition), transform var(--transition);
}
.header__social:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Separator */
.header__sep {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

/* Book Now — pill shaped */
.header__cta {
  padding: 9px 22px !important;
  font-size: 0.67rem !important;
  white-space: nowrap;
  border-radius: 50px !important;
}

/* Hamburger — hidden on desktop */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: left center;
}
.header__menu-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.header__menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

/* ── 7. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(480px, 55vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Background image + overlay are set via inline style in front-page.php
     so WordPress generates the correct absolute URL automatically.
     Fallback dark gradient shown if image is not loaded: */
  background: linear-gradient(160deg, #2A1E08, #181818);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::before,
.hero__bg::after { content: none; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.4s ease forwards;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero__title {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
}
.hero__title span {
  color: var(--gold-light);
  font-style: italic;
  display: block;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero__divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(196, 154, 60, 0.5);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 3rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── 8. About ─────────────────────────────────────────────────── */
.about { background: var(--off-white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}
.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 2;
  border-radius: 12px;
}
.about__image-accent {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--gold);
  z-index: 1;
  opacity: 0.6;
  border-radius: 12px;
}

.about__content { }
.about__content h2 { color: var(--dark); margin-bottom: 1.5rem; }
.about__content p  { margin-bottom: 1.2rem; }
.about__content em { color: var(--gold-dark); font-style: italic; }

/* ── 9. Services (Home) ───────────────────────────────────────── */
.services { background: #EDEAE4; }
.services .section__header { text-align: center; }
.services .section__header h2 { color: var(--dark) !important; }
.services .eyebrow--gold { color: var(--gold-dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card__desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: letter-spacing var(--transition), color var(--transition);
}
.service-card:hover .service-card__link {
  letter-spacing: 0.22em;
  color: var(--gold);
}

.services__cta { text-align: center; }

/* ── 10. Quote Strip ──────────────────────────────────────────── */
.quote-strip {
  background: #2D2D2D;
  padding: 64px 0;
}
.quote-strip blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 11. Booking CTA ──────────────────────────────────────────── */
.booking-cta { text-align: center; }
.booking-cta h2 { color: var(--dark); margin-bottom: 1rem; }
.booking-cta > .container > p { margin-bottom: 2.5rem; }
.booking-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 12. Hours Strip ──────────────────────────────────────────── */
.hours-strip {
  background: #EDEAE4;
  padding: 100px 0;
}
.hours-strip .section__header h2 { color: var(--dark) !important; }
.hours-strip .eyebrow--gold { color: var(--gold-dark); }

.hours__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.hours__item {
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hours__item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.hours__item--closed { opacity: 0.55; }

.hours__day {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.hours__time {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}
.hours__time.closed { color: var(--gray-light); font-style: italic; font-size: 0.85rem; }

.hours__note {
  text-align: center;
  margin-top: 28px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── 13. Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  background: var(--dark);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(30, 18, 0, 0.96) 0%, rgba(20, 20, 20, 0.88) 100%),
    linear-gradient(135deg, #2A1E08, #181818);
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.03em;
}
.page-hero .eyebrow--gold {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.page-hero__line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  box-shadow: 0 0 10px rgba(196, 154, 60, 0.5);
}

/* ── 14. Treatments Page ──────────────────────────────────────── */
.treatments-section { background: var(--white); }

.treatment-category {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}
.treatment-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 8px;
}
.treatment-category__header h2 {
  font-size: 1.7rem;
  color: var(--dark);
}

.treatment-list { }
.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: background var(--transition);
}
.treatment-item:last-child { border-bottom: none; }
.treatment-item:hover { background: rgba(196, 154, 60, 0.04); padding-left: 8px; }

.treatment-item__info { flex: 1; }
.treatment-item__name {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.4;
}
.treatment-item__note {
  display: block;
  font-size: 0.76rem;
  color: var(--gray);
  margin-top: 3px;
  font-style: italic;
}
.treatment-item__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Cancellation notice strip on treatments page */
.cancellation-notice {
  background: var(--off-white);
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.cancellation-notice .container {
  max-width: 900px;
}
.cancellation-notice p {
  font-size: 0.83rem;
  text-align: center;
  color: var(--gray);
}
.cancellation-notice a { color: var(--gold-dark); }
.cancellation-notice a:hover { color: var(--gold); }

/* ── 15. Products Page ────────────────────────────────────────── */

/* Filter bar */
.products-filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  flex-wrap: wrap;
}

/* Search */
.filter-search {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.filter-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}
.filter-search input {
  width: 100%;
  padding: 10px 36px 10px 38px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.filter-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.filter-search input::placeholder { color: var(--gray-light); }

.filter-search__clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px;
  transition: color var(--transition);
}
.filter-search__clear:hover { color: var(--dark); }

/* Category filter select */
.filter-cats { display: flex; }
#category-select {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
  background: var(--off-white);
  cursor: pointer;
  transition: border-color var(--transition);
  white-space: nowrap;
}
#category-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Price sort */
.filter-sort { margin-left: auto; }
.filter-sort select {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--dark);
  background: var(--off-white);
  cursor: pointer;
  transition: border-color var(--transition);
  white-space: nowrap;
}
.filter-sort select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Filter summary row */
.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
  color: var(--gray);
}
.filter-clear-all {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0;
  transition: color var(--transition);
}
.filter-clear-all:hover { color: var(--gold); }

/* Products grid */
.products-section { background: var(--white); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.product-card__image { overflow: hidden; }
.product-card__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__image--placeholder {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image--placeholder span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.5;
  font-style: italic;
}

.product-card__body { padding: 24px; }
.product-card__title { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.product-card__desc { font-size: 0.85rem; margin-bottom: 12px; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0ece4;
}
.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 700;
}

/* Product category label */
.product-card__cat {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

/* No results */
.products-no-results {
  padding: 60px 0;
  text-align: center;
}
.products-no-results__inner { max-width: 360px; margin: 0 auto; }
.products-no-results p { margin-bottom: 1.5rem; }

/* Products placeholder */
.products-placeholder {
  padding: 60px 0;
  text-align: center;
}
.products-placeholder__inner {
  max-width: 480px;
  margin: 0 auto;
}
.products-placeholder__icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.products-placeholder h2 { color: var(--dark); margin-bottom: 1rem; }
.products-placeholder p  { margin-bottom: 2rem; }

/* ── 16. Reviews / Testimonials ───────────────────────────────── */
.reviews-section { }

.reviews-google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.reviews-google-stars {
  color: #F4B400;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Carousel wrapper — fixed height so absolute slides don't collapse it */
.reviews-carousel { margin-top: 48px; }

.reviews-wrapper {
  position: relative;
  min-height: 260px;
}

/* Slides */
.reviews-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  align-content: start;
}
.reviews-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Review card */
.review-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.review-card__stars { display: flex; gap: 3px; }
.review-card__star        { font-size: 1.1rem; color: #ddd; }
.review-card__star.filled { color: #F4B400; }

.review-card__text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  flex: 1;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.review-card__location {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}
.review-card__source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.review-card__source svg { color: #4285F4; }

/* Controls row */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.reviews-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray);
  border-radius: 50%;
  transition: all var(--transition);
  flex-shrink: 0;
}
.reviews-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--off-white);
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.reviews-dot:hover { background: var(--gold-dark); }

/* Responsive */
@media (max-width: 900px) {
  .reviews-slide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-slide { grid-template-columns: 1fr; }
  .reviews-wrapper { min-height: 320px; }
}

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-section { }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.contact-info h2 { color: var(--dark); margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-details-list strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.contact-details-list a,
.contact-details-list span { font-size: 0.97rem; color: var(--dark); }
.contact-details-list a:hover { color: var(--gold-dark); }

.contact-hours h2 { color: var(--dark); margin-bottom: 1rem; }
.contact-hours > p { margin-bottom: 1.5rem; }
.contact-hours__list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.9rem;
}
.contact-hours__list li:last-child { border-bottom: none; }
.contact-hours__list li span:first-child { color: var(--dark); font-weight: 400; }
.contact-hours__list li span:last-child  { color: var(--gray); }
.contact-hours__list li span.closed { color: var(--gray-light); font-style: italic; }
.contact-hours a { color: var(--gold-dark); }
.contact-hours a:hover { color: var(--gold); }

.contact-whatsapp {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
}
.contact-whatsapp .eyebrow { margin-bottom: 0.75rem; }
.contact-whatsapp h2 { color: var(--white); margin-bottom: 1rem; }
.contact-whatsapp p  { color: rgba(255, 255, 255, 0.55); margin-bottom: 2.5rem; }

/* ── 17. Cancellation Page ────────────────────────────────────── */
.cancellation-section { }
.cancellation-content {
  max-width: 760px;
  margin: 0 auto;
}
.cancellation-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.cancellation-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.cancellation-card p { margin: 0; }
.cancellation-card p strong { color: var(--dark); }
.cancellation-card--note { border-color: var(--gray-light); }

.cancellation-content > p a { color: var(--gold-dark); }
.cancellation-content > p a:hover { color: var(--gold); }

/* ── 18. Footer ───────────────────────────────────────────────── */
.site-footer { background: #2D2D2D; }

.footer__main { padding: 80px 0 60px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 48px;
}

.footer__col--brand { }

.footer__logo-link { display: inline-block; margin-bottom: 18px; }
.footer__logo-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer__logo-sub {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.footer__tagline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.footer__hours li span:first-child { color: rgba(255, 255, 255, 0.38); }
.footer__hours li span:last-child  { color: rgba(255, 255, 255, 0.7); }

.footer__appt-note {
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer__contact-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-list a,
.footer__contact-list span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--white); }

/* Footer bar */
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}
.footer__bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bar p, .footer__bar a {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer__bar a { transition: color var(--transition); }
.footer__bar a:hover { color: var(--gold); }

/* ── 19. Page Content (generic) ───────────────────────────────── */
.page-content h1, .page-content h2, .page-content h3 { color: var(--dark); margin-bottom: 1rem; margin-top: 2rem; }
.page-content p  { margin-bottom: 1.2rem; }
.page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-content ul li { margin-bottom: 0.4rem; }
.page-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ── 20. Scroll Animations ────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.animate-on-scroll.from-left  { transform: translateX(-28px); }
.animate-on-scroll.from-right { transform: translateX(28px); }
.animate-on-scroll.animated   { opacity: 1; transform: translate(0); }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger-children.animated > * { opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.13s; }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.21s; }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.29s; }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.37s; }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.45s; }
.stagger-children.animated > *:nth-child(7) { transition-delay: 0.53s; }
.stagger-children.animated > *:nth-child(8) { transition-delay: 0.61s; }

/* ── 21. Keyframes ────────────────────────────────────────────── */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ── 22. Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hours__grid  { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .about__grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about__image-accent { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Push hero content below the fixed 68px header + breathing room at bottom */
  .hero { padding-top: 80px; padding-bottom: 60px; }

  /* Mobile header */
  .header__menu-toggle { display: flex; margin-left: auto; }

  /* Hide desktop-only elements on mobile */
  .header__actions { display: none; }
  .header__sep     { display: none; }

  /* Products filter bar — not sticky on mobile */
  .products-filter-bar { position: static; }

  /* Slide-out nav panel */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 100px 36px 48px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .header__nav.open { right: 0; }

  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 32px;
  }
  .header__nav-list li { width: 100%; }
  .header__nav-list li a {
    display: block;
    padding: 15px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Mobile nav footer: Book Now + social icons */
  .header__nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 8px;
  }
  .header__nav-mobile-footer .btn {
    width: 100%;
    text-align: center;
    border-radius: 50px;
  }
  .header__nav-socials {
    display: flex;
    gap: 20px;
  }
  .header__nav-socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
  }
  .header__nav-socials a:hover { color: var(--gold); }

  /* Services grid */
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* Hours */
  .hours__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bar .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
  .hours__grid    { grid-template-columns: 1fr 1fr; }
  .hero__actions  { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; text-align: center; }
  .booking-cta__actions { flex-direction: column; align-items: center; }
  .booking-cta__actions .btn { width: 100%; max-width: 300px; text-align: center; }
}

/* ── Floating WhatsApp Button ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.18); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.6),  0 2px 8px rgba(0,0,0,0.18); }
}
@media (max-width: 600px) {
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-float__label { display: none; }
}

/* ── 404 Page ───────────────────────────────────────────────── */
.not-found-section {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 100px;
  background: var(--dark);
}
.not-found__code {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(100px, 18vw, 180px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  margin-bottom: -10px;
  user-select: none;
}
.not-found__title {
  color: var(--white);
  margin-bottom: 16px;
}
.not-found__text {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 36px;
}
.not-found__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Compact page hero (single product) ────────────────────── */
.page-hero--compact { padding: 120px 0 44px; }
.page-hero--compact h1 { display: none; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* ── Products order notice ──────────────────────────────────── */
.products-order-notice {
  background: #f5f2ec;
  border-top: 1px solid #e8dfc8;
  border-bottom: 1px solid #e8dfc8;
  padding: 16px 0;
}
.products-order-notice__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.products-order-notice__inner svg { flex-shrink: 0; }
.products-order-notice__inner p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── Product card link ──────────────────────────────────────── */
.product-card__link {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.product-card__link:hover { color: var(--gold); }

/* ── Single product detail ──────────────────────────────────── */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail__image-wrap { position: relative; }
.product-detail__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  display: block;
}
.product-detail__no-img {
  aspect-ratio: 1;
  background: #EDEAE4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.product-detail__name {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin: 8px 0 14px;
  line-height: 1.2;
}
.product-detail__price {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.product-detail__desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.product-detail__desc p { margin: 0 0 12px; }
.product-detail__order-box {
  background: #faf8f4;
  border: 1px solid #e4dac8;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
}
.product-detail__order-note {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.product-detail__order-note strong { color: var(--dark); }
.product-detail__order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-detail__back:hover { color: var(--gold); }

@media (max-width: 860px) {
  .product-detail__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .products-order-notice__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}
