/* ============================================================
   BeeemNatures.com — Premium Natural Cosmetics
   Main Stylesheet — Luxury Organic Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --cream:       #F5EFE6;
  --cream2:      #EDE0D4;
  --cream3:      #FAF7F2;
  --beige:       #D4B896;
  --beige-dark:  #B89470;
  --gold:        #C9A84C;
  --gold2:       #E8C46A;
  --gold-pale:   #F5E6C0;
  --green:       #6B8C6E;
  --green2:      #8AAD8D;
  --green-pale:  #D4E6D5;
  --green-dark:  #4A6B4D;
  --brown:       #7A5C44;
  --brown2:      #5C3D2E;
  --earth:       #9C7B5A;
  --white:       #FFFFFF;
  --text:        #2C1810;
  --text-mid:    #5A4030;
  --text-light:  #9A8070;
  --shadow-sm:   0 2px 15px rgba(122,92,68,.1);
  --shadow-md:   0 8px 40px rgba(122,92,68,.15);
  --shadow-lg:   0 20px 60px rgba(122,92,68,.2);
  --shadow-gold: 0 4px 25px rgba(201,168,76,.35);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;
  --transition:  all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'DM Sans',sans-serif;
  background:var(--cream3);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.7;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; font-family:'DM Sans',sans-serif; border:none; }

/* ─── Loading Screen ─── */
#loader {
  position:fixed; inset:0; z-index:9999;
  background:var(--cream3);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transition:opacity 0.6s ease, visibility 0.6s;
}
#loader.hide { opacity:0; visibility:hidden; }
.loader-logo {
  font-family:'Playfair Display',serif;
  font-size:2.2rem; color:var(--brown2);
  letter-spacing:3px;
  animation:pulse 1.5s ease-in-out infinite;
}
.loader-logo span { color:var(--gold); }
.loader-bar {
  width:200px; height:2px; background:var(--cream2);
  border-radius:2px; margin-top:20px; overflow:hidden;
}
.loader-bar-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg,var(--gold),var(--green));
  border-radius:2px; animation:loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width:100%; } }
@keyframes pulse { 0%,100%{opacity:.6} 50%{opacity:1} }

/* ─── Typography ─── */
h1,h2,h3 { font-family:'Playfair Display',serif; line-height:1.2; }
h4,h5,h6 { font-family:'DM Sans',sans-serif; font-weight:600; }
.font-cormorant { font-family:'Cormorant Garamond',serif; }
.font-cinzel    { font-family:'Cinzel',serif; }

/* ─── Section Labels ─── */
.eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Cinzel',serif; font-size:10.5px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.eyebrow::before, .eyebrow::after {
  content:''; display:block; width:24px; height:1px; background:var(--gold);
}
.section-title {
  font-size:clamp(1.9rem,4vw,3rem);
  color:var(--brown2); margin-bottom:18px;
}
.section-title em { color:var(--gold); font-style:italic; }
.section-desc { font-size:15.5px; color:var(--text-mid); max-width:560px; line-height:1.85; }
.gold-divider {
  width:60px; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  border-radius:2px; margin:0 0 28px;
}
.gold-divider.center { margin:0 auto 28px; }

/* ─── Buttons ─── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 30px; border-radius:100px;
  font-size:13.5px; font-weight:600; letter-spacing:.5px;
  transition:var(--transition); cursor:pointer; border:2px solid transparent;
}
.btn-gold {
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--brown2); box-shadow:var(--shadow-gold);
}
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 10px 35px rgba(201,168,76,.5); }
.btn-outline {
  background:transparent; color:var(--brown2); border-color:var(--brown2);
}
.btn-outline:hover { background:var(--brown2); color:var(--white); }
.btn-green {
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:var(--white); box-shadow:0 4px 20px rgba(107,140,110,.3);
}
.btn-green:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(107,140,110,.45); }
.btn-white {
  background:var(--white); color:var(--brown2);
  box-shadow:var(--shadow-md);
}
.btn-white:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn-lg { padding:16px 40px; font-size:15px; }
.btn-sm { padding:9px 22px; font-size:12.5px; }
.btn-wa {
  background:#25D366; color:var(--white);
  box-shadow:0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(37,211,102,.5); }

/* ─── Glowing CTA ─── */
.btn-glow {
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--brown2); border:none;
  box-shadow:0 0 20px rgba(201,168,76,.4), 0 4px 15px rgba(201,168,76,.3);
  animation:glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100%{ box-shadow:0 0 20px rgba(201,168,76,.4),0 4px 15px rgba(201,168,76,.3); }
  50%{ box-shadow:0 0 35px rgba(201,168,76,.7),0 4px 25px rgba(201,168,76,.5); }
}

