/* ============================================================
   TOUCHWOOD BEAUTY — Premium Global Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --gold:           #C9A55A;
  --gold-light:     #E8D09A;
  --gold-lighter:   #F5EACF;
  --gold-dark:      #8B6914;
  --gold-gradient:  linear-gradient(135deg, #C9A55A 0%, #E8D09A 50%, #C9A55A 100%);
  --gold-text:      linear-gradient(135deg, #8B6914, #C9A55A, #E8D09A, #C9A55A);

  --ivory:          #FAF7F2;
  --ivory-2:        #F2EBE0;
  --ivory-3:        #EDE0CF;

  --blush:          #F7E6E2;
  --blush-mid:      #EBC8C0;
  --blush-dark:     #C98B82;

  --charcoal:       #1A1A1A;
  --charcoal-2:     #3C3C3C;
  --charcoal-3:     #6B6B6B;
  --charcoal-4:     #9A9A9A;

  --white:          #FFFFFF;
  --green-wa:       #25D366;
  --green-wa-dark:  #128C7E;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 30px rgba(201,165,90,0.30);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --nav-h: 82px;
  --section-py: 96px;
  --container-w: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.97rem; color: var(--charcoal-3); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal-3);
  font-style: italic;
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Spacing ---- */
.section { padding: var(--section-py) 0; }
.section-lg { padding: calc(var(--section-py) * 1.35) 0; }
.section-sm { padding: 60px 0; }

.section-header { margin-bottom: 60px; }
.section-header.text-center { display: flex; flex-direction: column; align-items: center; }

/* ---- Divider ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 4px;
  margin: 18px 0 24px;
}
.text-center .gold-divider { margin: 18px auto 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold-gradient);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,165,90,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.50);
}

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 24px;
}

.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.navbar.dark-nav { background: rgba(26,26,26,0.92); backdrop-filter: blur(20px); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer logo slightly larger */
.footer-brand .logo-img { height: 72px; }
/* Mobile — keep logo in bounds of the smaller 70px navbar */
@media (max-width: 768px) {
  .logo-img { height: 54px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--charcoal-2); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--gold-dark); }

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: block;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 2px solid var(--gold-lighter);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--ivory-2);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* Shop Now button inside mobile menu — undo nav-link overrides */
.mobile-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  border-bottom: none;
  border-radius: var(--radius-xl);
}
.mobile-menu .btn:hover { color: var(--charcoal); }


/* ============================================================
   HERO — HOME PAGE SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.72) 0%,
    rgba(26,26,26,0.45) 50%,
    rgba(26,26,26,0.30) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto 0 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}
.hero-eyebrow span { display: block; width: 30px; height: 1px; background: var(--gold-light); }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.12em;
  display: inline-block;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PROMISE STRIP
   ============================================================ */
.promise-strip {
  background: var(--charcoal);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.promise-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.promise-item:last-child { border-right: none; }

.promise-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,165,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.promise-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.promise-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}


/* ============================================================
   PREMIUM PRODUCT CARDS
   ============================================================ */
.featured-section { background: var(--ivory); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- Card Shell ---- */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(120,70,20,0.06), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.38s cubic-bezier(0.4,0,0.2,1),
              border-color 0.38s ease;
  position: relative;
  border: 1.5px solid rgba(201,165,90,0.10);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 72px rgba(120,70,20,0.13), 0 8px 24px rgba(201,165,90,0.10);
  border-color: rgba(201,165,90,0.32);
}

/* ---- Image Area ---- */
.product-card-img {
  position: relative;
  aspect-ratio: 3 / 3.2;
  overflow: hidden;
  background: linear-gradient(145deg, #FAF8F4, #F3E9DE);
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

/* Subtle gradient vignette bottom of image */
.product-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.04) 0%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* Quick-view button slides up on hover */
.product-quick-view {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255,255,255,0.96);
  color: var(--charcoal);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
  display: flex; align-items: center; gap: 6px;
}
.product-quick-view i { font-size: 0.8rem; color: var(--gold-dark); }
.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Category Badge ---- */
.product-badge {
  position: absolute; top: 13px; left: 13px; z-index: 2;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 30px;
  box-shadow: 0 3px 12px rgba(201,165,90,0.32);
}