/* ─── Utilities ─── */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }
.text-gold    { color:var(--gold); }
.text-green   { color:var(--green); }
.bg-cream     { background:var(--cream); }
.bg-cream2    { background:var(--cream2); }
.bg-cream3    { background:var(--cream3); }

/* ─── Navbar ─── */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:72px; transition:var(--transition);
  background:rgba(250,247,242,.95);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(201,168,76,.15);
}
#navbar.scrolled {
  height:64px;
  background:rgba(250,247,242,.98);
  box-shadow:var(--shadow-sm);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:100%; padding:0 32px; max-width:1280px; margin:0 auto;
}
.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo-mark {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--green));
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--white);
}
.nav-logo-text { font-family:'Playfair Display',serif; font-size:1.25rem; color:var(--brown2); }
.nav-logo-text span { color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  font-size:13.5px; font-weight:500; color:var(--text-mid);
  padding:8px 16px; border-radius:100px;
  transition:var(--transition); position:relative;
}
.nav-links a:hover, .nav-links a.active { color:var(--brown2); }
.nav-links a.active::after {
  content:''; position:absolute; bottom:4px; left:50%; transform:translateX(-50%);
  width:16px; height:2px; background:var(--gold); border-radius:2px;
}
.nav-actions { display:flex; align-items:center; gap:10px; }
.nav-icon-btn {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; color:var(--text-mid); font-size:1rem;
  transition:var(--transition); border:1.5px solid transparent;
}
.nav-icon-btn:hover { background:var(--cream); border-color:var(--beige); color:var(--brown2); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:5px; }
.hamburger span { width:22px; height:2px; background:var(--brown2); border-radius:2px; transition:var(--transition); display:block; }

/* Mobile Nav */
.mobile-nav {
  position:fixed; top:72px; left:0; right:0; bottom:0; z-index:999;
  background:rgba(250,247,242,.98); backdrop-filter:blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  transform:translateY(-100%); opacity:0; pointer-events:none;
  transition:var(--transition);
}
.mobile-nav.open { transform:translateY(0); opacity:1; pointer-events:all; }
.mobile-nav a {
  font-family:'Playfair Display',serif; font-size:1.8rem; color:var(--brown2);
  padding:12px 30px; transition:var(--transition);
}
.mobile-nav a:hover { color:var(--gold); }

/* ─── Sections ─── */
.section { padding:96px 0; }
.section-sm { padding:64px 0; }
.section-lg { padding:120px 0; }
.section-white   { background:var(--white); }
.section-cream   { background:var(--cream); }
.section-cream3  { background:var(--cream3); }
.section-dark    { background:var(--brown2); }
.section-green   { background:linear-gradient(135deg,var(--green-dark),var(--green)); }
.section-header  { margin-bottom:60px; }
.section-header.center { text-align:center; }
.section-header.center .section-desc { margin:0 auto; }
.section-header.center .gold-divider { margin:0 auto 28px; }

/* ─── Hero ─── */
.hero {
  min-height:100vh; position:relative; overflow:hidden;
  display:flex; align-items:center;
  background:linear-gradient(135deg,#F5EFE6 0%,#EDE0D4 40%,#D4E6D5 100%);
}
.hero-bg-pattern {
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107,140,110,.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212,184,150,.1) 0%, transparent 70%);
}
.hero-content {
  position:relative; z-index:2; width:100%; padding-top:72px;
}
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
  min-height:calc(100vh - 72px);
}
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,.12); border:1px solid rgba(201,168,76,.3);
  color:var(--brown); padding:6px 18px; border-radius:100px;
  font-size:11.5px; letter-spacing:1.5px; text-transform:uppercase; font-weight:600;
  margin-bottom:24px;
}
.hero-headline {
  font-size:clamp(2.8rem,5vw,4.8rem);
  color:var(--brown2); line-height:1.1; margin-bottom:22px;
}
.hero-headline em { color:var(--gold); font-style:italic; display:block; }
.hero-sub {
  font-family:'Cormorant Garamond',serif;
  font-size:18px; color:var(--text-mid); line-height:1.9; margin-bottom:36px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats { display:flex; gap:36px; }
.hero-stat strong {
  display:block; font-family:'Playfair Display',serif; font-size:2rem; color:var(--brown2);
}
.hero-stat span { font-size:12.5px; color:var(--text-light); text-transform:uppercase; letter-spacing:.5px; }

/* Hero Visual */
.hero-visual { position:relative; display:flex; align-items:center; justify-content:center; }
.hero-main-img {
  width:460px; height:540px; border-radius:var(--radius-xl);
  background:linear-gradient(160deg,var(--cream),var(--cream2));
  overflow:hidden; box-shadow:var(--shadow-lg); position:relative; z-index:2;
}
.hero-main-img img { width:100%; height:100%; object-fit:cover; }
.hero-float-card {
  position:absolute; background:var(--white);
  border-radius:var(--radius-md); padding:14px 18px;
  box-shadow:var(--shadow-md);
  animation:floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-1 { top:15%; left:-10%; animation-delay:0s; }
.hero-float-card.card-2 { bottom:20%; right:-12%; animation-delay:1.5s; }
.hero-float-card.card-3 { top:60%; left:-15%; animation-delay:3s; }
@keyframes floatCard {
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-12px) rotate(1deg); }
}
.float-card-icon { font-size:1.5rem; margin-bottom:4px; }
.float-card-title { font-size:12.5px; font-weight:700; color:var(--brown2); }
.float-card-sub { font-size:11px; color:var(--text-light); }
.hero-bg-circle {
  position:absolute; border-radius:50%;
  background:linear-gradient(135deg,rgba(201,168,76,.12),rgba(107,140,110,.12));
}
.hero-circle-1 { width:500px; height:500px; top:-80px; right:-80px; }
.hero-circle-2 { width:300px; height:300px; bottom:-60px; left:-60px; }

/* ─── Product Cards ─── */
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.product-card {
  background:var(--white); border-radius:var(--radius-lg);
  overflow:hidden; transition:var(--transition);
  box-shadow:var(--shadow-sm);
  position:relative;
}
.product-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.product-img-wrap {
  position:relative; height:260px; overflow:hidden;
  background:linear-gradient(135deg,var(--cream),var(--cream2));
}
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform:scale(1.08); }
.product-badge {
  position:absolute; top:14px; left:14px;
  background:var(--gold); color:var(--brown2);
  font-size:10.5px; font-weight:700; letter-spacing:.8px; text-transform:uppercase;
  padding:4px 10px; border-radius:100px;
}
.product-badge.new  { background:var(--green); color:var(--white); }
.product-badge.sale { background:var(--brown); color:var(--white); }
.product-actions {
  position:absolute; bottom:14px; left:14px; right:14px;
  display:flex; gap:8px;
  transform:translateY(20px); opacity:0; transition:var(--transition);
}
.product-card:hover .product-actions { transform:translateY(0); opacity:1; }
.product-body { padding:18px 20px; }
.product-cat {
  font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:1px;
  color:var(--green); margin-bottom:5px;
}
.product-name { font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--brown2); margin-bottom:8px; }
.product-desc { font-size:12.5px; color:var(--text-light); margin-bottom:12px; line-height:1.6; }
.product-rating { display:flex; align-items:center; gap:5px; margin-bottom:12px; }
.stars { color:var(--gold); font-size:12.5px; }
.rating-count { font-size:11.5px; color:var(--text-light); }
.product-footer { display:flex; align-items:center; justify-content:space-between; }
.product-price {
  font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--brown2);
}
.product-price span { font-size:.85rem; color:var(--text-light); text-decoration:line-through; margin-left:5px; }
.product-wa-btn {
  width:36px; height:36px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:.95rem; transition:var(--transition);
  box-shadow:0 3px 12px rgba(37,211,102,.35);
}
.product-wa-btn:hover { transform:scale(1.15); box-shadow:0 6px 20px rgba(37,211,102,.5); }

/* ─── Glassmorphism Cards ─── */
.glass-card {
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.8);
  border-radius:var(--radius-lg);
  box-shadow:0 8px 32px rgba(122,92,68,.1);
}