/* ---- Gold Accent Top Border on hover ---- */
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 4;
  border-radius: 20px 20px 0 0;
}
.product-card:hover::before { transform: scaleX(1); }

/* ---- Body ---- */
.product-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cat {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 4px;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 0.97rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 4px;
  line-height: 1.25; flex-shrink: 0;
}

.product-card-stars {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 5px;
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 1px;
}
.product-card-stars .review-count {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--charcoal-4);
  letter-spacing: 0;
}

.product-card-tagline {
  font-family: var(--font-accent);
  font-size: 0.78rem; font-style: italic;
  color: var(--charcoal-3);
  margin-bottom: 12px; line-height: 1.4;
  flex: 1;
}

/* ---- Actions ---- */
.product-card-actions {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
}
.product-card-actions .btn-whatsapp {
  flex: 1; justify-content: center;
  padding: 9px 12px;
  font-size: 0.75rem;
}
.product-card-actions .btn-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ============================================================
   CSS PAGE HERO  (no background image — blends with transparent nav)
   ============================================================ */
.phero {
  /* Stretch behind the transparent navbar so the gradient
     fills from the very top of the viewport, just like index.html */
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 64px;
  min-height: 52vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.phero-about {
  background: linear-gradient(135deg, #FBF6F0 0%, #F2DDD0 32%, #FAF0E8 68%, #FBF8F2 100%);
}
.phero-products {
  background: linear-gradient(135deg, #FAF7F0 0%, #F5E8D8 30%, #FAF2E6 65%, #FDFAF5 100%);
}
.phero-contact {
  background: linear-gradient(135deg, #FDF0E8 0%, #F5DDD0 28%, #FAF0E8 62%, #FEFAF6 100%);
}

/* Decorative blobs & rings */
.phero-blob {
  position: absolute; top: -18%; right: -8%;
  width: 52vh; height: 52vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,195,170,0.28) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.phero-blob-2 {
  position: absolute; bottom: -15%; left: -5%;
  width: 34vh; height: 34vh; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,165,90,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.phero-ring {
  position: absolute; top: 50%; right: 3%;
  transform: translateY(-50%);
  width: 40vh; height: 40vh; border-radius: 50%;
  border: 1px solid rgba(201,165,90,0.12);
  pointer-events: none; z-index: 0;
}
.phero-ring-2 {
  position: absolute; top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 28vh; height: 28vh; border-radius: 50%;
  border: 1px dashed rgba(201,165,90,0.08);
  pointer-events: none; z-index: 0;
}
.phero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(160,100,50,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}

/* Accent line left */
.phero-line {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  z-index: 0;
}

.phero-content {
  position: relative; z-index: 2;
}
.phero-content .section-eyebrow { color: var(--gold-dark); }
.phero-content h1 {
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.12;
}
.phero-content h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #7A5910, #C9A55A, #E8D09A, #C9A55A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding-bottom: 0.12em;
  display: inline-block;
}
.phero-content .breadcrumb a { color: var(--charcoal-3); }
.phero-content .breadcrumb { color: var(--charcoal-4); }
.phero-content .breadcrumb i { color: var(--charcoal-4); }
.phero-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem; font-style: italic;
  color: var(--charcoal-3); max-width: 500px;
  line-height: 1.72; margin-top: 4px;
}

/* ---- Products Page Responsive ---- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (max-width: 860px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-card-img { aspect-ratio: 3/3; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card-img { aspect-ratio: 1/1; }
  .product-card { border-radius: 14px; }
  .product-card-body { padding: 9px 10px 10px; }
  .product-card-cat { font-size: 0.52rem; }
  .product-card-name { font-size: 0.78rem; line-height: 1.2; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .product-card-stars { margin-bottom: 3px; gap: 3px; }
  .product-card-tagline { font-size: 0.68rem; margin-bottom: 6px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .product-card-actions { gap: 6px; }
  .product-card-actions .btn-whatsapp { font-size: 0.65rem; padding: 7px 6px; gap: 4px; }
  .product-card-actions .btn-icon { width: 28px; height: 28px; font-size: 0.62rem; }
  .product-badge { font-size: 0.5rem; padding: 4px 8px; top: 8px; left: 8px; }
}
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card-img { aspect-ratio: 16/10; }
  .product-card-name { font-size: 0.88rem; -webkit-line-clamp: unset; display: block; }
  .product-card-tagline { font-size: 0.76rem; -webkit-line-clamp: unset; display: block; }
  .product-card-actions .btn-whatsapp { font-size: 0.75rem; padding: 9px 12px; gap: 6px; }
  .product-card-actions .btn-icon { width: 34px; height: 34px; font-size: 0.72rem; }
}


/* ============================================================
   ABOUT SNIPPET (HOME)
   ============================================================ */
.about-snippet { background: var(--ivory-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 48%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--gold-gradient);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.about-badge span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-2);
}

.about-content .section-subtitle { max-width: 100%; }
.about-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature p {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.6;
}
.about-feature strong { color: var(--charcoal); }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--charcoal); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  margin-right: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}
.testimonial-loc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,165,90,0.15);
  border: 1.5px solid rgba(201,165,90,0.3);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}