/* ─── Feature/Why Cards ─── */
.feature-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:32px 28px; text-align:center;
  transition:var(--transition); box-shadow:var(--shadow-sm);
  border:1px solid rgba(201,168,76,.08);
}
.feature-card:hover {
  transform:translateY(-6px); box-shadow:var(--shadow-md);
  border-color:rgba(201,168,76,.25);
}
.feature-icon {
  width:72px; height:72px; border-radius:50%; margin:0 auto 20px;
  background:linear-gradient(135deg,var(--gold-pale),var(--cream));
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; transition:var(--transition);
}
.feature-card:hover .feature-icon { background:linear-gradient(135deg,var(--gold),var(--gold2)); }
.feature-title { font-size:1.05rem; font-weight:700; color:var(--brown2); margin-bottom:10px; }
.feature-desc { font-size:13.5px; color:var(--text-mid); line-height:1.75; }

/* ─── Testimonials ─── */
.testimonial-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:32px; box-shadow:var(--shadow-sm);
  transition:var(--transition);
}
.testimonial-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.testimonial-quote {
  font-family:'Cormorant Garamond',serif; font-size:3.5rem;
  color:var(--gold); line-height:.8; margin-bottom:16px;
}
.testimonial-text {
  font-family:'Cormorant Garamond',serif; font-size:16px;
  color:var(--text-mid); font-style:italic; line-height:1.85; margin-bottom:24px;
}
.testimonial-author { display:flex; align-items:center; gap:14px; }
.testimonial-avatar {
  width:48px; height:48px; border-radius:50%; overflow:hidden;
  background:linear-gradient(135deg,var(--gold),var(--green));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-weight:700; font-size:1.1rem; flex-shrink:0;
}
.testimonial-name { font-size:14px; font-weight:700; color:var(--brown2); }
.testimonial-location { font-size:12px; color:var(--text-light); }

/* ─── Gallery Grid ─── */
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.gallery-item {
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  cursor:pointer;
}
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-item-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(44,24,16,.7),transparent 50%);
  opacity:0; transition:var(--transition);
  display:flex; align-items:flex-end; padding:16px;
}
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-item-overlay span { color:var(--white); font-size:13px; font-weight:600; }

/* ─── Counter section ─── */
.counter-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.counter-item { text-align:center; }
.counter-num {
  font-family:'Playfair Display',serif; font-size:3rem; font-weight:700;
  color:var(--white); line-height:1;
}
.counter-lbl { font-size:13px; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:1px; margin-top:8px; }

/* ─── Newsletter ─── */
.newsletter-form {
  display:flex; max-width:480px; margin:0 auto;
  background:var(--white); border-radius:100px;
  padding:6px 6px 6px 22px;
  box-shadow:var(--shadow-md);
}
.newsletter-form input {
  flex:1; border:none; outline:none; font-size:14px;
  background:transparent; color:var(--text);
  font-family:'DM Sans',sans-serif;
}
.newsletter-form input::placeholder { color:var(--text-light); }

/* ─── FAQ Accordion ─── */
.faq-item {
  background:var(--white); border-radius:var(--radius-md);
  margin-bottom:12px; overflow:hidden;
  box-shadow:var(--shadow-sm); border:1px solid rgba(201,168,76,.08);
}
.faq-question {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px; cursor:pointer; transition:var(--transition);
}
.faq-question:hover { background:var(--cream3); }
.faq-question h4 { font-size:15px; font-weight:600; color:var(--brown2); }
.faq-icon {
  width:32px; height:32px; border-radius:50%;
  background:var(--cream); display:flex; align-items:center; justify-content:center;
  font-size:.85rem; color:var(--gold); transition:var(--transition); flex-shrink:0;
}
.faq-item.open .faq-icon { transform:rotate(180deg); background:var(--gold); color:var(--white); }
.faq-answer {
  max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s;
  font-size:14.5px; color:var(--text-mid); line-height:1.8;
  padding:0 24px;
}
.faq-item.open .faq-answer { max-height:300px; padding:0 24px 20px; }