/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--ivory-2); }

.newsletter-box {
  background: var(--gold-gradient);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.newsletter-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.newsletter-box .section-title {
  color: var(--charcoal);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.newsletter-box p {
  color: var(--charcoal-2);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-xl);
  border: none;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  outline: none;
  color: var(--charcoal);
}
.newsletter-form input:focus { background: rgba(255,255,255,0.9); }
.newsletter-form input::placeholder { color: var(--charcoal-3); }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a i { font-size: 0.75rem; color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

.footer-credit {
  text-align: center;
  padding: 0 16px 26px;
  margin-top: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-credit-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-gradient);
  opacity: 0.4;
}
.footer-credit p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.footer-credit-brand {
  color: rgba(201,165,90,0.8);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit-brand:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* Default state: perfect circle showing only the icon */
.floatbtn {
  display: flex;
  align-items: center;
  height: 56px;
  max-width: 56px;           /* collapsed = just the icon */
  border-radius: 28px;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(0,0,0,0.22);
  overflow: hidden;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: max-width 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease,
              transform 0.3s ease;
  cursor: pointer;
}
/* Expanded state: circle grows into a pill revealing the label */
.floatbtn:hover {
  max-width: 180px;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

/* Icon — always a perfect square/circle anchored to the left */
.fab-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;          /* never shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fab-icon i {
  font-size: 1.35rem;
  line-height: 1;
  display: block;
}

/* Label slides in from the right */
.fab-label {
  white-space: nowrap;
  padding: 0 18px 0 4px;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}
.floatbtn:hover .fab-label { opacity: 1; }

.fab-wa   { background: linear-gradient(145deg, #2AD36B, #128C7E); }
.fab-call { background: var(--gold-gradient); }
.fab-call .fab-label,
.fab-call { color: var(--charcoal); }

/* Mobile: always a circle, no label */
@media (max-width: 600px) {
  .floating-btns {
    bottom: max(40px, calc(32px + env(safe-area-inset-bottom, 0px)));
    right: max(22px, calc(18px + env(safe-area-inset-right, 0px)));
    gap: 12px;
  }
  .floatbtn {
    max-width: 54px !important;
    height: 54px;
    border-radius: 27px;
    box-shadow:
      0 8px 22px rgba(0,0,0,0.28),
      0 0 0 2.5px rgba(255,255,255,0.92);
  }
  .fab-icon { width: 54px; height: 54px; min-width: 54px; }
  .fab-icon i { font-size: 1.32rem; }
  .fab-label { display: none; }
  /* Home hero: lift buttons off the corner so they stay visible on light bg */
  body.page-home .floating-btns {
    bottom: max(52px, calc(44px + env(safe-area-inset-bottom, 0px)));
    right: max(26px, calc(22px + env(safe-area-inset-right, 0px)));
  }
  .footer-credit {
    padding: 0 16px max(28px, calc(18px + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 360px) {
  .floating-btns {
    bottom: max(28px, calc(20px + env(safe-area-inset-bottom, 0px)));
    right: max(12px, calc(10px + env(safe-area-inset-right, 0px)));
    gap: 10px;
  }
  .floatbtn {
    max-width: 46px !important;
    height: 46px;
    border-radius: 23px;
  }
  .fab-icon { width: 46px; height: 46px; min-width: 46px; }
  .fab-icon i { font-size: 1.15rem; }
  body.page-home .floating-btns {
    bottom: max(32px, calc(24px + env(safe-area-inset-bottom, 0px)));
    right: max(14px, calc(12px + env(safe-area-inset-right, 0px)));
  }
}


/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-img {
  background: linear-gradient(145deg, #FAF8F4, #F3E9DE);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 240px;
}
.modal-img img {
  width: 100%;
  height: auto;
  max-height: min(85vh, 520px);
  object-fit: contain;
  object-position: center center;
  display: block;
}

.modal-info {
  padding: 36px 32px 36px 28px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory-2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal-2);
  transition: var(--transition-fast);
  z-index: 5;
}
.modal-close:hover { background: var(--gold); color: var(--charcoal); }

.modal-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.25;
}
.modal-tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--charcoal-3);
  font-style: italic;
  margin-bottom: 16px;
}

.modal-divider {
  height: 1px;
  background: var(--ivory-3);
  margin: 16px 0;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--charcoal-3);
  line-height: 1.75;
  margin-bottom: 20px;
}
.modal-desc p { margin-bottom: 12px; }
.modal-desc p:last-child { margin-bottom: 0; }

.modal-section-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal-2);
  line-height: 1.5;
}
.modal-benefit i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.modal-directions {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--charcoal-3);
  line-height: 1.7;
}

.modal-tip {
  background: var(--gold-lighter);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.83rem;
  color: var(--charcoal-2);
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  height: 52vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content .section-eyebrow { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); margin-bottom: 10px; }
.page-hero-content p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,165,90,0.10);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,165,90,0.25);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.value-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--charcoal-3);
  line-height: 1.7;
}

.stats-section { background: var(--charcoal); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.ingredient-tag {
  padding: 8px 18px;
  background: var(--ivory-2);
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--charcoal-2);
  transition: var(--transition-fast);
}
.ingredient-tag:hover {
  background: var(--gold-lighter);
  border-color: var(--gold);
  color: var(--charcoal);
}


/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--white);
  color: var(--charcoal-3);
  border: 1.5px solid rgba(201,165,90,0.15);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--charcoal);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.products-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--charcoal-4);
}

.product-card.hidden {
  display: none;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}

.contact-method-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,165,90,0.10);
  transition: var(--transition);
}
.contact-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,165,90,0.25);
}
.contact-method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.contact-method-icon.gold { background: var(--gold-lighter); color: var(--gold-dark); }
.contact-method-icon.green { background: rgba(37,211,102,0.12); color: var(--green-wa-dark); }
.contact-method-icon.blue { background: rgba(59,130,246,0.10); color: #2563EB; }
.contact-method-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.contact-method-card p {
  font-size: 0.83rem;
  color: var(--charcoal-3);
  margin-bottom: 16px;
  line-height: 1.6;
}
.contact-method-card a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-dark);
  transition: color 0.2s;
}
.contact-method-card a:hover { color: var(--gold); }

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,165,90,0.10);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(201,165,90,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--ivory);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-panel {
  padding-top: 8px;
}
.contact-info-panel .section-subtitle { max-width: 100%; margin-bottom: 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--gold-lighter);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.contact-info-text span {
  font-size: 0.83rem;
  color: var(--charcoal-3);
  line-height: 1.5;
}
.contact-info-text a {
  font-size: 0.83rem;
  color: var(--gold-dark);
  display: block;
  margin-top: 1px;
}
.contact-info-text a:hover { color: var(--gold); }