/* ─── Contact Form ─── */
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { position:relative; }
.form-group label {
  display:block; font-size:11.5px; font-weight:600; text-transform:uppercase;
  letter-spacing:.8px; color:var(--text-mid); margin-bottom:7px;
}
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:13px 18px;
  border:2px solid rgba(201,168,76,.2); border-radius:var(--radius-sm);
  font-size:14px; font-family:'DM Sans',sans-serif; color:var(--text);
  background:var(--cream3); transition:var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline:none; border-color:var(--gold);
  background:var(--white); box-shadow:0 0 0 4px rgba(201,168,76,.1);
}
.form-group textarea { min-height:130px; resize:vertical; }
.form-group.floating label {
  position:absolute; top:14px; left:18px;
  font-size:14px; text-transform:none; letter-spacing:0; font-weight:400;
  color:var(--text-light); pointer-events:none; transition:var(--transition);
  background:transparent; padding:0 4px;
}
.form-group.floating input:focus + label,
.form-group.floating input:not(:placeholder-shown) + label {
  top:-10px; left:14px; font-size:11px; font-weight:600;
  text-transform:uppercase; letter-spacing:.7px;
  color:var(--gold); background:var(--white);
}

/* ─── WhatsApp Float ─── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:900;
}
.wa-float-btn {
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.5rem;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:var(--transition); animation:waPulse 2s ease-in-out infinite;
}
.wa-float-btn:hover { transform:scale(1.12); box-shadow:0 8px 30px rgba(37,211,102,.6); }
@keyframes waPulse {
  0%,100%{ box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 0 rgba(37,211,102,.3); }
  50%{ box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 12px rgba(37,211,102,0); }
}
.wa-float-tooltip {
  position:absolute; right:68px; top:50%; transform:translateY(-50%);
  background:rgba(44,24,16,.88); color:var(--white);
  font-size:12.5px; font-weight:600; white-space:nowrap;
  padding:7px 13px; border-radius:8px;
  opacity:0; pointer-events:none; transition:opacity .2s;
}
.wa-float:hover .wa-float-tooltip { opacity:1; }

/* ─── Scroll To Top ─── */
.scroll-top {
  position:fixed; bottom:28px; left:28px; z-index:900;
  width:46px; height:46px; border-radius:50%;
  background:var(--white); color:var(--brown2);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); font-size:1rem;
  transition:var(--transition);
  opacity:0; transform:translateY(20px); pointer-events:none;
}
.scroll-top.show { opacity:1; transform:translateY(0); pointer-events:all; }
.scroll-top:hover { background:var(--gold); color:var(--brown2); transform:translateY(-3px); }

/* ─── Footer ─── */
footer {
  background:var(--brown2);
  border-top:1px solid rgba(201,168,76,.15);
}
.footer-top { padding:72px 0 48px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.3fr; gap:48px; }
.footer-brand-name { font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--white); margin-bottom:12px; }
.footer-brand-name span { color:var(--gold); }
.footer-brand-desc { font-size:13.5px; color:rgba(255,255,255,.5); line-height:1.85; margin-bottom:20px; }
.footer-social { display:flex; gap:10px; }
.footer-social a {
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.6);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; transition:var(--transition);
}
.footer-social a:hover { background:var(--gold); color:var(--brown2); transform:translateY(-3px); }
.footer-col h4 {
  font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:13.5px; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; }
.footer-contact-icon {
  width:30px; height:30px; border-radius:50%; background:rgba(201,168,76,.15);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; color:var(--gold); flex-shrink:0;
}
.footer-contact-text { font-size:13px; color:rgba(255,255,255,.55); line-height:1.6; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06); padding:20px 0;
  display:flex; align-items:center; justify-content:space-between;
}
.footer-bottom p { font-size:12.5px; color:rgba(255,255,255,.3); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:12.5px; color:rgba(255,255,255,.3); transition:color .2s; }
.footer-bottom-links a:hover { color:var(--gold); }