/* ============================================================
   SHIMMER / GOLD BADGE ANIMATIONS
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-text {
  background: linear-gradient(90deg, #C9A55A 0%, #E8D09A 40%, #C9A55A 60%, #8B6914 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .about-grid { gap: 48px; }
  .mission-grid { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .promise-item:nth-child(even) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; overflow: hidden; }
  .about-img-accent { right: 0; bottom: 0; }
  .about-badge { right: 0; }
  .mission-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-methods-grid { grid-template-columns: 1fr 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: auto;
    position: static;
    height: auto;
    padding: 14px 16px 10px;
  }
  .modal-img img {
    max-height: min(50vh, 380px);
  }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .navbar { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-scroll { display: none; }
  .newsletter-box { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100%); margin-right: 16px; padding: 26px 22px; }
  .testimonial-text { font-size: 0.95rem; }
  .slider-controls { margin-top: 28px; gap: 12px; }
  .about-grid { gap: 36px; }
  .about-content { text-align: center; }
  .about-content .gold-divider { margin-left: auto; margin-right: auto; }
  .about-content .btn { width: 100%; justify-content: center; }
  .about-feature { text-align: left; }
}

@media (max-width: 480px) {
  :root { --section-py: 52px; }
  .container { padding: 0 14px; }
  .section-header { margin-bottom: 36px; }
  .section-eyebrow { letter-spacing: 0.16em; font-size: 0.66rem; }
  .section-subtitle { font-size: 1rem; }
  .btn { padding: 13px 22px; font-size: 0.82rem; white-space: normal; }
  .btn-sm { padding: 10px 14px; font-size: 0.75rem; }
  /* products-grid: keep 2 columns on mobile (product card CSS overrides this correctly) */
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .promise-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .modal-overlay { padding: 10px; }
  .modal-box { max-height: 96vh; }
  .modal-img { padding: 12px 14px 8px; }
  .modal-img img { max-height: min(45vh, 320px); }
  .modal-info { padding: 18px 14px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 22px 18px; }
  .value-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 12px; }
  /* phero hero on small screens */
  .phero { min-height: auto; padding-top: calc(var(--nav-h) + 24px); padding-bottom: 44px; }
  .phero-ring, .phero-ring-2 { display: none; }
  .phero-blob { width: 38vh; height: 38vh; top: -10%; right: -12%; }
  .phero-sub { font-size: 0.9rem; max-width: 100%; }
}

@media (max-width: 768px) {
  /* phero heading scale */
  .phero-content h1 { font-size: clamp(1.8rem, 6vw, 2.6rem) !important; }
  .phero-ring { display: none; }
  .phero { min-height: auto; }
}

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   LIGHT NAVBAR VARIANT (for light-bg hero pages)
   ============================================================ */
.navbar.transparent.light-nav .nav-links a   { color: var(--charcoal-2); }
.navbar.transparent.light-nav .nav-links a:hover,
.navbar.transparent.light-nav .nav-links a.active { color: var(--gold-dark); }
.navbar.transparent.light-nav .hamburger span { background: var(--charcoal); }

/* ============================================================
   TESTIMONIALS — LIGHT VARIANT
   ============================================================ */
.testimonials-light { background: #FBF0E8; }
.testimonials-light .section-eyebrow { color: var(--gold-dark); }
.testimonials-light .section-title   { color: var(--charcoal); }
.testimonials-light .section-subtitle { color: var(--charcoal-3); }
.testimonials-light .testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(201,165,90,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  backdrop-filter: none;
}
.testimonials-light .testimonial-card::before { color: var(--gold); opacity: 0.18; }
.testimonials-light .testimonial-text  { color: var(--charcoal-2); }
.testimonials-light .testimonial-name  { color: var(--charcoal); }
.testimonials-light .testimonial-loc   { color: var(--charcoal-4); }
.testimonials-light .testimonial-author { border-top-color: rgba(0,0,0,0.07); }
.testimonials-light .slider-btn {
  background: rgba(201,165,90,0.10);
  border-color: rgba(201,165,90,0.22);
  color: var(--gold-dark);
}
.testimonials-light .slider-btn:hover { background: var(--gold); color: var(--charcoal); }
.testimonials-light .slider-dot { background: rgba(0,0,0,0.12); }
.testimonials-light .slider-dot.active { background: var(--gold); }

/* ============================================================
   LEGAL PAGES (Privacy, Terms, Shipping)
   ============================================================ */
.phero-legal {
  background: linear-gradient(135deg, #FAF7F0 0%, #F0E6DA 35%, #FAF4EC 70%, #FDFAF5 100%);
}
.legal-section { background: var(--white); }
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.legal-updated {
  font-size: 0.84rem;
  color: var(--charcoal-3);
  font-style: italic;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,165,90,0.15);
}
.legal-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 32px 0 12px;
  font-weight: 700;
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-2);
  margin: 20px 0 8px;
}
.legal-wrap p {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-wrap ul,
.legal-wrap ol {
  margin: 0 0 16px 1.2rem;
  padding: 0;
}
.legal-wrap li {
  font-size: 0.9rem;
  color: var(--charcoal-3);
  line-height: 1.75;
  margin-bottom: 8px;
}
.legal-wrap a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-wrap a:hover { color: var(--gold); }
.legal-contact-box {
  background: var(--ivory);
  border: 1.5px solid rgba(201,165,90,0.15);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 28px;
}
.legal-contact-box p { margin-bottom: 6px; }
.legal-contact-box p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .legal-wrap h2 { font-size: 1.2rem; margin-top: 26px; }
  .legal-wrap p, .legal-wrap li { font-size: 0.85rem; }
  .legal-contact-box { padding: 18px 16px; }
}

/* ============================================================
   CERTIFICATIONS / REGISTRATIONS
   ============================================================ */