/* ─── AOS-like Scroll Reveals ─── */
[data-aos] {
  opacity:0; transition:opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
[data-aos="fade-up"]    { transform:translateY(40px); }
[data-aos="fade-left"]  { transform:translateX(40px); }
[data-aos="fade-right"] { transform:translateX(-40px); }
[data-aos="zoom-in"]    { transform:scale(.9); }
[data-aos].aos-animate  { opacity:1; transform:none; }

/* ─── Swiper customization ─── */
.swiper-pagination-bullet { background:var(--beige); }
.swiper-pagination-bullet-active { background:var(--gold) !important; }
.swiper-button-next::after,
.swiper-button-prev::after { font-size:1rem !important; color:var(--brown2) !important; }
.swiper-button-next, .swiper-button-prev {
  background:var(--white); width:44px !important; height:44px !important;
  border-radius:50%; box-shadow:var(--shadow-md);
}

/* ─── Lightbox ─── */
.lightbox-overlay {
  position:fixed; inset:0; background:rgba(44,24,16,.92);
  z-index:9990; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:var(--transition);
}
.lightbox-overlay.open { opacity:1; visibility:visible; }
.lightbox-img {
  max-width:90vw; max-height:85vh;
  border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
}
.lightbox-close {
  position:absolute; top:20px; right:20px;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.15); color:var(--white);
  font-size:1.2rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:var(--transition);
}
.lightbox-close:hover { background:var(--gold); color:var(--brown2); }

/* ─── Ingredient/Tag Pills ─── */
.ingredient-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--green-pale); color:var(--green-dark);
  padding:6px 14px; border-radius:100px;
  font-size:12.5px; font-weight:600;
}

/* ─── Review Stars ─── */
.review-stars { color:var(--gold); font-size:14px; letter-spacing:2px; }

/* ─── Timeline ─── */
.timeline { position:relative; padding-left:40px; }
.timeline::before {
  content:''; position:absolute; left:12px; top:0; bottom:0;
  width:2px; background:linear-gradient(to bottom,var(--gold),var(--green));
}
.timeline-item { position:relative; margin-bottom:40px; }
.timeline-item::before {
  content:''; position:absolute; left:-32px; top:6px;
  width:14px; height:14px; border-radius:50%;
  background:var(--gold); border:3px solid var(--white);
  box-shadow:0 0 0 3px var(--gold);
}
.timeline-year {
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  color:var(--gold); margin-bottom:5px;
}
.timeline-title { font-size:1.1rem; color:var(--brown2); margin-bottom:6px; }
.timeline-desc { font-size:13.5px; color:var(--text-mid); line-height:1.75; }

/* ─── Search & Filter ─── */
.search-bar {
  display:flex; align-items:center; gap:12px;
  background:var(--white); border-radius:100px;
  padding:10px 20px; box-shadow:var(--shadow-sm);
  border:1.5px solid rgba(201,168,76,.15);
  max-width:440px;
}
.search-bar input {
  flex:1; border:none; outline:none; font-size:14px;
  font-family:'DM Sans',sans-serif; color:var(--text); background:transparent;
}
.search-bar i { color:var(--text-light); font-size:.95rem; }

.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; }
.filter-tab {
  padding:9px 22px; border-radius:100px;
  font-size:13px; font-weight:600;
  border:1.5px solid rgba(201,168,76,.25);
  color:var(--text-mid); background:transparent;
  transition:var(--transition); cursor:pointer;
}
.filter-tab:hover, .filter-tab.active {
  background:var(--gold); color:var(--brown2); border-color:var(--gold);
}

/* ─── Page Hero Banners ─── */
.page-hero {
  position:relative; height:420px;
  display:flex; align-items:flex-end;
  background:linear-gradient(135deg,var(--cream),var(--cream2));
  overflow:hidden;
}
.page-hero-content {
  position:relative; z-index:2; width:100%; padding-bottom:60px;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:.18;
}
.page-hero h1 { font-size:clamp(2.4rem,5vw,4rem); color:var(--brown2); }
.page-hero h1 em { color:var(--gold); font-style:italic; }
.page-hero p { font-size:15px; color:var(--text-mid); margin-top:10px; }

/* ─── Responsive ─── */
@media(max-width:1100px){
  .products-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .hero-grid { grid-template-columns:1fr; text-align:center; gap:48px; }
  .hero-stats { justify-content:center; }
  .hero-btns { justify-content:center; }
  .hero-visual { display:none; }
  .counter-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px){
  .section { padding:64px 0; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item.wide { grid-column:span 1; }
  .gallery-item.tall { grid-row:span 1; }
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:520px){
  .products-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .hero-stats { flex-direction:column; gap:18px; }
  .counter-grid { grid-template-columns:1fr 1fr; }
}