.certifications-section { background: var(--white); }
.certifications-section.alt-bg { background: var(--ivory); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.cert-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid rgba(201,165,90,0.12);
  box-shadow: 0 4px 24px rgba(120,70,20,0.05);
  transition: var(--transition);
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(120,70,20,0.1);
  border-color: rgba(201,165,90,0.25);
}
.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lighter), var(--ivory-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-dark);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.cert-card:hover .cert-icon {
  background: var(--gold-gradient);
  color: var(--charcoal);
}
.cert-card h4 {
  font-size: 0.98rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-weight: 700;
}
.cert-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-4);
  margin-bottom: 6px;
}
.cert-value {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.footer-credentials {
  border-top: 1px solid rgba(201,165,90,0.12);
  padding: 20px 0 0;
  margin-bottom: 28px;
  text-align: center;
}
.footer-cred-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
}
.footer-cred-list li {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}
.footer-cred-list strong {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

@media (max-width: 900px) {
  .cert-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 480px) {
  .cert-card { padding: 24px 18px; }
  .cert-card h4 { font-size: 0.92rem; }
  .cert-value { font-size: 0.78rem; }
}

/* ============================================================
   LIGHT FOOTER VARIANT
   ============================================================ */
.footer-light {
  background: #FAF6F0;
  color: var(--charcoal-3);
}
.footer-light::before { background: var(--gold-gradient); }
.footer-light .footer-brand p { color: var(--charcoal-3); }
.footer-light .social-link {
  background: rgba(201,165,90,0.08);
  border-color: rgba(201,165,90,0.18);
  color: var(--charcoal-3);
}
.footer-light .social-link:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.footer-light .footer-col h4   { color: var(--gold-dark); }
.footer-light .footer-col ul li a { color: var(--charcoal-3); }
.footer-light .footer-col ul li a:hover { color: var(--charcoal); }
.footer-light .footer-contact-item span { color: var(--charcoal-3); }
.footer-light .footer-bottom { border-top-color: rgba(0,0,0,0.07); }
.footer-light .footer-bottom p { color: var(--charcoal-4); }
.footer-light .footer-bottom-links a { color: var(--charcoal-4); }
.footer-light .footer-bottom-links a:hover { color: var(--gold-dark); }
.footer-light .footer-credit p { color: var(--charcoal-4); }
.footer-light .footer-credit-brand { color: var(--gold-dark); }
.footer-light .footer-credit-brand:hover { color: var(--gold); }
.footer-light .footer-credentials { border-top-color: rgba(0,0,0,0.07); }
.footer-light .footer-cred-list li { color: var(--charcoal-4); }
.footer-light .footer-cred-list strong { color: var(--charcoal-2); }

/* ---- Footer responsive ---- */
@media (max-width: 1100px) {
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 520px) and (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .footer { padding-top: 56px; }
  .footer-grid { gap: 28px; margin-bottom: 40px; }
  .footer-brand { text-align: center; }
  .footer-brand .nav-logo { justify-content: center; }
  .footer-brand p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col h4 { margin-bottom: 14px; letter-spacing: 0.14em; }
  .footer-col ul li a { justify-content: center; }
  .footer-contact-item {
    justify-content: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-credentials { margin-bottom: 24px; padding-top: 18px; }
  .footer-cred-list {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-bottom {
    padding: 18px 0;
    gap: 14px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom p { line-height: 1.65; max-width: 100%; }
  .footer-bottom-links { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .footer { padding-top: 44px; }
  .footer-grid { gap: 22px; margin-bottom: 28px; }
  .footer-brand p { font-size: 0.82rem; margin-bottom: 18px; }
  .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.11em; margin-bottom: 12px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 0.8rem; }
  .footer-contact-item { gap: 10px; margin-bottom: 12px; }
  .footer-contact-item span {
    font-size: 0.78rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer-cred-list li { font-size: 0.66rem; text-align: center; padding: 0 4px; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom p { font-size: 0.7rem; padding: 0 2px; }
  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer-bottom-links a { font-size: 0.72rem; }
  .footer-credit p { font-size: 0.64rem; line-height: 1.55; }
  .footer-brand .logo-img { height: 56px; }
  .social-link { width: 36px; height: 36px; font-size: 0.85rem; }
  .about-badge { padding: 12px 14px; top: 10px; right: 4px; }
  .about-badge strong { font-size: 1.5rem; }
  .about-badge span { font-size: 0.6rem; }
  .about-img-accent { width: 42%; bottom: -10px; right: -4px; border-width: 4px; }
}

@media (max-width: 360px) {
  .footer { padding-top: 38px; }
  .footer-grid { gap: 20px; margin-bottom: 24px; }
  .footer-brand p { font-size: 0.78rem; }
  .footer-cred-list li { font-size: 0.62rem; }
  .footer-bottom p { font-size: 0.66rem; }
  .footer-credit p { font-size: 0.6rem; }
  .about-img-wrap { overflow: hidden; }
  .about-badge { top: 8px; right: 2px; padding: 10px 12px; }
  .about-badge strong { font-size: 1.3rem; }
  .about-img-accent { width: 38%; bottom: -6px; right: 0; }
}
