/* ========================================
   TOREE FARM & NURSERY LTD --- Refreshed theme
   ======================================== */

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

:root {
  /* Agricultural Color Palette - Warm & Welcoming */
  --c-dark: #2d5a27;        /* Deep forest green */
  --c-mid: #4a7c59;         /* Sage green */
  --c-light: #7a9e7e;       /* Soft green */
  --c-soft: #e8f5e8;        /* Pale green */

  /* Nature Greens */
  --green-dark: #1b4332;    /* Forest green */
  --green-mid: #2d6a4f;     /* Sage green */
  --green-light: #52b788;   /* Mint green */
  --green-pale: #d8f3dc;    /* Pale green */

  /* Earth Tones */
  --earth-brown: #8b4513;   /* Saddle brown */
  --earth-tan: #d2b48c;     /* Tan */
  --earth-cream: #f5f5dc;   /* Beige */

  /* Warm Accents */
  --c-warm: #f7a35b;        /* Orange */
  --c-warm-soft: #ffe4c0;   /* Peach */
  --gold: #ffd700;          /* Gold */
  --gold-light: #ffed4e;    /* Light gold */

  /* Background Gradients - Warm and Natural */
  --bg-gradient: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #1b4332 100%);
  --bg-gradient-warm: linear-gradient(135deg, #4a7c59 0%, #7a9e7e 50%, #4a7c59 100%);
  --bg-gradient-earth: linear-gradient(135deg, #8b4513 0%, #d2b48c 50%, #8b4513 100%);

  /* Text Colors */
  --text-dark: #f8fdf9;
  --text-mid: #c8e6c9;
  --text-light: #a5d6a7;
  --white: #ffffff;
  --off-white: #f8fdf9;
  --dark-bg: #1b4332;
  --darker-bg: #0f2920;

  /* Design Tokens */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-glass: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --backdrop-blur: 12px;
}

[data-animate] {
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
[data-animate].visible { opacity: 1; }
[data-animate='slide-left'] { transform: translateX(-24px); }
[data-animate='slide-left'].visible { transform: translateX(0); }
[data-animate='slide-right'] { transform: translateX(24px); }
[data-animate='slide-right'].visible { transform: translateX(0); }
[data-animate='fade-scale'] { transform: scale(0.95); }
[data-animate='fade-scale'].visible { transform: scale(1); }
[data-animate='float'] { transform: translateY(0); }
[data-animate='float'].visible { animation: float 6s ease-in-out infinite; }

.accent-blob { position: absolute; pointer-events: none; opacity: 0.18; filter: blur(9px); transform: translate3d(0,0,0); }
.accent-blob.spin { animation: rotate 18s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }
@keyframes float { 0%,100%{transform: translateY(0);}50%{transform: translateY(-10px);} }
@keyframes glassPulse { 0%,100%{opacity:.16;transform: translateY(0);}50%{opacity:.28;transform: translateY(-4px);} }
.glass-shimmer { animation: glassPulse 4.5s ease-in-out infinite; }

/* prefer reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .glass-shimmer,
  [data-animate],
  .price-tag span {
    animation: none !important;
    transition: none !important;
  }
}

/* hero + sections shimmer effects */
.hero::before,
.mv-card::before,
.why-card::before,
.product-card::after,
.pickup-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.0) 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero:hover::before,
.mv-card:hover::before,
.why-card:hover::before,
.product-card:hover::after,
.pickup-card:hover::after {
  opacity: 1;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:'Lato',sans-serif;color:var(--text-dark);background:var(--bg-gradient);overflow-x:hidden;line-height:1.7;}
a{color:inherit;text-decoration:none;transition:var(--transition);}
img{max-width:100%;display:block;}
ul{list-style:none;}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}

html {
  color-scheme: dark;
}

body,
button,
input,
select,
textarea {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.8rem,3vw,2.6rem);color:#fff;margin-bottom:12px;}
.section-subtitle{font-size:1.05rem;color:var(--text-mid);margin-bottom:40px;}
.section-pedestal{display:flex;gap:40px;margin-bottom:40px;flex-wrap:wrap;justify-content:center;}
.pedestal-stat{text-align:center;background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.15);border-radius:16px;padding:20px 24px;min-width:120px;}
.pedestal-stat .stat-num{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;color:#fff;display:block;margin-bottom:4px;}
.pedestal-stat .stat-label{font-size:.8rem;color:var(--text-mid);text-transform:uppercase;letter-spacing:1px;font-weight:600;}
.gold-line{width:70px;height:4px;border-radius:2px;margin:12px auto 16px;background:linear-gradient(90deg,var(--c-warm),#f2b45b);} 

.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:50px;font-weight:700;font-size:.95rem;cursor:pointer;border:0;position:relative;overflow:hidden;box-shadow:0 6px 20px rgba(0,0,0,.3);transition:var(--transition);text-shadow:0 1px 2px rgba(0,0,0,.2);}
.btn::before{content:'';position:absolute;inset:0;background:linear-gradient(45deg,transparent,rgba(255,255,255,.3),transparent);transform:translateX(-100%);transition:transform .6s ease;}
.btn:hover::before{transform:translateX(100%);}
.btn-primary{background:linear-gradient(135deg,var(--green-mid),var(--green-light));color:#fff;border:2px solid transparent;}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(45, 106, 79, .4);border-color:#fff;}
.btn-secondary{background:linear-gradient(135deg,var(--green-light),var(--green-mid));color:#fff;border:2px solid transparent;}
.btn-secondary:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(18, 93, 159, .4);border-color:#fff;}
.btn-success{background:linear-gradient(135deg,var(--green-dark),var(--green-mid));color:#fff;border:2px solid transparent;}
.btn-success:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(27, 67, 50, .4);border-color:#fff;}
.btn-gold{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#1b4332;border:2px solid transparent;}
.btn-gold:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(255, 215, 0, .4);border-color:#fff;}
.btn-outline{background:linear-gradient(135deg,rgba(255,255,255,.15),rgba(255,255,255,.08));border:2px solid rgba(255,255,255,.4);color:#fff;backdrop-filter:blur(12px);}
.btn-outline:hover{background:linear-gradient(135deg,rgba(255,255,255,.25),rgba(255,255,255,.15));border-color:#fff;transform:translateY(-2px);color:#fff;}
.btn-whatsapp{background:linear-gradient(135deg,#25d366,#128c7e);color:#fff;border:2px solid transparent;}
.btn-whatsapp:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(18, 140, 126, .4);border-color:#fff;}
.btn-earth{background:linear-gradient(135deg,var(--earth-brown),var(--earth-tan));color:#fff;border:2px solid transparent;}
.btn-earth:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(139, 69, 19, .4);border-color:#fff;}
.btn-large{padding:16px 32px;font-size:1.05rem;}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.navbar{position:fixed;top:0;width:100%;z-index:1000;background:rgba(27,67,50,.95);backdrop-filter:blur(var(--backdrop-blur));border-bottom:1px solid rgba(184,234,196,.4);box-shadow:0 8px 30px rgba(0,0,0,.3);}.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;}.nav-logo{display:flex;align-items:center;gap:10px;}.nav-logo-text .name{font-family:'Playfair Display',serif;font-weight:700;font-size:1rem;color:#fff;} .nav-logo-text .tagline{font-size:.65rem;color:var(--gold);letter-spacing:1px;text-transform:uppercase;}.nav-links{display:flex;align-items:center;gap:8px;}.nav-links a{padding:7px 14px;border-radius:50px;font-weight:700;font-size:.9rem;color:#fff;position:relative;}.nav-links a::after{content:'';position:absolute;bottom:0;left:50%;width:0;height:2px;background:linear-gradient(90deg,var(--green-light),var(--gold));transform:translateX(-50%);transition:width .3s;} .nav-links a:hover::after,.nav-links a.active::after{width:80%;}.nav-links a:hover,.nav-links a.active{color:#fff;background:rgba(230,248,237,.35);}.hamburger{display:none;flex-direction:column;gap:4px;width:34px;cursor:pointer;background:0;border:0;padding:0;} .hamburger span{width:100%;height:3px;background:#fff;border-radius:2px;}

/* Navigation cart button */
.nav-cart-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(34, 97, 62, 0.85), rgba(74, 124, 89, 0.95));
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cart-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

.nav-cart-btn-mobile {
  display: none;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 97, 62, 0.85), rgba(74, 124, 89, 0.95));
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.nav-cart-btn-mobile:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.nav-cart-btn-mobile .cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.hero{min-height:100vh;position:relative;display:flex;align-items:center;overflow:hidden;background:linear-gradient(180deg,rgba(27,67,50,.65),rgba(34,97,62,.8));}.hero-bg{position:absolute;inset:0;background-image:url('../images/nursery-banner.jpg');background-size:cover;background-position:center;filter:brightness(0.65) saturate(1.1);} .hero-overlay{position:absolute;inset:0;background:linear-gradient(140deg,rgba(27,67,50,.85),rgba(46,139,63,.65),rgba(27,67,50,.45));}.hero-content{position:relative;z-index:2;max-width:700px;animation:fadeInUp .9s ease both;}.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,182,100,.25);border:1px solid rgba(255,180,93,.7);color:#fff;padding:6px 16px;border-radius:50px;font-size:.8rem;font-weight:700;text-transform:uppercase;margin-bottom:18px;}.hero h1{font-size:clamp(2.2rem,5vw,3.8rem);color:#fff;margin-bottom:20px;text-shadow:0 5px 24px rgba(0,0,0,.35);} .hero h1 span{color:#ffe6a8;} .hero p{font-size:1.15rem;color:rgba(255,255,255,.94);margin-bottom:36px;max-width:560px;line-height:1.75;}.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;} .quick-nav{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin-top:18px;padding:8px 12px;background:rgba(255,255,255,0.18);border-radius:999px;box-shadow:0 4px 16px rgba(11,36,66,0.2);} .quick-nav a{color:#fff;font-weight:700;font-size:.78rem;padding:8px 12px;background:rgba(46,106,126,0.30);border-radius:999px;transition:all .25s ease;} .quick-nav a:hover{background:rgba(255,255,255,0.35);color:#0b2d4d;} .hero-stats{position:relative;z-index:2;display:flex;gap:34px;margin-top:60px;flex-wrap:wrap;justify-content:center;}.hero-stat{text-align:center;color:#fff;}.hero-stat .num{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:#f7cd5d;display:block;}.hero-stat .label{font-size:.8rem;opacity:.84;letter-spacing:1px;text-transform:uppercase;} .hero-scroll{position:absolute;bottom:32px;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,.7);font-size:.75rem;letter-spacing:1px;text-transform:uppercase;animation:bounce 2s infinite;} .hero-scroll svg{opacity:.6;}

.about-snap{padding:90px 0;background:linear-gradient(135deg,var(--dark-bg),var(--off-white));color:#fff;}.about-snap-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}.about-snap-img{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,.3);transition:transform var(--transition),box-shadow var(--transition);}.about-snap-img:hover{transform:scale(1.03);box-shadow:0 28px 55px rgba(0,0,0,.4);}.about-snap-img img{width:100%;height:380px;object-fit:cover;}.about-snap-img .img-badge{position:absolute;bottom:20px;left:20px;background:var(--green-dark);color:#fff;padding:10px 18px;border-radius:var(--radius-sm);font-weight:700;font-size:.85rem;}.about-snap-text .section-title{text-align:left;color:#fff;} .about-snap-text .gold-line{margin-left:0;} .about-snap-text p{color:var(--text-mid);margin-bottom:14px;}

.mission-vision{padding:80px 0;background:linear-gradient(135deg,var(--off-white),var(--dark-bg));}.mv-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px;}.mv-card{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);padding:40px;backdrop-filter:blur(var(--backdrop-blur));position:relative;overflow:hidden;transition:var(--transition);} .mv-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,0));opacity:0;transition:opacity .3s ease;} .mv-card:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.25);transform:translateY(-8px);box-shadow:0 20px 40px rgba(0,0,0,.4);} .mv-card:hover::before{opacity:1;} .mv-icon{font-size:2.5rem;margin-bottom:16px;}.mv-card h3{color:#ffe9a7;font-size:1.4rem;margin-bottom:12px;}.mv-card p{color:rgba(255,255,255,.9);line-height:1.8;}

.why-us{padding:90px 0;background:var(--dark-bg);}.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:28px;margin-top:50px;}.why-card{position:relative;overflow:hidden;text-align:center;padding:36px 24px;border-radius:var(--radius);border:1px solid rgba(255,255,255,.1);background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:var(--transition);} .why-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--c-light),var(--c-warm),var(--c-light));transform:scaleX(0);transform-origin:left;transition:transform .3s ease;} .why-card:hover::before{transform:scaleX(1);} .why-card:hover{border-color:rgba(255,255,255,.2);box-shadow:var(--shadow-glass);transform:translateY(-8px) scale(1.02);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));}.why-icon{font-size:2.4rem;margin-bottom:14px;color:#fff;}.why-card h4{font-size:1rem;color:#fff;margin-bottom:8px;}.why-card p{font-size:.88rem;color:var(--text-mid);}

.featured{padding:90px 0;background:linear-gradient(135deg,var(--green-pale),var(--earth-cream),var(--green-pale));color:#1b4332;}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:28px;margin-bottom:40px;}.product-card{background:linear-gradient(145deg,rgba(255,255,255,.95),rgba(220,238,255,.72));border-radius:var(--radius);overflow:hidden;box-shadow:0 20px 42px rgba(0,0,0,.15),0 0 0 1px rgba(255,255,255,.2);transition:var(--transition);position:relative;border:1px solid rgba(25,108,180,.15);} .product-card::after{content:'';position:absolute;inset:0;background:linear-gradient(150deg,rgba(180,235,255,.22),rgba(82,186,255,.09));opacity:.9;pointer-events:none;transition:opacity .4s ease;} .product-card:hover{transform:translateY(-12px);box-shadow:0 22px 55px rgba(0,0,0,.25);border-color:rgba(12,158,205,.35);backdrop-filter:blur(10px);} .product-card:hover::after{opacity:.2;}.product-img{position:relative;height:200px;overflow:hidden;background:var(--c-soft);display:flex;align-items:center;justify-content:center;} .product-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;} .product-emoji{font-size:4rem;text-align:center;opacity:0.5;} .product-card:hover .product-img img{transform:scale(1.12) rotate(1deg);} .product-category{position:absolute;top:12px;left:12px;background:linear-gradient(135deg,rgba(247,163,91,.95),rgba(255,210,30,.95));color:#0c2f57;font-size:.7rem;font-weight:700;padding:4px 8px;border-radius:8px;} .product-body{padding:20px;} .product-body h3{font-size:1.05rem;color:var(--text-dark);margin-bottom:8px;} .product-body p{font-size:.85rem;color:var(--text-light);margin-bottom:12px;} .product-footer{display:flex;align-items:center;justify-content:space-between;margin-top:14px;} .price-tag{display:flex;flex-direction:column;align-items:flex-start;font-weight:700;color:var(--green-dark);background:rgba(27, 67, 50, .12);padding:6px 10px;border-radius:10px;font-size:.95rem;letter-spacing:.3px;} .price-tag span{display:block;animation:pulsePrice 2.5s ease-in-out infinite;} .price-tag small{color:var(--text-mid);font-weight:500;} .add-to-cart-btn{background:linear-gradient(135deg,var(--green-mid),var(--green-dark));color:#fff;border:none;padding:8px 16px;border-radius:50px;font-size:.82rem;font-weight:700;cursor:pointer;position:relative;overflow:hidden;box-shadow:0 4px 12px rgba(27, 67, 50, .4);transition:var(--transition);} .add-to-cart-btn:hover{transform:scale(1.08);box-shadow:0 8px 20px rgba(46, 139, 63, .5);} .add-to-cart-btn::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transform:translateX(-100%);transition:transform .4s ease;} .add-to-cart-btn:hover::before{transform:translateX(100%);} .qty-control{display:flex;align-items:center;gap:8px;margin-top:10px;} .qty-btn{width:28px;height:28px;border-radius:50%;border:2px solid var(--green-mid);background:transparent;cursor:pointer;font-size:1rem;color:#fff;display:flex;align-items:center;justify-content:center;transition:all .2s ease;font-weight:700;} .qty-btn:hover{background:var(--green-mid);color:#fff;transform:scale(1.15);box-shadow:0 4px 12px rgba(27, 67, 50, .4);} .qty-btn:active{transform:scale(.95);} .qty-display{font-weight:700;min-width:20px;text-align:center;color:#fff;} .qty-input{width:60px;height:32px;border:2px solid var(--green-mid);border-radius:8px;background:rgba(255,255,255,0.1);color:#fff;text-align:center;font-size:1rem;font-weight:700;outline:none;transition:all .3s ease;} .qty-input:focus{border-color:#fff;background:rgba(255,255,255,0.2);box-shadow:0 0 0 3px rgba(255,255,255,0.1);} .qty-input::-webkit-outer-spin-button,.qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;appearance:none;} .qty-input[type=number]{-moz-appearance:textfield;appearance:textfield;}

/* Weather Widget */
.weather-widget{margin-top:24px;padding:20px;background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.05));border-radius:var(--radius);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(10px);}.weather-widget h4{color:#fff;margin-bottom:16px;font-size:1.1rem;font-weight:700;}.weather-info{margin-bottom:16px;}.weather-main{display:flex;align-items:center;gap:12px;margin-bottom:8px;}.weather-main .temp{font-size:2rem;font-weight:700;color:#fff;}.weather-main .condition{font-size:1rem;color:var(--c-warm);font-weight:600;}.weather-details{display:flex;flex-direction:column;gap:4px;}.weather-details span{font-size:.85rem;color:var(--text-mid);}.planting-advice{padding:12px;background:linear-gradient(135deg,rgba(82,184,136,.2),rgba(82,184,136,.1));border-radius:8px;border-left:3px solid var(--green-mid);}.planting-advice p{margin:0;font-size:.85rem;color:#fff;font-weight:500;} .view-all-wrap{text-align:center;margin-top:20px;}

.pickup{padding:70px 0;background:linear-gradient(135deg,var(--off-white),var(--dark-bg));}.pickup-card{max-width:360px;margin:0 auto;text-align:center;border-radius:var(--radius);padding:24px;border:1px solid rgba(255,255,255,.15);box-shadow:0 20px 52px rgba(0,0,0,.2);background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));position:relative;overflow:hidden;backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);}.pickup-card h3{margin-bottom:8px;color:#fff;font-size:1.1rem;}.pickup-card p{margin-bottom:12px;color:var(--text-mid);font-weight:700;font-size:1.2rem;}.pickup-card .pickup-price{display:block;margin-bottom:16px;color:#fff;font-size:1.3rem;letter-spacing:.25px;}.pickup-card a{width:fit-content;margin:0 auto;}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes leafFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* Agricultural-themed floating elements */
.agricultural-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  position: absolute;
  font-size: 2rem;
  animation: leafFall 8s linear infinite;
  opacity: 0.1;
}

.leaf:nth-child(1) { left: 10%; animation-delay: 0s; }
.leaf:nth-child(2) { left: 20%; animation-delay: 2s; }
.leaf:nth-child(3) { left: 70%; animation-delay: 4s; }
.leaf:nth-child(4) { left: 80%; animation-delay: 6s; }

/* Enhanced product cards with floating animation */
.product-card:hover {
  animation: float 3s ease-in-out infinite;
}

/* Gallery items with staggered animations */
.gallery-item:nth-child(odd) {
  animation: float 4s ease-in-out infinite;
}

.gallery-item:nth-child(even) {
  animation: float 4s ease-in-out infinite reverse;
}

/* Page Hero */
.page-hero{background:linear-gradient(135deg,rgba(27,67,50,.95),rgba(46,139,63,.93));color:#fff;text-align:center;padding:120px 0;position:relative;overflow:hidden;}.page-hero::before{content:'';position:absolute;inset:0;background-image:url('../images/nursery-banner.jpg');background-size:cover;background-position:center;opacity:.25;}.page-hero h1{font-size:clamp(2.5rem,5vw,3.5rem);margin-bottom:16px;text-shadow:0 3px 12px rgba(0,0,0,.35);}.page-hero p{font-size:1.2rem;margin-bottom:24px;opacity:.95;}.breadcrumb{display:flex;align-items:center;gap:8px;font-size:.9rem;margin-bottom:20px;justify-content:center;}.breadcrumb a{color:#ffd985;text-decoration:none;}.breadcrumb span{color:rgba(248,253,249,.8);} 

/* Shop Sections */
.filter-section{padding:60px 0;background:linear-gradient(135deg,#e9f5eb,#f3faf4);}.filter-layout{display:flex;justify-content:center;}.filter-sidebar{background:rgba(242,250,244,.8);border-radius:var(--radius);padding:30px;width:320px;box-shadow:var(--shadow);border:1px solid rgba(72,126,80,.25);}.filter-sidebar h3{font-size:1.2rem;color:#1b4332;margin-bottom:24px;text-align:center;}.search-bar{position:relative;margin-bottom:24px;}.search-bar span{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:#2d5a27;}.search-bar input{width:100%;padding:12px 16px 12px 40px;border:2px solid rgba(72,126,80,.5);border-radius:50px;font-size:.95rem;outline:none;transition:border-color .3s ease;background:#ffffff; color:#1b4332;}.search-bar input:focus{border-color:rgba(72,126,80,.8);}.filter-group{margin-bottom:24px;}.filter-group h4{font-size:1rem;color:#1b4332;margin-bottom:12px;font-weight:700;}.filter-btn{display:block;width:100%;padding:10px 16px;margin-bottom:8px;border:2px solid rgba(72,126,80,.5);background:linear-gradient(135deg,rgba(255,255,255,.55),rgba(223,245,231,.65));border-radius:50px;text-align:left;font-size:.9rem;color:#1b4332;cursor:pointer;transition:all .3s ease;}.filter-btn.active{background:linear-gradient(135deg,var(--green-mid),var(--green-dark));color:#fff;border-color:var(--green-mid);}.filter-btn:hover:not(.active){border-color:rgba(46,139,63,.75);background:rgba(207,235,216,.95);}.filter-btn.active-price{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#1b4332;border-color:var(--gold);} 

.products-section{padding:80px 0;background:linear-gradient(135deg,var(--earth-tan),var(--earth-cream),var(--earth-tan));}.shop-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px;flex-wrap:wrap;gap:20px;}.product-count{font-size:1.1rem;color:#fff;}.sort-select{padding:10px 16px;border:2px solid rgba(255,255,255,.3);border-radius:50px;font-size:.95rem;color:#fff;outline:none;background:rgba(255,255,255,.1);cursor:pointer;}.sort-select:focus{border-color:rgba(255,255,255,.5);}

.buy-cta{padding:80px 0;background:linear-gradient(135deg,rgba(9,60,113,.95),rgba(14,95,161,.93));color:#fff;text-align:center;}.cta-content{max-width:600px;margin:0 auto;}.cta-content h2{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:16px;text-shadow:0 3px 12px rgba(0,0,0,.4);}.cta-content p{font-size:1.15rem;margin-bottom:32px;opacity:.9;}.cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;}.cta-features{display:flex;gap:30px;justify-content:center;margin-top:40px;flex-wrap:wrap;}.feature{display:flex;flex-direction:column;align-items:center;gap:8px;}.feature .icon{font-size:1.5rem;}.feature span{font-size:.9rem;opacity:.9;}

/* Gallery Styles */
.gallery-section{padding:90px 0;background:linear-gradient(135deg,var(--green-dark),var(--green-mid),var(--green-dark));position:relative;overflow:hidden;}
.gallery-section::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:0.5;}
.gallery-header{text-align:center;margin-bottom:60px;}
.gallery-filters{display:flex;gap:16px;margin-bottom:40px;flex-wrap:wrap;justify-content:center;}
.gallery-filter-btn{display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px 20px;border:2px solid rgba(255,255,255,.3);background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.05));border-radius:16px;font-size:.9rem;color:#fff;cursor:pointer;transition:all .3s ease;backdrop-filter:blur(10px);min-width:120px;}
.gallery-filter-btn:hover{border-color:rgba(255,255,255,.6);background:linear-gradient(135deg,rgba(255,255,255,.2),rgba(255,255,255,.1));transform:translateY(-2px);}
.gallery-filter-btn.active{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#1b4332;border-color:var(--gold);box-shadow:0 8px 25px rgba(255,215,0,.3);}
.gallery-filter-btn .filter-icon{font-size:1.5rem;margin-bottom:4px;}
.gallery-stats{display:flex;gap:30px;margin-bottom:40px;flex-wrap:wrap;justify-content:center;}
.stat-item{text-align:center;padding:20px;background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border-radius:12px;border:1px solid rgba(255,255,255,.1);backdrop-filter:blur(10px);min-width:120px;}
.stat-item .stat-number{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:#fff;display:block;}
.stat-item .stat-label{font-size:.85rem;color:var(--text-mid);font-weight:600;}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;margin-bottom:40px;}
.gallery-item{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 8px 25px rgba(0,0,0,.2);transition:all .3s ease;cursor:pointer;aspect-ratio:1;}
.gallery-item:hover{transform:translateY(-8px);box-shadow:0 15px 35px rgba(0,0,0,.3);}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.gallery-item:hover img{transform:scale(1.1);}
.gallery-overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.8));color:#fff;padding:20px;text-align:center;transform:translateY(100%);transition:transform .3s ease;}
.gallery-item:hover .gallery-overlay{transform:translateY(0);}
.gallery-overlay p{font-size:.9rem;margin:0;font-weight:500;}
.gallery-nav{display:flex;justify-content:center;align-items:center;gap:20px;margin-top:40px;}
.nav-btn{padding:12px 24px;border:2px solid rgba(255,255,255,.3);background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.05));border-radius:50px;color:#fff;cursor:pointer;transition:all .3s ease;backdrop-filter:blur(10px);}
.nav-btn:hover:not(:disabled){border-color:#fff;background:linear-gradient(135deg,rgba(255,255,255,.2),rgba(255,255,255,.1));transform:translateY(-2px);}
.nav-btn:disabled{opacity:0.5;cursor:not-allowed;}
.page-indicator{font-size:.9rem;color:var(--text-mid);}

/* Lightbox */
.lightbox{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.9);display:flex;align-items:center;justify-content:center;z-index:10000;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;}.lightbox.open{opacity:1;visibility:visible;}.lightbox img{max-width:90%;max-height:90%;object-fit:contain;}.lightbox-close{position:absolute;top:20px;right:20px;background:rgba(255,255,255,.2);color:#fff;border:none;width:50px;height:50px;border-radius:50%;font-size:24px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .3s ease;}.lightbox-close:hover{background:rgba(255,255,255,.4);}

.cta-banner{padding:80px 0;background:linear-gradient(135deg,rgba(9,60,113,.95),rgba(14,95,161,.93));color:#fff;text-align:center;}.cta-banner h2{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:16px;text-shadow:0 3px 12px rgba(0,0,0,.4);}.cta-banner p{font-size:1.15rem;margin-bottom:32px;opacity:.9;}.cta-banner .cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;}

.values-section{padding:90px 0;background:linear-gradient(135deg,var(--green-pale),var(--green-light),var(--green-pale));color:#1b4332;}
.value-card{background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.7));border:1px solid rgba(45,106,79,.2);color:#1b4332;}
.value-card h4{color:#2d6a4f;}
.value-card p{color:#1b4332;}

.process-section{padding:90px 0;background:linear-gradient(135deg,var(--earth-brown),var(--earth-tan),var(--earth-brown));color:#fff;}
.process-step{background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.05));border:1px solid rgba(255,255,255,.2);color:#fff;}

.team-section{padding:90px 0;background:linear-gradient(135deg,var(--c-warm-soft),var(--earth-cream),var(--c-warm-soft));color:#1b4332;}
.team-card{background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.7));border:1px solid rgba(139,69,19,.2);color:#1b4332;}

.achievements-section{padding:90px 0;background:linear-gradient(135deg,var(--gold-light),var(--c-warm-soft),var(--gold-light));color:#1b4332;}
.achievement-card{background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,255,255,.7));border:1px solid rgba(255,215,0,.3);color:#1b4332;}

/* Contact Page Styles */
.contact-section{padding:90px 0;background:var(--off-white);}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:50px;}
.contact-info-panel{display:flex;flex-direction:column;gap:20px;}
.contact-info-card{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:24px;display:flex;gap:16px;transition:var(--transition);backdrop-filter:blur(10px);}
.contact-info-card:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.2);}
.contact-icon{font-size:2rem;}
.contact-info-card h4{font-size:1.1rem;color:#fff;margin-bottom:8px;}
.contact-info-card p{color:var(--text-mid);margin-bottom:4px;}
.contact-info-card a{color:#fff;text-decoration:none;}
.contact-info-card a:hover{text-decoration:underline;}
.contact-form-panel{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:40px;backdrop-filter:blur(10px);}
.contact-form-panel h3{font-size:1.5rem;color:#fff;margin-bottom:30px;text-align:center;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-weight:700;color:#fff;margin-bottom:8px;font-size:.9rem;}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:14px;border:2px solid rgba(255,255,255,.3);border-radius:8px;background:rgba(255,255,255,.1);color:#fff;font-size:.95rem;outline:none;transition:border-color .3s;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:rgba(255,255,255,.6);}
.form-group textarea{resize:vertical;min-height:120px;}
.map-section{margin-top:60px;}
.map-wrap{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,.2);}
.map-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:60px;text-align:center;background:linear-gradient(135deg,var(--earth-brown),var(--earth-tan));color:#fff;}
.map-placeholder .map-icon{font-size:4rem;margin-bottom:20px;}
.map-placeholder h3{font-size:1.3rem;margin-bottom:12px;}
.map-placeholder p{margin-bottom:24px;}

/* Testimonials Section */
.testimonials-section{padding:90px 0;background:linear-gradient(135deg,var(--dark-bg),var(--off-white));}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;margin-top:50px;}
.testimonial-card{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:30px;text-align:center;transition:var(--transition);backdrop-filter:blur(10px);position:relative;}
.testimonial-card:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.2);box-shadow:0 15px 35px rgba(0,0,0,.2);}
.testimonial-quote{font-size:1.1rem;color:#fff;margin-bottom:20px;font-style:italic;line-height:1.6;}
.testimonial-quote::before{content:'"';font-size:2rem;color:var(--c-warm);position:absolute;top:20px;left:20px;}
.testimonial-quote::after{content:'"';font-size:2rem;color:var(--c-warm);position:absolute;bottom:20px;right:20px;}
.testimonial-author{font-size:.95rem;color:var(--c-warm);font-weight:700;}

/* FAQ Section */
.faq-section{padding:90px 0;background:var(--off-white);}
.faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;margin-top:50px;}
.faq-item{background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:24px;transition:var(--transition);backdrop-filter:blur(10px);}
.faq-item:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.2);}
.faq-item h4{font-size:1.1rem;color:#fff;margin-bottom:12px;cursor:pointer;}
.faq-item p{font-size:.95rem;color:var(--text-mid);line-height:1.6;display:none;}
.faq-item.active p{display:block;}

/* Quick Order Banner */
.quick-order-banner{background:linear-gradient(135deg,var(--green-dark),var(--green-mid));color:#fff;padding:40px 0;text-align:center;position:relative;overflow:hidden;}
.quick-order-banner::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:0.3;}
.quick-order-banner h3{font-size:1.5rem;margin-bottom:12px;}
.quick-order-banner p{margin-bottom:24px;opacity:0.9;}
.quick-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.quick-actions .btn{font-size:.95rem;padding:12px 24px;}

/* Social Proof Section */
.social-proof-section{background:linear-gradient(135deg,var(--dark-bg),var(--off-white));padding:60px 0;}
.social-proof-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px;max-width:800px;margin:0 auto;}
.proof-item{text-align:center;padding:30px;background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.1);border-radius:var(--radius);transition:var(--transition);backdrop-filter:blur(10px);}
.proof-item:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.2);box-shadow:0 15px 35px rgba(0,0,0,.2);}
.proof-number{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:700;color:#fff;margin-bottom:8px;}
.proof-label{font-size:.9rem;color:var(--text-mid);font-weight:600;}

/* Cart Styles */
.cart-section{padding:80px 0;background:var(--off-white);}
.cart-layout{display:grid;grid-template-columns:1fr 400px;gap:40px;}
.cart-items-panel{background:linear-gradient(135deg,rgba(255,255,255,.95),rgba(220,238,255,.72));border-radius:var(--radius);overflow:hidden;box-shadow:0 20px 42px rgba(0,0,0,.15);border:1px solid rgba(25,108,180,.15);}
.cart-items-header{display:flex;justify-content:space-between;align-items:center;padding:24px 24px 16px;border-bottom:1px solid rgba(0,0,0,.08);}
.cart-items-header h3{color:var(--text-dark);font-size:1.2rem;margin:0;}
.clear-cart-btn{background:rgba(220,53,69,.1);color:#dc3545;border:1px solid rgba(220,53,69,.2);border-radius:50px;padding:6px 12px;font-size:.8rem;cursor:pointer;transition:var(--transition);}
.clear-cart-btn:hover{background:#dc3545;color:#fff;border-color:#dc3545;}
.cart-item{display:flex;gap:16px;padding:20px 24px;border-bottom:1px solid rgba(0,0,0,.06);align-items:flex-start;}
.cart-item:last-child{border-bottom:none;}
.cart-item-img{background:var(--c-soft);width:60px;height:60px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;border:2px solid rgba(18,93,159,.2);}
.cart-item-name{font-weight:700;color:var(--text-dark);margin-bottom:4px;font-size:1rem;}
.cart-item-price{color:var(--text-mid);font-size:.85rem;margin-bottom:8px;}
.cart-item-total{font-weight:700;color:var(--green-dark);font-size:1.1rem;margin-left:auto;}
.cart-item-remove{background:rgba(220,53,69,.1);color:#dc3545;border:1px solid rgba(220,53,69,.2);border-radius:50px;padding:4px 8px;font-size:.7rem;margin-top:8px;cursor:pointer;transition:var(--transition);}
.cart-item-remove:hover{background:#dc3545;color:#fff;border-color:#dc3545;}
.empty-cart{text-align:center;padding:60px 24px;}
.empty-cart .icon{font-size:4rem;margin-bottom:16px;}
.empty-cart h3{color:var(--text-dark);margin-bottom:8px;}
.empty-cart p{color:var(--text-mid);margin-bottom:24px;}
.cart-summary-panel{background:linear-gradient(135deg,rgba(255,255,255,.95),rgba(220,238,255,.72));border-radius:var(--radius);padding:24px;box-shadow:0 20px 42px rgba(0,0,0,.15);border:1px solid rgba(25,108,180,.15);position:sticky;top:100px;}
.cart-summary-panel h3{color:var(--text-dark);margin-bottom:20px;font-size:1.2rem;}
.summary-row{display:flex;justify-content:space-between;margin-bottom:12px;color:var(--text-mid);font-size:.9rem;}
.summary-total{display:flex;justify-content:space-between;padding:16px 0;border-top:2px solid rgba(0,0,0,.08);margin:20px 0 24px;font-weight:700;font-size:1.1rem;color:var(--text-dark);}
.summary-total .amount{color:var(--green-dark);font-size:1.2rem;}
.checkout-btn{width:100%;margin-bottom:16px;}
.checkout-note{font-size:.8rem;color:var(--text-mid);text-align:center;margin-bottom:16px;}

/* Footer Styles */
footer{background:linear-gradient(135deg,var(--darker-bg),var(--dark-bg));color:#fff;padding:60px 0 20px;border-top:1px solid rgba(255,255,255,.1);position:relative;}
footer::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,var(--c-light),var(--c-warm),var(--c-light));}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px;}
.footer-brand{margin-bottom:30px;}
.footer-brand .nav-logo{margin-bottom:16px;}
.footer-brand .nav-logo-text .name{color:#fff;font-size:1.2rem;}
.footer-brand .nav-logo-text .tagline{color:var(--c-warm);}
.footer-brand p{color:var(--text-mid);line-height:1.6;margin-bottom:20px;}
.footer-social{display:flex;gap:12px;}
.social-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;font-size:1.2rem;transition:var(--transition);}
.social-link:hover{background:var(--green-mid);transform:translateY(-2px);}
.footer-col h4{color:#fff;font-size:1.1rem;margin-bottom:16px;font-weight:700;}
.footer-col ul li{margin-bottom:8px;}
.footer-col a{color:#fff;transition:var(--transition);}
.footer-col a:hover{color:var(--c-warm);}
.footer-contact-item{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px;color:#fff;}
.footer-contact-item .icon{font-size:1.1rem;margin-top:2px;min-width:20px;}
.footer-contact-item a{color:#fff;text-decoration:underline;}
.footer-contact-item a:hover{color:var(--c-warm);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:20px;text-align:center;color:var(--text-mid);font-size:.9rem;}

@media (max-width: 1024px){.footer-grid{grid-template-columns:1fr 1fr;}.shop-layout{grid-template-columns:1fr;}.filter-sidebar{position:static;}.cart-layout{grid-template-columns:1fr;}}

/* ===== PAGE-SPECIFIC STYLING ===== */

/* Home Page - Rich Agricultural Theme */
body:has(.hero) .social-proof-section {
  background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2a 50%, #2d5a3d 100%);
}

body:has(.hero) .why-choose-section {
  background: linear-gradient(135deg, #8b7355 0%, #6b5b47 50%, #8b7355 100%);
}

body:has(.hero) .about-snap-section {
  background: linear-gradient(135deg, #4a6741 0%, #3a5231 50%, #4a6741 100%);
}

body:has(.hero) .testimonials-section {
  background: linear-gradient(135deg, #5d6b47 0%, #4a5637 50%, #5d6b47 100%);
}

/* About Page - Warm Earth Tones */
body:has(.achievements-section) .achievements-section {
  background: linear-gradient(135deg, #6b4423 0%, #5a3518 50%, #6b4423 100%);
}

body:has(.achievements-section) .values-section {
  background: linear-gradient(135deg, #7d5a3c 0%, #6b4a2f 50%, #7d5a3c 100%);
}

body:has(.achievements-section) .process-section {
  background: linear-gradient(135deg, #8b6b47 0%, #7a5a37 50%, #8b6b47 100%);
}

body:has(.achievements-section) .team-section {
  background: linear-gradient(135deg, #9b7c52 0%, #8a6b42 50%, #9b7c52 100%);
}

body:has(.achievements-section) .testimonials-section {
  background: linear-gradient(135deg, #a88d5d 0%, #977c4d 50%, #a88d5d 100%);
}

/* Shop Page - Fresh Green Tones */
body:has(.filter-section) .filter-section {
  background: linear-gradient(135deg, #4a7c59 0%, #3a6b49 50%, #4a7c59 100%);
}

body:has(.filter-section) .products-section {
  background: linear-gradient(135deg, #5a8d69 0%, #4a7c59 50%, #5a8d69 100%);
}

/* Gallery Page - Deep Forest Greens */
body:has(.gallery-section) .gallery-section {
  background: linear-gradient(135deg, #1b4332 0%, #0f2920 50%, #1b4332 100%);
}

/* Contact Page - Professional Earth Tones */
body:has(.contact-section) .contact-section {
  background: linear-gradient(135deg, #8b7355 0%, #7a6345 50%, #8b7355 100%);
}

body:has(.contact-section) .map-section {
  background: linear-gradient(135deg, #9b8465 0%, #8a7355 50%, #9b8465 100%);
}

/* Footer - Consistent Dark Theme */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
}
@media (max-width:768px){.nav-links{display:none;flex-direction:column;position:absolute;top:72px;left:0;right:0;background:var(--dark-bg);padding:20px;box-shadow:0 8px 30px rgba(0,0,0,.5);gap:0;border-top:1px solid rgba(255,255,255,.1);z-index:999;}.nav-links.open{display:flex;}.nav-links li{border-bottom:1px solid rgba(255,255,255,.08);}.nav-links li:last-child{border-bottom:0;}.nav-links a{padding:12px 8px !important;display:block;border-radius:0 !important;background:0 !important;}.hamburger{display:flex;padding:0;margin:0 8px;}.hamburger:hover span{opacity:0.7;}.nav-cart-btn{display:none;}.nav-cart-btn-mobile{display:inline-flex;}.quick-nav{display:none;}.about-snap-grid{grid-template-columns:1fr;}.mv-grid{grid-template-columns:1fr;}.contact-grid{grid-template-columns:1fr;}.form-row{grid-template-columns:1fr;}.gallery-grid{columns:2;}.process-steps::before{display:none;}.footer-grid{grid-template-columns:1fr;}.hero-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}.products-grid{grid-template-columns:1fr;}.filter-sidebar{display:none;}.products-section{padding:40px 0;}.filter-section{padding:40px 0;}}.section-pedestal{flex-direction:column;gap:20px;}.pedestal-stat{min-width:auto;width:100%;max-width:200px;margin:0 auto;}.gallery-filters{justify-content:flex-start;overflow-x:auto;padding-bottom:10px;}.gallery-filter-btn{flex-shrink:0;}.values-grid{grid-template-columns:1fr;}.process-steps{flex-direction:column;gap:30px;}.process-step{width:100%;height:auto;min-height:120px;border-radius:var(--radius);flex-direction:row;text-align:left;padding:24px;}.process-step .step-num{margin-bottom:0;margin-right:16px;width:40px;height:40px;font-size:1rem;}.process-step h4{margin-bottom:8px;}.process-step p{font-size:.8rem;}.team-grid{grid-template-columns:1fr;}.achievements-grid{grid-template-columns:repeat(2,1fr);gap:20px;}.contact-grid{grid-template-columns:1fr;}.contact-info-card{flex-direction:column;text-align:center;gap:12px;}.testimonials-grid{grid-template-columns:1fr;}.faq-grid{grid-template-columns:1fr;}.quick-actions{flex-direction:column;gap:12px;}
@media (max-width:640px){.nav-inner{padding:0 14px; .quick-nav{justify-content:center;}}.hero h1{font-size:2rem;}.hero-buttons{flex-direction:column;align-items:stretch;gap:12px;}.hero-stat{font-size:.85rem;}.section-title{font-size:1.5rem;}.hero-stat .num{font-size:1.6rem;}.about-snap{padding:70px 0;}.mission-vision,.why-us,.featured{padding:60px 0;}.footer-grid{grid-template-columns:1fr;}}

/* BLOG PAGE STYLES */
.blog-page {
  background: linear-gradient(135deg, #f0f8e7 0%, #e8f5e8 100%);
}

.blog-hero {
  background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/optimized/nursery-banner-640.webp') center/cover;
  opacity: 0.1;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.blog-content {
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-post {
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
  border: 1px solid #d8f3dc;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #4a7c59;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-text {
  padding: 1.5rem;
}

.blog-text h2 {
  color: #2d5a27;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-tips {
  background: #f8fdf9;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  border-left: 4px solid #4a7c59;
}

.blog-tips h3 {
  color: #2d5a27;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.blog-tips ul {
  margin: 0;
  padding-left: 1rem;
}

.blog-tips li {
  margin-bottom: 0.3rem;
  color: #555;
}

.read-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.newsletter-section {
  background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.newsletter-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
  color: #2d5a27;
  border: 2px solid #4a7c59;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
  background: linear-gradient(135deg, #e8f5e8 0%, #d8f3dc 100%);
}

/* DASHBOARD PAGE STYLES */
.dashboard-page {
  background: linear-gradient(135deg, #f5f9f5 0%, #f0f8f0 100%);
}

.dashboard-hero {
  background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.dashboard-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dashboard-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.dashboard-content {
  padding: 40px 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.dashboard-card {
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e8 100%);
  border: 1px solid #d8f3dc;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-header {
  background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.view-all {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.view-all:hover {
  opacity: 1;
}

.card-content {
  padding: 1.5rem;
}

/* Profile Card */
.profile-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  background: #4a7c59;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.profile-details h4 {
  margin: 0 0 0.3rem 0;
  color: #2d5a27;
}

.profile-details p {
  margin: 0.2rem 0;
  color: #666;
  font-size: 0.9rem;
}

/* Stats Card */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
  border: 1px solid #e8f5e8;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #4a7c59;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}

/* Orders Card */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
  border-left: 4px solid #4a7c59;
}

.order-info h4 {
  margin: 0 0 0.3rem 0;
  color: #2d5a27;
  font-size: 1rem;
}

.order-info p {
  margin: 0.2rem 0;
  color: #666;
  font-size: 0.85rem;
}

.order-status {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}

.status-shipped {
  background: #cce5ff;
  color: #004085;
}

.status-processing {
  background: #fff3cd;
  color: #856404;
}

.order-amount {
  font-weight: bold;
  color: #4a7c59;
  font-size: 1.1rem;
}

/* Tips Card */
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.tip-item:last-child {
  margin-bottom: 0;
}

.tip-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tip-content h4 {
  margin: 0 0 0.3rem 0;
  color: #2d5a27;
  font-size: 1rem;
}

.tip-content p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Wishlist Card */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.wishlist-item {
  text-align: center;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
  border: 1px solid #e8f5e8;
}

.wishlist-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.wishlist-item h4 {
  margin: 0 0 0.3rem 0;
  color: #2d5a27;
  font-size: 0.9rem;
}

.wishlist-item p {
  margin: 0 0 0.8rem 0;
  color: #4a7c59;
  font-weight: 600;
  font-size: 0.85rem;
}

.wishlist-item .btn-primary {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Analytics Card */
.analytics-chart h4 {
  margin: 0 0 1rem 0;
  color: #2d5a27;
}

.chart-placeholder {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 120px;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.chart-bar {
  width: 40px;
  background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding-top: 0.5rem;
}

.analytics-metrics {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a7c59;
}

.metric-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
}

/* Support Card */
.support-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fdf9;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.support-link:hover {
  background: #e8f5e8;
  transform: translateX(5px);
}

.support-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.support-link h4 {
  margin: 0 0 0.2rem 0;
  color: #2d5a27;
  font-size: 1rem;
}

.support-link p {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .analytics-metrics {
    flex-direction: column;
    gap: 0.5rem;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .order-amount {
    align-self: flex-end;
  }
}

/* ========================================
   2026 UI Refresh Overrides
   Calmer backgrounds, stronger contrast, cleaner cards
   ======================================== */

:root {
  --c-dark: #17352b;
  --c-mid: #315847;
  --c-light: #64806f;
  --c-soft: #eef4ef;
  --green-dark: #17352b;
  --green-mid: #2f5d4d;
  --green-light: #76a38e;
  --green-pale: #e9f1eb;
  --earth-brown: #8f6a47;
  --earth-tan: #dfcfbd;
  --earth-cream: #f5efe6;
  --c-warm: #c98a4b;
  --c-warm-soft: #f4dec3;
  --gold: #d7b06a;
  --gold-light: #ead2a1;
  --bg-gradient: linear-gradient(180deg, #f7f2ea 0%, #f2f5ef 100%);
  --bg-gradient-warm: linear-gradient(135deg, #f6efe5 0%, #edf4ee 100%);
  --bg-gradient-earth: linear-gradient(135deg, #f5efe6 0%, #e8ddd0 100%);
  --text-dark: #1d3128;
  --text-mid: #53665b;
  --text-light: #73857a;
  --white: #ffffff;
  --off-white: #fbf8f3;
  --dark-bg: #1f3f33;
  --darker-bg: #163228;
  --shadow: 0 14px 32px rgba(31, 46, 39, 0.10);
  --shadow-glass: 0 18px 44px rgba(31, 46, 39, 0.14);
}

body {
  color: var(--text-dark);
  background: var(--bg-gradient);
}

.agricultural-elements {
  display: none;
}

.accent-blob {
  opacity: 0.10;
  filter: blur(18px);
}

.navbar {
  background: rgba(251, 248, 243, 0.92);
  border-bottom: 1px solid rgba(32, 63, 51, 0.08);
  box-shadow: 0 10px 24px rgba(29, 49, 40, 0.08);
}

.nav-logo-text .name,
.nav-links a,
.hamburger span {
  color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
  background: rgba(49, 88, 71, 0.09);
}

.nav-cart-btn {
  color: #fff !important;
  background: linear-gradient(135deg, #234636, #3d6756);
  border-color: rgba(35, 70, 54, 0.18);
  box-shadow: 0 10px 18px rgba(35, 70, 54, 0.16);
}

.hero,
.page-hero,
.gallery-section,
.buy-cta,
.why-us,
.cta-banner,
.mission-vision,
.pickup {
  position: relative;
}

.hero {
  background: linear-gradient(180deg, rgba(24, 49, 39, 0.72), rgba(24, 49, 39, 0.58));
}

.hero-bg {
  filter: brightness(0.42) saturate(0.9);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(19, 37, 29, 0.78), rgba(47, 93, 77, 0.56), rgba(245, 239, 230, 0.10));
}

.page-hero {
  background: linear-gradient(135deg, #234636, #315847);
}

.page-hero::before {
  opacity: 0.14;
}

.featured,
.products-section,
.filter-section,
.contact-section,
.gallery-section,
.about-snap,
.mission-vision,
.buy-cta,
.cta-banner,
.pickup,
.testimonials,
.social-proof-section,
.dashboard-content,
.blog-content {
  background-image: none !important;
}

.featured,
.products-section,
.filter-section,
.contact-section,
.about-snap,
.dashboard-content,
.blog-content {
  background: var(--off-white) !important;
}

.social-proof-section,
.pickup,
.mission-vision {
  background: #f2f6f1 !important;
}

.why-us,
.gallery-section,
.buy-cta,
.cta-banner {
  background: linear-gradient(135deg, #203d32, #2d5445) !important;
}

.section-title,
.about-snap-text .section-title,
.product-body h3,
.shop-header,
.filter-sidebar h3,
.filter-group h4,
.contact-info-card h4,
.contact-form-panel h3,
.footer-col h4,
.blog-text h2,
.dashboard-card h3,
.dashboard-card h4 {
  color: var(--text-dark);
}

.hero h1,
.hero p,
.hero-badge,
.page-hero h1,
.page-hero p,
.why-us .section-title,
.why-us .section-subtitle,
.why-card h4,
.why-card p,
.mv-card h3,
.mv-card p,
.cta-banner h2,
.cta-banner p,
.buy-cta h2,
.buy-cta p,
.gallery-section .section-title,
.gallery-section .section-subtitle,
.gallery-filter-btn,
.stat-item .stat-number,
.stat-item .stat-label,
.footer-brand p,
footer,
footer p,
footer a {
  color: #f8f5ee;
}

.section-subtitle,
.product-body p,
.about-snap-text p,
.contact-info-card p,
.dashboard-card p,
.blog-text p,
.tip-content p,
.support-link p {
  color: var(--text-mid);
}

.pedestal-stat,
.mv-card,
.why-card,
.stat-item,
.filter-sidebar,
.weather-widget,
.contact-info-card,
.contact-form-panel,
.cart-items-panel,
.cart-summary-panel,
.dashboard-card,
.blog-post,
.proof-item,
.pickup-card {
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(31, 63, 51, 0.10) !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(10px);
}

.mv-card h3,
.why-card h4,
.pickup-card h3,
.pickup-card p,
.pickup-card .pickup-price,
.stat-item .stat-number,
.stat-item .stat-label {
  color: var(--text-dark) !important;
}

.proof-item,
.feature,
.weather-widget h4,
.weather-main .temp,
.weather-main .condition,
.planting-advice p,
.gallery-filter-btn.active {
  color: var(--text-dark);
}

.proof-number,
.hero-stat .num,
.pedestal-stat .stat-num,
.achievement-number,
.metric-value {
  color: var(--green-dark) !important;
}

.product-card,
.wishlist-item,
.order-item,
.tip-item,
.metric,
.support-link {
  background: #fffdf9;
  border: 1px solid rgba(31, 63, 51, 0.08);
  box-shadow: 0 10px 28px rgba(29, 49, 40, 0.08);
}

.product-card::after,
.hero::before,
.mv-card::before,
.why-card::before,
.pickup-card::after {
  display: none;
}

.product-card:hover,
.why-card:hover,
.mv-card:hover,
.pickup-card:hover,
.blog-post:hover,
.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(29, 49, 40, 0.12) !important;
}

.product-img {
  background: #edf3ee;
}

.product-body,
.modal-body,
.cart-item-name,
.cart-item-price,
.summary-row,
.summary-total,
.wishlist-item h4,
.wishlist-item p {
  color: var(--text-dark);
}

.qty-btn {
  color: var(--green-dark);
  background: #f4f7f3;
  border-color: rgba(47, 93, 77, 0.25);
}

.qty-btn:hover {
  background: var(--green-mid);
  color: #fff;
}

.qty-input,
.sort-select,
.search-bar input,
#calc-area,
#calc-crop,
#calc-density,
.modal-qty .qty-input {
  background: #fff;
  color: var(--text-dark);
  border-color: rgba(47, 93, 77, 0.20);
}

.sort-select {
  color: var(--text-dark);
  background: #fff;
}

.product-count,
.shop-header p,
.breadcrumb a,
.breadcrumb span {
  color: var(--text-dark);
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.gallery-filter-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact-icon,
.mv-icon,
.why-icon,
.feature .icon,
.tip-icon,
.support-icon {
  filter: saturate(0.8);
}

footer {
  background: #17352b;
  color: #f8f5ee;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(251, 248, 243, 0.96);
  }

  .nav-links {
    background: rgba(251, 248, 243, 0.98);
    border: 1px solid rgba(31, 63, 51, 0.08);
    box-shadow: 0 12px 30px rgba(29, 49, 40, 0.10);
  }

  .hero,
  .page-hero {
    padding-top: 110px;
  }
}

/* ========================================
   Responsive and Glass Polish Layer
   ======================================== */

.pedestal-stat,
.mv-card,
.why-card,
.stat-item,
.filter-sidebar,
.weather-widget,
.contact-info-card,
.contact-form-panel,
.cart-items-panel,
.cart-summary-panel,
.dashboard-card,
.blog-post,
.proof-item,
.pickup-card,
.product-card,
.wishlist-item,
.order-item,
.tip-item,
.metric,
.support-link {
  position: relative;
  isolation: isolate;
}

.pedestal-stat::before,
.mv-card::before,
.why-card::before,
.stat-item::before,
.filter-sidebar::before,
.weather-widget::before,
.contact-info-card::before,
.contact-form-panel::before,
.cart-items-panel::before,
.cart-summary-panel::before,
.dashboard-card::before,
.blog-post::before,
.proof-item::before,
.pickup-card::before,
.product-card::before,
.wishlist-item::before,
.order-item::before,
.tip-item::before,
.metric::before,
.support-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18) 42%, rgba(255,255,255,0) 70%),
    radial-gradient(circle at top right, rgba(215,176,106,0.18), transparent 34%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.pedestal-stat:hover,
.mv-card:hover,
.why-card:hover,
.stat-item:hover,
.contact-info-card:hover,
.dashboard-card:hover,
.blog-post:hover,
.proof-item:hover,
.pickup-card:hover,
.product-card:hover,
.support-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(26, 44, 35, 0.12) !important;
}

.hero-content,
.pickup-card,
.cta-content,
.blog-post,
.dashboard-card,
.contact-form-panel,
.contact-info-card {
  border-radius: 24px;
}

.hero-content {
  padding: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 60px rgba(8, 23, 18, 0.18);
}

.hero-stats {
  gap: 18px;
  justify-content: flex-start;
}

.hero-stat {
  min-width: 138px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.quick-nav {
  width: fit-content;
  max-width: 100%;
}

.products-grid,
.gallery-grid,
.blog-grid,
.dashboard-grid,
.footer-grid,
.social-proof-grid {
  align-items: stretch;
}

.product-card,
.blog-post,
.dashboard-card,
.cart-items-panel,
.cart-summary-panel,
.contact-form-panel,
.contact-info-card {
  overflow: hidden;
}

.product-body,
.blog-text,
.card-content,
.contact-form-panel,
.contact-info-card {
  line-height: 1.65;
}

.product-body h3,
.blog-text h2,
.dashboard-card h3,
.contact-form-panel h3,
.filter-sidebar h3 {
  letter-spacing: -0.01em;
}

.blog-post,
.dashboard-card {
  height: 100%;
}

.blog-grid {
  gap: 28px;
}

.dashboard-grid {
  gap: 28px;
}

.contact-grid {
  align-items: start;
}

.contact-info-panel,
.cta-buttons,
.quick-actions,
.hero-buttons {
  gap: 14px;
}

.footer-grid {
  gap: 28px;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-col ul li,
.footer-contact-item {
  word-break: break-word;
}

.nav-links {
  flex-wrap: wrap;
}

.nav-links a,
.nav-cart-btn,
.btn,
.filter-btn,
.gallery-filter-btn,
.nav-btn {
  min-height: 44px;
}

.form-group input,
.form-group select,
.form-group textarea,
.search-bar input,
.sort-select,
.qty-input {
  min-height: 48px;
}

.gallery-item {
  min-height: 260px;
}

.gallery-overlay {
  transform: translateY(0);
  opacity: 0;
  transition: opacity .28s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.quick-order-banner,
.cta-banner,
.buy-cta {
  overflow: hidden;
}

.quick-order-banner::after,
.cta-banner::after,
.buy-cta::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 62%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-snap-grid,
  .mv-grid,
  .contact-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .filter-layout {
    display: block;
  }

  .filter-sidebar {
    width: 100%;
    max-width: none;
  }
}

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

  .nav-inner {
    height: 76px;
    gap: 10px;
  }

  .nav-logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .nav-logo-text .name {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .nav-logo-text .tagline {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(251, 248, 243, 0.98);
    border: 1px solid rgba(31, 63, 51, 0.10);
    box-shadow: 0 18px 45px rgba(29, 49, 40, 0.14);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
    flex: 0 0 auto;
  }

  .nav-cart-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 54px;
  }

  .hero-content {
    padding: 22px 18px;
  }

  .hero h1,
  .page-hero h1,
  .blog-hero h1,
  .dashboard-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.05;
  }

  .hero p,
  .page-hero p,
  .blog-hero p,
  .dashboard-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons,
  .cta-buttons,
  .quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .cta-buttons .btn,
  .quick-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .quick-nav {
    margin-top: 14px;
    padding: 6px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .quick-nav a {
    text-align: center;
  }

  .hero-stats,
  .section-pedestal,
  .gallery-stats,
  .cta-features {
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 12px;
  }

  .hero-stat,
  .pedestal-stat,
  .stat-item,
  .feature {
    min-width: 0;
    width: 100%;
  }

  .products-grid,
  .gallery-grid,
  .blog-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 220px;
  }

  .gallery-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .contact-form-panel,
  .dashboard-card,
  .blog-post,
  .cart-summary-panel,
  .cart-items-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cart-item {
    flex-direction: column;
    gap: 12px;
  }

  .cart-item-total {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-stats,
  .section-pedestal,
  .gallery-stats,
  .cta-features,
  .achievements-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .blog-hero,
  .dashboard-hero {
    padding: 110px 0 44px;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .add-to-cart-btn,
  .btn,
  .filter-btn,
  .gallery-filter-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-qty {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Visual Depth Refresh
   Softer surfaces, richer buttons, less white glare
   ======================================== */

:root {
  --surface-0: #f2ede4;
  --surface-1: #ebe4d8;
  --surface-2: #e2d8c8;
  --surface-card: rgba(247, 243, 236, 0.78);
  --surface-card-strong: rgba(242, 236, 227, 0.92);
  --ink-strong: #182a22;
  --ink-soft: #51645b;
  --line-soft: rgba(24, 42, 34, 0.10);
  --glow-amber: rgba(212, 166, 92, 0.18);
  --glow-green: rgba(73, 118, 94, 0.16);
}

body {
  background:
    radial-gradient(circle at top left, rgba(215,176,106,0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(47,93,77,0.10), transparent 30%),
    linear-gradient(180deg, #f6f0e7 0%, #eef2ec 100%);
  color: var(--ink-strong);
}

.featured,
.products-section,
.filter-section,
.contact-section,
.about-snap,
.dashboard-content,
.blog-content {
  background:
    radial-gradient(circle at 0% 0%, rgba(215,176,106,0.09), transparent 20%),
    radial-gradient(circle at 100% 20%, rgba(49,88,71,0.08), transparent 22%),
    linear-gradient(180deg, var(--surface-0), #f7f4ee) !important;
}

.social-proof-section,
.pickup,
.mission-vision {
  background:
    radial-gradient(circle at 10% 15%, rgba(73,118,94,0.08), transparent 18%),
    linear-gradient(180deg, #edf1eb, #f4efe6) !important;
}

.why-us,
.gallery-section,
.buy-cta,
.cta-banner,
.quick-order-banner,
.blog-hero,
.dashboard-hero,
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(215,176,106,0.14), transparent 24%),
    linear-gradient(135deg, #19382d 0%, #244738 52%, #315847 100%) !important;
}

.hero-overlay,
.page-hero::before,
.blog-hero::before {
  opacity: 0.16;
}

.hero-content {
  background:
    linear-gradient(155deg, rgba(253,248,241,0.16), rgba(255,255,255,0.04)),
    radial-gradient(circle at top right, rgba(215,176,106,0.12), transparent 40%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(12, 24, 19, 0.22);
}

.pedestal-stat,
.mv-card,
.why-card,
.stat-item,
.filter-sidebar,
.weather-widget,
.contact-info-card,
.contact-form-panel,
.cart-items-panel,
.cart-summary-panel,
.dashboard-card,
.blog-post,
.proof-item,
.pickup-card,
.product-card,
.wishlist-item,
.order-item,
.tip-item,
.metric,
.support-link,
.faq-item,
.testimonial-card,
.achievement-card,
.team-card,
.value-card,
.process-step {
  background:
    linear-gradient(180deg, var(--surface-card-strong), var(--surface-card)),
    radial-gradient(circle at top right, var(--glow-amber), transparent 30%) !important;
  border: 1px solid var(--line-soft) !important;
  box-shadow:
    0 18px 34px rgba(24, 42, 34, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.45) !important;
}

.pedestal-stat::before,
.mv-card::before,
.why-card::before,
.stat-item::before,
.filter-sidebar::before,
.weather-widget::before,
.contact-info-card::before,
.contact-form-panel::before,
.cart-items-panel::before,
.cart-summary-panel::before,
.dashboard-card::before,
.blog-post::before,
.proof-item::before,
.pickup-card::before,
.product-card::before,
.wishlist-item::before,
.order-item::before,
.tip-item::before,
.metric::before,
.support-link::before {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.52), rgba(255,255,255,0.12) 40%, rgba(255,255,255,0) 72%),
    radial-gradient(circle at 100% 0%, var(--glow-green), transparent 35%);
}

.section-title,
.about-snap-text .section-title,
.product-body h3,
.filter-sidebar h3,
.filter-group h4,
.contact-info-card h4,
.contact-form-panel h3,
.blog-text h2,
.dashboard-card h3,
.dashboard-card h4,
.cart-summary-panel h3,
.cart-items-header h3 {
  color: var(--ink-strong) !important;
}

.section-subtitle,
.product-body p,
.about-snap-text p,
.contact-info-card p,
.dashboard-card p,
.blog-text p,
.tip-content p,
.support-link p,
.proof-label,
.weather-details span,
.checkout-note,
.cart-item-price {
  color: var(--ink-soft) !important;
}

.proof-number,
.hero-stat .num,
.pedestal-stat .stat-num,
.achievement-number,
.metric-value,
.price-tag,
.summary-total .amount {
  color: #244738 !important;
}

.hero-stat,
.pedestal-stat,
.stat-item {
  background:
    linear-gradient(180deg, rgba(248,242,233,0.26), rgba(255,255,255,0.08)),
    radial-gradient(circle at top right, rgba(215,176,106,0.18), transparent 32%);
  border-color: rgba(255,255,255,0.14);
}

.btn {
  text-shadow: none;
  box-shadow: 0 14px 28px rgba(24, 42, 34, 0.14);
}

.btn-primary {
  background: linear-gradient(135deg, #234636, #3b6754 60%, #6f9883);
}

.btn-secondary {
  background: linear-gradient(135deg, #355a49, #517c69);
}

.btn-success {
  background: linear-gradient(135deg, #1c392d, #315847);
}

.btn-gold {
  background: linear-gradient(135deg, #d0a866, #ecd5a7);
  color: #22372d;
}

.btn-outline {
  background: linear-gradient(135deg, rgba(251,243,231,0.28), rgba(255,255,255,0.10));
  border-color: rgba(255,255,255,0.24);
}

.btn-earth {
  background: linear-gradient(135deg, #8c6545, #c39b73);
}

.add-to-cart-btn,
.nav-cart-btn {
  background: linear-gradient(135deg, #203d31, #355b49 60%, #5f8270) !important;
  border-color: rgba(35,70,54,0.18) !important;
}

.filter-btn,
.gallery-filter-btn,
.nav-btn,
.sort-select,
.search-bar input,
.form-group input,
.form-group select,
.form-group textarea,
.qty-input,
#calc-area,
#calc-crop,
#calc-density {
  background: rgba(248,244,238,0.96) !important;
  color: var(--ink-strong) !important;
  border: 1px solid rgba(24,42,34,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.filter-btn:hover:not(.active),
.gallery-filter-btn:hover,
.nav-btn:hover:not(:disabled) {
  background: rgba(235,226,214,0.96) !important;
}

.filter-btn.active,
.filter-btn.active-price,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, #284c3c, #406a58) !important;
  color: #f8f5ee !important;
  border-color: transparent !important;
}

.quick-nav {
  background: rgba(20, 39, 31, 0.28);
  border: 1px solid rgba(255,255,255,0.10);
}

.quick-nav a {
  background: rgba(245,239,230,0.14);
}

.quick-nav a:hover {
  background: rgba(255,255,255,0.22);
  color: #f8f5ee;
}

.gallery-overlay {
  background: linear-gradient(180deg, transparent, rgba(20,31,26,0.84));
}

.social-link {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
}

.social-link:hover {
  background: rgba(215,176,106,0.18);
  color: #fff;
}

.qty-btn {
  background: #efe7dc;
  color: #244738;
}

.qty-btn:hover {
  background: #315847;
}

.product-card:hover,
.why-card:hover,
.mv-card:hover,
.pickup-card:hover,
.blog-post:hover,
.dashboard-card:hover,
.contact-info-card:hover,
.proof-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 44px rgba(24, 42, 34, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.52) !important;
}

footer {
  background:
    radial-gradient(circle at top right, rgba(215,176,106,0.10), transparent 22%),
    linear-gradient(135deg, #12271f, #1a352b 58%, #204133) !important;
}

@media (max-width: 768px) {
  .hero-content,
  .contact-form-panel,
  .dashboard-card,
  .blog-post,
  .pickup-card,
  .product-card {
    border-radius: 20px;
  }

  .nav-links {
    background:
      linear-gradient(180deg, rgba(248,244,238,0.98), rgba(241,234,224,0.98));
  }

  .quick-nav {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Final De-Whitening Overrides
   ======================================== */

body,
.featured,
.products-section,
.filter-section,
.contact-section,
.about-snap,
.dashboard-content,
.blog-content,
.social-proof-section,
.pickup,
.mission-vision,
.cart-section,
.faq-section,
.values-section,
.team-section,
.achievements-section,
.process-section {
  background:
    radial-gradient(circle at top left, rgba(73,118,94,0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(212,166,92,0.10), transparent 24%),
    linear-gradient(180deg, #e7ddd0 0%, #ddd9cf 100%) !important;
}

.pedestal-stat,
.mv-card,
.why-card,
.stat-item,
.filter-sidebar,
.weather-widget,
.contact-info-card,
.contact-form-panel,
.cart-items-panel,
.cart-summary-panel,
.dashboard-card,
.blog-post,
.proof-item,
.pickup-card,
.product-card,
.wishlist-item,
.order-item,
.tip-item,
.metric,
.support-link,
.faq-item,
.testimonial-card,
.achievement-card,
.team-card,
.value-card,
.process-step {
  background:
    linear-gradient(180deg, rgba(226, 215, 198, 0.96), rgba(214, 205, 190, 0.92)) !important;
  border: 1px solid rgba(36, 55, 45, 0.12) !important;
  box-shadow:
    0 16px 32px rgba(26, 39, 32, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.product-card::before,
.blog-post::before,
.dashboard-card::before,
.contact-form-panel::before,
.contact-info-card::before,
.proof-item::before,
.pickup-card::before,
.mv-card::before,
.why-card::before,
.filter-sidebar::before,
.weather-widget::before {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04) 38%, rgba(255,255,255,0) 72%),
    radial-gradient(circle at 100% 0%, rgba(73,118,94,0.12), transparent 35%) !important;
}

.btn,
.add-to-cart-btn,
.nav-cart-btn,
.filter-btn,
.gallery-filter-btn,
.nav-btn {
  background-image: none !important;
  box-shadow: 0 12px 24px rgba(24, 42, 34, 0.14) !important;
}

.btn-primary,
.add-to-cart-btn,
.nav-cart-btn {
  background: linear-gradient(135deg, #1d382d, #325443 60%, #496d5b) !important;
  color: #f8f4ec !important;
  border-color: rgba(29,56,45,0.22) !important;
}

.btn-secondary,
.btn-success {
  background: linear-gradient(135deg, #284437, #416654) !important;
  color: #f8f4ec !important;
}

.btn-gold,
.btn-earth {
  background: linear-gradient(135deg, #9f7a49, #c8a272) !important;
  color: #1c2d25 !important;
  border-color: rgba(120,90,55,0.18) !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1b8c62, #28a06f) !important;
  color: #f7f4ed !important;
}

.btn-outline,
.gallery-filter-btn,
.nav-btn,
.filter-btn:not(.active):not(.active-price) {
  background: linear-gradient(135deg, rgba(54, 82, 67, 0.88), rgba(77, 104, 89, 0.92)) !important;
  color: #f6f2ea !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}

.btn-outline:hover,
.gallery-filter-btn:hover,
.nav-btn:hover:not(:disabled),
.filter-btn:hover:not(.active):not(.active-price) {
  background: linear-gradient(135deg, rgba(68, 96, 80, 0.96), rgba(93, 120, 104, 0.98)) !important;
  color: #fff !important;
}

.filter-btn.active,
.filter-btn.active-price,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, #17352b, #2a4c3c) !important;
  color: #f8f4ec !important;
}

.search-bar input,
.form-group input,
.form-group select,
.form-group textarea,
.qty-input,
.sort-select,
#calc-area,
#calc-crop,
#calc-density {
  background: rgba(228, 219, 204, 0.94) !important;
  color: #1b2f26 !important;
  border: 1px solid rgba(36,55,45,0.14) !important;
}

.qty-btn {
  background: #d9cdbb !important;
  color: #1c3329 !important;
  border-color: rgba(36,55,45,0.16) !important;
}

.qty-btn:hover {
  background: #2d5140 !important;
  color: #f8f4ec !important;
}

.nav-links {
  background: transparent;
}

@media (max-width: 768px) {
  .nav-links {
    background: linear-gradient(180deg, rgba(215,206,192,0.98), rgba(203,194,178,0.98)) !important;
  }
}

/* ========================================
   Art Direction Reset
   ======================================== */

:root {
  --surface-deep: #0f1c18;
  --surface-deeper: #13241f;
  --surface-midnight: #1a2f28;
  --surface-moss: #27453a;
  --surface-panel: rgba(19, 36, 31, 0.78);
  --surface-panel-strong: rgba(22, 40, 34, 0.92);
  --surface-soft-dark: rgba(34, 58, 49, 0.92);
  --surface-input: rgba(18, 31, 27, 0.9);
  --text-strong: #f4efe6;
  --text-body: #d7d0c3;
  --text-muted: #abbaa8;
  --accent-gold: #d2a35c;
  --accent-green: #78a98d;
  --accent-forest: #3d6b59;
  --line-dark: rgba(255,255,255,0.08);
}

body,
.featured,
.products-section,
.filter-section,
.contact-section,
.about-snap,
.dashboard-content,
.blog-content,
.social-proof-section,
.pickup,
.mission-vision,
.cart-section,
.faq-section,
.values-section,
.team-section,
.achievements-section,
.process-section {
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(120,169,141,0.10), transparent 24%),
    linear-gradient(180deg, var(--surface-deep) 0%, var(--surface-deeper) 100%) !important;
  color: var(--text-strong) !important;
}

.why-us,
.gallery-section,
.buy-cta,
.cta-banner,
.quick-order-banner,
.blog-hero,
.dashboard-hero,
.page-hero,
.hero,
footer {
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.14), transparent 20%),
    radial-gradient(circle at 15% 85%, rgba(120,169,141,0.10), transparent 18%),
    linear-gradient(135deg, #0b1512 0%, #13241f 45%, #1c342c 100%) !important;
  color: var(--text-strong) !important;
}

.hero-bg {
  filter: brightness(0.26) saturate(0.8) contrast(1.05) !important;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(6,12,10,0.78), rgba(18,34,29,0.66), rgba(44,76,63,0.46)) !important;
}

.hero-content,
.pedestal-stat,
.mv-card,
.why-card,
.stat-item,
.filter-sidebar,
.weather-widget,
.contact-info-card,
.contact-form-panel,
.cart-items-panel,
.cart-summary-panel,
.dashboard-card,
.blog-post,
.proof-item,
.pickup-card,
.product-card,
.wishlist-item,
.order-item,
.tip-item,
.metric,
.support-link,
.faq-item,
.testimonial-card,
.achievement-card,
.team-card,
.value-card,
.process-step {
  background:
    linear-gradient(180deg, var(--surface-panel-strong), var(--surface-panel)) !important;
  color: var(--text-strong) !important;
  border: 1px solid var(--line-dark) !important;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(18px) saturate(110%) !important;
}

.hero-content::before,
.pedestal-stat::before,
.mv-card::before,
.why-card::before,
.stat-item::before,
.filter-sidebar::before,
.weather-widget::before,
.contact-info-card::before,
.contact-form-panel::before,
.cart-items-panel::before,
.cart-summary-panel::before,
.dashboard-card::before,
.blog-post::before,
.proof-item::before,
.pickup-card::before,
.product-card::before,
.wishlist-item::before,
.order-item::before,
.tip-item::before,
.metric::before,
.support-link::before {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02) 40%, rgba(255,255,255,0) 72%),
    radial-gradient(circle at top right, rgba(210,163,92,0.16), transparent 34%) !important;
}

.section-title,
.about-snap-text .section-title,
.product-body h3,
.filter-sidebar h3,
.filter-group h4,
.contact-info-card h4,
.contact-form-panel h3,
.blog-text h2,
.dashboard-card h3,
.dashboard-card h4,
.cart-summary-panel h3,
.cart-items-header h3,
.cta-content h2,
.buy-cta h2,
.cta-banner h2,
.page-hero h1,
.blog-hero h1,
.dashboard-hero h1,
.hero h1 {
  color: var(--text-strong) !important;
}

.section-subtitle,
.product-body p,
.about-snap-text p,
.contact-info-card p,
.dashboard-card p,
.blog-text p,
.tip-content p,
.support-link p,
.proof-label,
.weather-details span,
.checkout-note,
.cart-item-price,
.page-hero p,
.blog-hero p,
.dashboard-hero p,
.hero p {
  color: var(--text-body) !important;
}

.price-tag,
.summary-total,
.summary-row,
.cart-item-name,
.order-amount,
.wishlist-item h4,
.wishlist-item p,
.metric-value,
.proof-number,
.hero-stat .num,
.pedestal-stat .stat-num,
.achievement-number {
  color: #f5d39b !important;
}

.nav-logo-text .name,
.nav-links a,
.hamburger span,
.footer-col h4,
.footer-brand p,
.footer-col a,
.footer-contact-item,
footer p {
  color: var(--text-strong) !important;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(210,163,92,0.14) !important;
  color: #fff4df !important;
}

.btn,
.add-to-cart-btn,
.nav-cart-btn,
.filter-btn,
.gallery-filter-btn,
.nav-btn {
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,0.24) !important;
}

.btn-primary,
.add-to-cart-btn,
.nav-cart-btn {
  background: linear-gradient(135deg, #8b653d, #c19157 55%, #e0bf86) !important;
  color: #102019 !important;
}

.btn-secondary,
.btn-success {
  background: linear-gradient(135deg, #315847, #4f7a67 60%, #7ca58f) !important;
  color: #f6f1e8 !important;
}

.btn-gold,
.btn-earth,
.filter-btn.active,
.filter-btn.active-price,
.gallery-filter-btn.active {
  background: linear-gradient(135deg, #c38f4e, #e0bc7f) !important;
  color: #12211b !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1d8b60, #34b27d) !important;
  color: #f3efe7 !important;
}

.btn-outline,
.gallery-filter-btn,
.nav-btn,
.filter-btn:not(.active):not(.active-price) {
  background: linear-gradient(135deg, rgba(39,69,58,0.96), rgba(54,89,75,0.96)) !important;
  color: var(--text-strong) !important;
}

.search-bar input,
.form-group input,
.form-group select,
.form-group textarea,
.qty-input,
.sort-select,
#calc-area,
#calc-crop,
#calc-density {
  background: var(--surface-input) !important;
  color: var(--text-strong) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.search-bar input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted) !important;
}

.qty-btn {
  background: rgba(55, 86, 73, 0.92) !important;
  color: var(--text-strong) !important;
}

.qty-btn:hover {
  background: linear-gradient(135deg, #9f7547, #c8975c) !important;
  color: #12211b !important;
}

.product-img,
.cart-item-img,
.map-placeholder {
  background: linear-gradient(135deg, rgba(34,58,49,0.92), rgba(19,36,31,0.96)) !important;
}

.quick-nav {
  background: rgba(14, 26, 22, 0.58) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.quick-nav a {
  background: rgba(255,255,255,0.06) !important;
  color: var(--text-strong) !important;
}

.quick-nav a:hover {
  background: rgba(210,163,92,0.16) !important;
  color: #fff6e5 !important;
}

.gallery-overlay {
  background: linear-gradient(180deg, transparent, rgba(4,8,7,0.88)) !important;
}

.social-link {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.social-link:hover {
  background: rgba(210,163,92,0.18) !important;
  color: #fff6e5 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

@media (max-width: 768px) {
  .nav-links {
    background: linear-gradient(180deg, rgba(14,26,22,0.98), rgba(24,43,36,0.98)) !important;
  }
}

/* ========================================
   Blog, Dashboard, and Alternate Footer Polish
   ======================================== */

.blog-page,
.dashboard-page {
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.10), transparent 22%),
    radial-gradient(circle at bottom left, rgba(120,169,141,0.08), transparent 20%),
    linear-gradient(180deg, #0f1b18 0%, #162721 100%) !important;
}

.blog-hero,
.dashboard-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.18), transparent 24%),
    linear-gradient(135deg, #0a1411 0%, #14241e 52%, #244338 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-hero::after,
.dashboard-hero::after {
  content: '';
  position: absolute;
  inset: auto -6% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,163,92,0.18), transparent 62%);
  pointer-events: none;
}

.blog-hero h1,
.dashboard-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.blog-hero p,
.dashboard-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-body) !important;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-post {
  border-radius: 26px !important;
}

.blog-image {
  height: 240px;
}

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7,13,11,0.62) 100%);
  pointer-events: none;
}

.blog-category {
  background: linear-gradient(135deg, #c89455, #e3be83) !important;
  color: #14211b !important;
  border: 1px solid rgba(255,255,255,0.10);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-text {
  padding: 1.6rem;
}

.blog-meta {
  color: var(--text-muted) !important;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.blog-tips {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(210,163,92,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.blog-tips h3,
.blog-tips li {
  color: var(--text-body) !important;
}

.read-more-btn {
  background: linear-gradient(135deg, #b78548, #deb878) !important;
  color: #15221c !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
}

.newsletter-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.16), transparent 22%),
    linear-gradient(135deg, #13241f 0%, #1f392f 100%) !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 46px rgba(0,0,0,0.24);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.newsletter-content p {
  color: var(--text-body) !important;
}

.newsletter-form input {
  background: rgba(12, 22, 18, 0.88) !important;
  color: var(--text-strong) !important;
  border: 1px solid rgba(255,255,255,0.08);
}

.newsletter-form button {
  background: linear-gradient(135deg, #b98648, #e0bc80) !important;
  color: #14211b !important;
  border: none !important;
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.dashboard-card {
  border-radius: 24px !important;
}

.card-header {
  background:
    linear-gradient(135deg, rgba(210,163,92,0.12), rgba(210,163,92,0.03)),
    linear-gradient(135deg, #13241f 0%, #1d352c 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card-header h3,
.view-all {
  color: #f7f1e6 !important;
}

.view-all {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.view-all:hover {
  background: rgba(210,163,92,0.14);
}

.profile-avatar {
  background: linear-gradient(135deg, #b7864a, #dbb97d) !important;
  color: #14211b;
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.profile-details h4,
.order-info h4,
.tip-content h4,
.support-link h4,
.analytics-chart h4 {
  color: var(--text-strong) !important;
}

.profile-details p,
.order-info p,
.tip-content p,
.support-link p,
.metric-label {
  color: var(--text-body) !important;
}

.status-delivered,
.status-shipped,
.status-processing {
  border: 1px solid rgba(255,255,255,0.06);
}

.status-delivered {
  background: rgba(47, 112, 77, 0.24);
  color: #bfe4ce;
}

.status-shipped {
  background: rgba(61, 101, 153, 0.24);
  color: #c9dcff;
}

.status-processing {
  background: rgba(177, 130, 62, 0.22);
  color: #f2d7a8;
}

.chart-bar {
  background: linear-gradient(180deg, #c18f4f 0%, #6a8d79 100%) !important;
  box-shadow: 0 10px 18px rgba(0,0,0,0.20);
}

.metric {
  background: rgba(255,255,255,0.04) !important;
}

.support-link {
  border-radius: 18px;
}

.support-link:hover {
  transform: translateX(0) translateY(-4px);
}

.footer,
.footer-content,
.footer-section,
.social-links {
  color: var(--text-strong);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 34px;
}

.footer-section {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-section h3 {
  margin-bottom: 14px;
  color: #f8f1e5;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: var(--text-body);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li + li {
  margin-top: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
  background: rgba(210,163,92,0.14);
  color: #fff6e5;
}

@media (max-width: 768px) {
  .blog-hero,
  .dashboard-hero {
    padding: 110px 0 56px;
  }

  .blog-grid,
  .dashboard-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .blog-text,
  .card-content {
    padding: 1.2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
    .newsletter-form button {
    width: 100%;
  }
}

/* ========================================
   Shop Signature Experience
   ======================================== */

body:has(.filter-section) .page-hero {
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.20), transparent 24%),
    radial-gradient(circle at 12% 78%, rgba(120,169,141,0.12), transparent 20%),
    linear-gradient(135deg, #091310 0%, #12211c 42%, #1f3b30 100%) !important;
}

body:has(.filter-section) .page-hero .container {
  max-width: 980px;
}

body:has(.filter-section) .page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.04em;
}

body:has(.filter-section) .page-hero p {
  max-width: 680px;
  margin: 0 auto 24px;
}

body:has(.filter-section) .filter-section {
  padding: 34px 0 14px !important;
  background:
    radial-gradient(circle at top left, rgba(210,163,92,0.10), transparent 18%),
    linear-gradient(180deg, #0f1c18, #162722) !important;
}

body:has(.filter-section) .filter-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body:has(.filter-section) .filter-sidebar {
  position: sticky;
  top: 98px;
  width: 100%;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(18, 33, 28, 0.96), rgba(27, 47, 40, 0.92)) !important;
  box-shadow:
    0 24px 44px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

body:has(.filter-section) .filter-sidebar h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  text-align: left;
}

body:has(.filter-section) .filter-group {
  margin-bottom: 18px;
}

body:has(.filter-section) .filter-group h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f3dfbd !important;
}

body:has(.filter-section) .search-bar input {
  padding-left: 46px;
  border-radius: 18px;
}

body:has(.filter-section) .search-bar span {
  color: #d8c5a5;
}

body:has(.filter-section) .filter-btn {
  border-radius: 18px;
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
}

body:has(.filter-section) .weather-widget,
body:has(.filter-section) .crop-calculator,
body:has(.filter-section) .filter-sidebar > div[style*='margin-top: 20px'] {
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: var(--text-body) !important;
}

body:has(.filter-section) .crop-calculator h4,
body:has(.filter-section) .weather-widget h4 {
  color: var(--text-strong) !important;
}

body:has(.filter-section) .products-section {
  padding: 10px 0 90px !important;
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.08), transparent 18%),
    linear-gradient(180deg, #121f1b, #182b24) !important;
}

body:has(.filter-section) .products-section .container {
  position: relative;
}

body:has(.filter-section) .shop-header {
  padding: 18px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 32px rgba(0,0,0,0.20);
  margin-bottom: 26px;
}

body:has(.filter-section) #product-count {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2dfbd !important;
}

body:has(.filter-section) #shop-products.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

body:has(.filter-section) .product-card {
  border-radius: 28px !important;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17,29,24,0.98), rgba(28,45,38,0.95)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow:
    0 24px 40px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

body:has(.filter-section) .product-card::before {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.01) 48%, transparent 72%),
    radial-gradient(circle at top right, rgba(210,163,92,0.14), transparent 34%) !important;
}

body:has(.filter-section) .product-img {
  height: 228px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0)),
    linear-gradient(135deg, #13231d, #20362d) !important;
}

body:has(.filter-section) .product-img img {
  filter: saturate(0.95) contrast(1.02);
}

body:has(.filter-section) .product-category {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #cb9856, #ebc98f) !important;
  color: #112019 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body:has(.filter-section) .product-body {
  padding: 20px 20px 22px;
}

body:has(.filter-section) .product-body h3 {
  font-size: 1.08rem;
  min-height: 2.8em;
}

body:has(.filter-section) .product-body p {
  min-height: 3.9em;
  color: #d5cec1 !important;
}

body:has(.filter-section) .qty-control {
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body:has(.filter-section) .price-tag {
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(210,163,92,0.16), rgba(120,169,141,0.10)) !important;
}

body:has(.filter-section) .add-to-cart-btn {
  border-radius: 16px;
  padding: 10px 18px;
}

body:has(.filter-section) .quick-order-banner {
  margin: 0 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 42px rgba(0,0,0,0.24);
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.16), transparent 22%),
    linear-gradient(135deg, #11211b, #213c31) !important;
}

body:has(.filter-section) .quick-order-banner h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

body:has(.filter-section) .buy-cta {
  margin: 0 24px 32px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 48px rgba(0,0,0,0.24);
  background:
    radial-gradient(circle at top right, rgba(210,163,92,0.16), transparent 22%),
    linear-gradient(135deg, #0e1a16, #1b332a 62%, #28483b) !important;
}

body:has(.filter-section) .cta-content {
  max-width: 760px;
}

body:has(.filter-section) .cta-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
}

body:has(.filter-section) .cta-features .feature {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  min-width: 140px;
}

body:has(.filter-section) .modal {
  width: min(980px, calc(100vw - 32px));
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15,26,22,0.98), rgba(24,40,34,0.96)) !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 70px rgba(0,0,0,0.36);
}

body:has(.filter-section) .modal-body {
  padding: 28px;
}

body:has(.filter-section) .modal-price {
  font-size: 1.2rem;
  color: #f1cc90;
  margin-bottom: 12px;
}

body:has(.filter-section) .modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}

body:has(.filter-section) .modal-info-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body:has(.filter-section) .modal-info-item label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #b9c4b6;
}

body:has(.filter-section) .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

body:has(.filter-section) .modal-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body:has(.filter-section) .modal-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1024px) {
  body:has(.filter-section) .filter-layout {
    grid-template-columns: 1fr;
  }

  body:has(.filter-section) .filter-sidebar {
    position: static;
  }

  body:has(.filter-section) .quick-order-banner,
  body:has(.filter-section) .buy-cta {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  body:has(.filter-section) .page-hero {
    padding-bottom: 50px;
  }

  body:has(.filter-section) .filter-section {
    padding-top: 18px !important;
  }

  body:has(.filter-section) .filter-sidebar {
    padding: 20px;
    border-radius: 22px;
  }

  body:has(.filter-section) .shop-header {
    padding: 16px;
    border-radius: 20px;
  }

  body:has(.filter-section) #shop-products.products-grid {
    grid-template-columns: 1fr;
  }

  body:has(.filter-section) .product-img {
    height: 210px;
  }

  body:has(.filter-section) .buy-cta,
  body:has(.filter-section) .quick-order-banner {
    border-radius: 22px;
  }

  body:has(.filter-section) .modal-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Focused redesign: homepage, gallery, contact */
body:has(.hero) .hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at top right, rgba(211, 162, 91, 0.2), transparent 24%),
    radial-gradient(circle at left center, rgba(97, 152, 121, 0.14), transparent 28%),
    linear-gradient(145deg, #08110e 0%, #13231c 36%, #1c342a 100%);
}

body:has(.hero) .hero-bg {
  filter: brightness(0.34) saturate(0.9) contrast(1.05);
  transform: scale(1.05);
}

body:has(.hero) .hero-overlay {
  background:
    linear-gradient(120deg, rgba(7, 13, 11, 0.88), rgba(16, 29, 24, 0.72) 45%, rgba(27, 46, 38, 0.5) 100%);
}

body:has(.hero) .hero-content {
  max-width: 760px;
}

body:has(.hero) .hero-badge {
  background: rgba(244, 201, 128, 0.14);
  border-color: rgba(244, 201, 128, 0.34);
  color: #f7deb2;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

body:has(.hero) .hero h1 {
  letter-spacing: -0.04em;
  max-width: 10ch;
}

body:has(.hero) .hero p {
  max-width: 58ch;
  color: rgba(239, 233, 220, 0.88);
}

body:has(.hero) .hero-buttons .btn,
body:has(.hero) .cta-banner .btn,
body:has(.contact-section) .btn,
body:has(.gallery-section) .btn,
body:has(.hero) .nav-cart-btn,
body:has(.gallery-section) .nav-cart-btn,
body:has(.contact-section) .nav-cart-btn {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body:has(.hero) .btn-primary,
body:has(.hero) .btn-gold,
body:has(.gallery-section) .btn-primary,
body:has(.contact-section) .btn-primary {
  background: linear-gradient(135deg, #b98449, #e0b777);
  color: #101611 !important;
}

body:has(.hero) .btn-outline,
body:has(.hero) .btn-whatsapp,
body:has(.gallery-section) .btn-whatsapp,
body:has(.contact-section) .btn-whatsapp {
  background: linear-gradient(135deg, #163328, #284b3c) !important;
  color: #f5efe2 !important;
}

body:has(.hero) .quick-nav {
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 46px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}

body:has(.hero) .quick-nav a {
  background: rgba(255,255,255,0.05);
  color: #ebe1cf;
  border: 1px solid rgba(255,255,255,0.06);
}

body:has(.hero) .quick-nav a:hover {
  background: linear-gradient(135deg, rgba(185,132,73,0.26), rgba(60,100,83,0.35));
  color: #fff;
}

body:has(.hero) .hero-stats,
body:has(.hero) .social-proof-grid,
body:has(.hero) .section-pedestal,
body:has(.gallery-section) .gallery-stats,
body:has(.contact-section) .contact-grid,
body:has(.contact-section) .map-section {
  position: relative;
  z-index: 1;
}

body:has(.hero) .hero-stat,
body:has(.hero) .proof-item,
body:has(.gallery-section) .stat-item {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 38px rgba(0,0,0,0.24);
  backdrop-filter: blur(14px);
}

body:has(.hero) .featured,
body:has(.hero) .about-snap,
body:has(.hero) .mission-vision,
body:has(.hero) .testimonials,
body:has(.hero) .social-proof-section {
  background:
    radial-gradient(circle at top, rgba(214, 164, 90, 0.06), transparent 20%),
    linear-gradient(180deg, #0a120f, #101a16 55%, #14231d);
}

body:has(.hero) .why-us {
  background:
    radial-gradient(circle at top left, rgba(123, 176, 144, 0.08), transparent 22%),
    linear-gradient(180deg, #0b1411, #0e1915 55%, #121f1a);
}

body:has(.hero) .why-card,
body:has(.hero) .mv-card,
body:has(.hero) .testi-card,
body:has(.hero) .about-snap-img,
body:has(.hero) .about-snap-text {
  border-radius: 28px;
}

body:has(.hero) .why-card,
body:has(.hero) .mv-card,
body:has(.hero) .testi-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 46px rgba(0,0,0,0.24);
}

body:has(.hero) .why-icon,
body:has(.contact-section) .contact-icon,
body:has(.hero) .mv-icon,
body:has(.contact-section) .map-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b98449, #e0b777);
  color: #111712;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

body:has(.hero) .about-snap-grid {
  gap: 28px;
}

body:has(.hero) .about-snap-text {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 46px rgba(0,0,0,0.24);
}

body:has(.hero) .cta-banner,
body:has(.gallery-section) .cta-banner {
  background:
    radial-gradient(circle at right top, rgba(224,183,119,0.16), transparent 24%),
    linear-gradient(135deg, #0c1713, #173127 50%, #244438 100%);
}

body:has(.gallery-section) .page-hero,
body:has(.contact-section) .page-hero {
  padding: 150px 0 100px;
  background:
    radial-gradient(circle at top, rgba(224,183,119,0.14), transparent 20%),
    linear-gradient(140deg, #08110e, #13231b 55%, #1c3429 100%);
}

body:has(.gallery-section) .page-hero::before,
body:has(.contact-section) .page-hero::before {
  opacity: 0.14;
  filter: grayscale(0.15) contrast(1.1);
}

body:has(.gallery-section) .gallery-section {
  background:
    radial-gradient(circle at top right, rgba(224,183,119,0.08), transparent 18%),
    linear-gradient(180deg, #08110e, #0f1a16 45%, #14231c 100%);
}

body:has(.gallery-section) .gallery-header,
body:has(.contact-section) .contact-grid,
body:has(.contact-section) .map-wrap {
  position: relative;
  z-index: 1;
}

body:has(.gallery-section) .gallery-header {
  padding: 32px;
  border-radius: 30px;
  margin-bottom: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 48px rgba(0,0,0,0.26);
}

body:has(.gallery-section) .gallery-filter-btn {
  min-width: 132px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
}

body:has(.gallery-section) .gallery-filter-btn .filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:has(.gallery-section) .gallery-filter-btn.active {
  background: linear-gradient(135deg, #b98449, #e0b777);
  border-color: rgba(255,255,255,0.16);
  color: #111712;
}

body:has(.gallery-section) .gallery-grid {
  gap: 22px;
}

body:has(.gallery-section) .gallery-item,
body:has(.gallery-section) .gallery-card,
body:has(.gallery-section) .gallery-grid > div {
  border-radius: 26px;
  overflow: hidden;
}

body:has(.gallery-section) .gallery-nav .nav-btn {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color: #efe3cf;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

body:has(.gallery-section) .lightbox-close {
  background: rgba(12, 20, 17, 0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

body:has(.contact-section) .contact-section {
  background:
    radial-gradient(circle at top left, rgba(224,183,119,0.08), transparent 20%),
    linear-gradient(180deg, #09110f, #0f1915 50%, #15241d);
}

body:has(.contact-section) .contact-grid {
  gap: 28px;
}

body:has(.contact-section) .contact-info-panel {
  display: grid;
  gap: 18px;
}

body:has(.contact-section) .contact-info-card,
body:has(.contact-section) .contact-form-panel,
body:has(.contact-section) .map-wrap,
body:has(.contact-section) .map-placeholder {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 48px rgba(0,0,0,0.26);
  border-radius: 28px;
}

body:has(.contact-section) .contact-info-card,
body:has(.contact-section) .contact-form-panel {
  position: relative;
  overflow: hidden;
}

body:has(.contact-section) .contact-info-card::before,
body:has(.contact-section) .contact-form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

body:has(.contact-section) .contact-info-card h4,
body:has(.contact-section) .contact-form-panel h3,
body:has(.contact-section) .map-section .section-title,
body:has(.gallery-section) .section-title,
body:has(.gallery-section) .page-hero h1,
body:has(.contact-section) .page-hero h1 {
  color: #fff7e8;
}

body:has(.contact-section) .contact-info-card p,
body:has(.contact-section) .contact-info-card a,
body:has(.contact-section) .contact-form-panel label,
body:has(.contact-section) .contact-form-panel p,
body:has(.contact-section) .page-hero p,
body:has(.gallery-section) .page-hero p,
body:has(.gallery-section) .section-subtitle {
  color: #d8d2c5;
}

body:has(.contact-section) input,
body:has(.contact-section) textarea,
body:has(.contact-section) select {
  background: rgba(10, 18, 15, 0.72) !important;
  color: #f5f1e7 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
}

body:has(.contact-section) input::placeholder,
body:has(.contact-section) textarea::placeholder {
  color: #a9afa9;
}

body:has(.contact-section) iframe {
  border-radius: 28px;
  filter: saturate(0.82) contrast(0.96) brightness(0.92);
}

@media (max-width: 1024px) {
  body:has(.hero) .hero h1 {
    max-width: none;
  }

  body:has(.contact-section) .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body:has(.hero) .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 72px;
  }

  body:has(.hero) .quick-nav {
    border-radius: 22px;
    justify-content: center;
  }

  body:has(.hero) .hero-stats,
  body:has(.hero) .social-proof-grid,
  body:has(.gallery-section) .gallery-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  body:has(.gallery-section) .gallery-header,
  body:has(.contact-section) .contact-form-panel,
  body:has(.contact-section) .contact-info-card,
  body:has(.contact-section) .map-wrap {
    border-radius: 22px;
  }

  body:has(.gallery-section) .gallery-filter-btn {
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  body:has(.hero) .hero-stats,
  body:has(.hero) .social-proof-grid,
  body:has(.gallery-section) .gallery-stats {
    grid-template-columns: 1fr;
  }

  body:has(.gallery-section) .page-hero,
  body:has(.contact-section) .page-hero {
    padding: 130px 0 80px;
  }
}

/* Navigation visibility refresh */
.navbar {
  background:
    linear-gradient(180deg, rgba(7, 12, 10, 0.94), rgba(16, 25, 21, 0.9)) !important;
  border-bottom: 1px solid rgba(224, 183, 119, 0.2) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35) !important;
}

.nav-inner {
  gap: 16px;
}

.nav-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nav-logo-text .name {
  color: #fff6e5 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.nav-logo-text .tagline {
  color: #d8b47b !important;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 16px !important;
  border-radius: 999px !important;
  color: #f3ebdf !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.nav-links a::after {
  display: none !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #101611 !important;
  background: linear-gradient(135deg, #c7924e, #e3bc7c) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.nav-cart-btn {
  min-height: 44px;
  padding: 10px 18px !important;
  background: linear-gradient(135deg, #173328, #2c4e3f) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #f5efe2 !important;
}

.nav-cart-btn:hover {
  background: linear-gradient(135deg, #c7924e, #e3bc7c) !important;
  color: #101611 !important;
}

.cart-badge {
  background: #f0bf78 !important;
  color: #111712 !important;
  min-width: 22px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.hamburger {
  width: 44px !important;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hamburger span {
  background: #fff4df !important;
}

@media (max-width: 900px) {
  .nav-inner {
    min-height: 78px;
  }

  .nav-logo-text .name {
    font-size: 0.92rem;
  }

  .nav-logo-text .tagline {
    font-size: 0.58rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(10, 16, 13, 0.98), rgba(20, 32, 27, 0.96)) !important;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 58px rgba(0,0,0,0.36);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: inline-flex !important;
  }
}

@media (min-width: 901px) {
  .nav-links {
    display: flex !important;
  }
}

/* Remaining page treatments */
body:has(.values-section) .page-hero {
  background:
    radial-gradient(circle at top left, rgba(135, 182, 152, 0.16), transparent 24%),
    linear-gradient(140deg, #08110d, #12211b 55%, #214033 100%);
}

body:has(.values-section) .about-snap,
body:has(.values-section) .mission-vision,
body:has(.values-section) .achievements-section,
body:has(.values-section) .values-section,
body:has(.values-section) .process-section,
body:has(.values-section) .team-section,
body:has(.values-section) .testimonials-section,
body:has(.values-section) .faq-section {
  background:
    radial-gradient(circle at top, rgba(224,183,119,0.08), transparent 18%),
    linear-gradient(180deg, #09110e, #101a15 55%, #17251f) !important;
}

body:has(.values-section) .achievement-card,
body:has(.values-section) .value-card,
body:has(.values-section) .process-step,
body:has(.values-section) .team-card,
body:has(.values-section) .testimonial-card,
body:has(.values-section) .faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 46px rgba(0,0,0,0.24);
  color: #f3ecdf;
}

body:has(.values-section) .value-card .icon,
body:has(.values-section) .team-avatar,
body:has(.values-section) .step-num {
  background: linear-gradient(135deg, #c7924e, #e3bc7c) !important;
  color: #101611 !important;
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

body:has(.values-section) .achievement-number,
body:has(.values-section) .section-title,
body:has(.values-section) .team-card h4,
body:has(.values-section) .faq-item h4 {
  color: #fff7e8 !important;
}

body:has(.values-section) .section-subtitle,
body:has(.values-section) .value-card p,
body:has(.values-section) .process-step p,
body:has(.values-section) .team-bio,
body:has(.values-section) .testimonial-quote,
body:has(.values-section) .faq-item p {
  color: #d7d0c3 !important;
}

body.blog-page {
  background:
    radial-gradient(circle at top right, rgba(115, 160, 133, 0.12), transparent 22%),
    linear-gradient(180deg, #09110f, #0f1915 50%, #15241e);
}

body.blog-page .blog-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top, rgba(224,183,119,0.16), transparent 18%),
    linear-gradient(140deg, #08110e, #14231b 55%, #1b3429);
}

body.blog-page .blog-grid {
  gap: 28px;
}

body.blog-page .blog-post,
body.blog-page .newsletter-content,
body.blog-page .footer-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}

body.blog-page .blog-post {
  overflow: hidden;
}

body.blog-page .blog-image {
  position: relative;
}

body.blog-page .blog-category,
body.blog-page .read-more-btn,
body.blog-page .newsletter-form button {
  background: linear-gradient(135deg, #c7924e, #e3bc7c) !important;
  color: #101611 !important;
  border-radius: 999px;
}

body.blog-page .blog-text h2,
body.blog-page .blog-tips h3,
body.blog-page .newsletter-content h2,
body.blog-page .footer-section h3 {
  color: #fff7e8 !important;
}

body.blog-page .blog-text p,
body.blog-page .blog-meta,
body.blog-page .blog-tips li,
body.blog-page .newsletter-content p,
body.blog-page .footer-section p,
body.blog-page .footer-section a {
  color: #d9d2c6 !important;
}

body.blog-page .blog-tips {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body.blog-page .newsletter-form input {
  background: rgba(10, 18, 15, 0.78);
  color: #f5efe2;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

body.dashboard-page {
  background:
    radial-gradient(circle at top left, rgba(224,183,119,0.12), transparent 18%),
    linear-gradient(180deg, #08110e, #101915 50%, #15231d);
}

body.dashboard-page .dashboard-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at right top, rgba(224,183,119,0.16), transparent 20%),
    linear-gradient(140deg, #09110f, #15251d 55%, #1f3a2d);
}

body.dashboard-page .dashboard-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 30px !important;
  box-shadow: 0 26px 50px rgba(0,0,0,0.24);
  overflow: hidden;
}

body.dashboard-page .card-header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.dashboard-page .card-header h3,
body.dashboard-page .profile-details h4,
body.dashboard-page .order-info h4,
body.dashboard-page .tip-content h4,
body.dashboard-page .wishlist-item h4,
body.dashboard-page .analytics-chart h4,
body.dashboard-page .support-link h4 {
  color: #fff7e8 !important;
}

body.dashboard-page .profile-details p,
body.dashboard-page .order-info p,
body.dashboard-page .tip-content p,
body.dashboard-page .wishlist-item p,
body.dashboard-page .metric-label,
body.dashboard-page .support-link p,
body.dashboard-page .view-all {
  color: #d9d2c6 !important;
}

body.dashboard-page .profile-avatar,
body.dashboard-page .tip-icon,
body.dashboard-page .support-icon {
  background: linear-gradient(135deg, #c7924e, #e3bc7c);
  color: #101611;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}

body.dashboard-page .stat-item,
body.dashboard-page .order-item,
body.dashboard-page .tip-item,
body.dashboard-page .wishlist-item,
body.dashboard-page .metric,
body.dashboard-page .support-link {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
}

body.dashboard-page .chart-bar {
  background: linear-gradient(180deg, #e3bc7c, #8eb693) !important;
  color: #101611 !important;
  border-radius: 16px 16px 8px 8px;
}

/* Chromium-safe polish */
body,
.page-hero,
.blog-content,
.dashboard-content,
.products-section,
.filter-section,
.contact-section,
.gallery-section,
.footer {
  background-attachment: scroll;
}

.nav-links a,
.nav-cart-btn,
.blog-post,
.newsletter-content,
.dashboard-card,
.footer-section,
.filter-sidebar,
.product-card,
.wishlist-item,
.contact-info-card,
.contact-form-panel,
.map-wrap {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .nav-links a,
  .nav-cart-btn,
  .blog-post,
  .newsletter-content,
  .dashboard-card,
  .footer-section,
  .filter-sidebar,
  .product-card,
  .wishlist-item,
  .contact-info-card,
  .contact-form-panel,
  .map-wrap {
    background: linear-gradient(180deg, rgba(14, 21, 18, 0.96), rgba(20, 31, 26, 0.94)) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
}

body.blog-page .blog-post,
body.blog-page .newsletter-content,
body.blog-page .footer-section,
body.dashboard-page .dashboard-card,
body.dashboard-page .wishlist-item,
body.dashboard-page .support-link,
body.dashboard-page .order-item,
body.dashboard-page .tip-item,
body.dashboard-page .metric {
  background:
    linear-gradient(180deg, rgba(17, 24, 20, 0.88), rgba(12, 18, 15, 0.94)) !important;
}

body.dashboard-page .wishlist-item .btn-primary,
body.dashboard-page .edit-profile-btn,
body.dashboard-page .support-link,
body.blog-page .read-more-btn,
body.blog-page .newsletter-form button {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

body.dashboard-page .wishlist-item .btn-primary {
  border: 0;
}

body.blog-page .blog-image img,
body.dashboard-page .wishlist-item img {
  display: block;
  width: 100%;
}

body.dashboard-page .chart-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 18px 14px;
}

.sort-select,
.search-bar input,
body.blog-page .newsletter-form input,
body.dashboard-page input,
body.dashboard-page select,
body.dashboard-page textarea {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(11, 17, 14, 0.92) !important;
  color: #f5efe2 !important;
  border-color: rgba(215, 182, 121, 0.22) !important;
}

.sort-select option,
.filter-btn,
select option {
  color: #f5efe2;
  background: #101712;
}

body.blog-page .blog-meta,
body.dashboard-page .view-all {
  opacity: 0.92;
}

@media (prefers-contrast: more) {
  .nav-links a,
  .nav-cart-btn,
  .blog-post,
  .newsletter-content,
  .dashboard-card,
  .footer-section,
  .filter-sidebar,
  .product-card,
  .wishlist-item {
    border-color: rgba(255, 255, 255, 0.16) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 48px rgba(0, 0, 0, 0.35) !important;
  }
}

body:has(.cart-section) .page-hero {
  background:
    radial-gradient(circle at top right, rgba(224,183,119,0.14), transparent 18%),
    linear-gradient(140deg, #08110e, #13221b 55%, #1e382c);
}

body:has(.cart-section) .cart-section {
  background:
    radial-gradient(circle at top left, rgba(130, 179, 149, 0.1), transparent 20%),
    linear-gradient(180deg, #09110f, #101915 50%, #15231d);
}

body:has(.cart-section) .cart-items-panel,
body:has(.cart-section) .cart-summary-panel,
body:has(.cart-section) .empty-cart {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 30px !important;
  box-shadow: 0 26px 50px rgba(0,0,0,0.24);
}

body:has(.cart-section) .cart-item {
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

body:has(.cart-section) .cart-item-name,
body:has(.cart-section) .cart-summary-panel h3,
body:has(.cart-section) .summary-total .amount,
body:has(.cart-section) .empty-cart h3 {
  color: #fff7e8 !important;
}

body:has(.cart-section) .cart-item-price,
body:has(.cart-section) .checkout-note,
body:has(.cart-section) .summary-row,
body:has(.cart-section) .empty-cart p {
  color: #d7d0c3 !important;
}

body:has(.cart-section) .clear-cart-btn,
body:has(.cart-section) .checkout-btn,
body:has(.cart-section) .empty-cart .btn {
  border-radius: 18px;
}

body.blog-page .logo img,
body.dashboard-page .logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.22));
}

body.blog-page .cart-link,
body.dashboard-page .cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #173328, #2c4e3f);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5efe2 !important;
}

body.blog-page .cart-link:hover,
body.dashboard-page .cart-link:hover {
  background: linear-gradient(135deg, #c7924e, #e3bc7c);
  color: #101611 !important;
}

@media (max-width: 900px) {
  body.blog-page .nav-links,
  body.dashboard-page .nav-links {
    align-items: stretch;
  }

  body.blog-page .cart-link,
  body.dashboard-page .cart-link {
    justify-content: center;
    width: 100%;
  }
}

/* Final mobile navigation and contrast overrides */
.navbar {
  overflow: visible !important;
}

.nav-inner {
  position: relative;
}

.nav-logo,
.hamburger,
.nav-cart-btn {
  position: relative;
  z-index: 1002;
}

.section-subtitle,
.about-snap-text p,
.why-card p,
.contact-info-card p,
.faq-item p,
.footer-section p,
.footer-section a,
.footer-bottom,
.blog-text p,
.blog-meta,
.dashboard-card p,
.order-info p,
.tip-content p,
.support-link p,
.metric-label {
  color: #dfe7de !important;
}

.product-body h3,
.contact-info-card h4,
.faq-item h4,
.blog-text h2,
.dashboard-card h3,
.dashboard-card h4,
.footer-section h3 {
  color: #fff8eb !important;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0;
  }

  .nav-inner {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .nav-logo {
    min-width: 0;
    max-width: calc(100% - 124px);
    gap: 8px;
  }

  .nav-logo img {
    width: 42px !important;
    height: 42px !important;
  }

  .nav-logo-text {
    min-width: 0;
  }

  .nav-logo-text .name {
    display: block;
    font-size: 0.88rem !important;
    line-height: 1.2;
    white-space: normal;
  }

  .nav-logo-text .tagline {
    display: block;
    font-size: 0.56rem !important;
    line-height: 1.15;
    letter-spacing: 0.08em;
  }

  .nav-links {
    position: fixed !important;
    top: 86px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    padding: 16px !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(8, 13, 11, 0.98), rgba(18, 30, 25, 0.97)) !important;
    border: 1px solid rgba(231, 208, 161, 0.16) !important;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42) !important;
    z-index: 1001;
  }

  .nav-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 1rem !important;
    color: #f7f1e4 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: linear-gradient(135deg, #d2a25d, #edcf97) !important;
    color: #111712 !important;
  }

  .nav-cart-btn {
    min-width: 74px;
    justify-content: center;
    font-size: 0.92rem !important;
  }

  .hamburger {
    display: inline-flex !important;
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .nav-inner {
    min-height: 74px;
  }

  .nav-logo {
    max-width: calc(100% - 112px);
  }

  .nav-logo-text .name {
    font-size: 0.8rem !important;
  }

  .nav-logo-text .tagline {
    font-size: 0.52rem !important;
  }

  .nav-links {
    top: 82px !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 20px !important;
  }
}

.mobile-quick-nav {
  display: none;
}

@media (max-width: 900px) {
  .mobile-quick-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(8, 13, 11, 0.96), rgba(18, 30, 25, 0.97));
    border: 1px solid rgba(231, 208, 161, 0.16);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1003;
  }

  .mobile-quick-nav a {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px;
    border-radius: 16px;
    text-align: center;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.05;
    color: #f7f1e4;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 20px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d8b47b;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-quick-label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-quick-nav a.active {
    background: linear-gradient(135deg, #d2a25d, #edcf97);
    color: #111712;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  .mobile-quick-nav a.active .mobile-quick-icon {
    background: rgba(17, 23, 18, 0.12);
    color: #111712;
  }

  body {
    padding-bottom: 96px;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 108px !important;
    padding-bottom: 42px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p,
  .section-subtitle {
    font-size: 0.98rem !important;
  }

  .hero-buttons,
  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .cta-buttons .btn,
  .view-all-wrap .btn {
    width: 100%;
    justify-content: center;
  }

  .section-pedestal,
  .hero-stats,
  .social-proof-grid,
  .cta-features {
    gap: 14px !important;
  }

  .featured,
  .why-us,
  .about-snap,
  .mission-vision,
  .pickup,
  .gallery-section,
  .contact-section,
  .dashboard-content,
  .blog-content,
  .products-section,
  .filter-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .products-grid,
  .gallery-grid,
  .blog-grid,
  .dashboard-grid {
    gap: 18px !important;
  }

  .product-card,
  .dashboard-card,
  .blog-post,
  .contact-info-card,
  .contact-form-panel,
  .wishlist-item,
  .footer-section {
    border-radius: 22px !important;
  }

  .footer {
    padding-bottom: 112px !important;
  }
}

@media (max-width: 640px) {
  .mobile-quick-nav {
    left: 8px;
    right: 8px;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
  }

  .mobile-quick-nav a {
    min-height: 52px;
    font-size: 0.68rem;
    padding: 6px 3px;
  }

  .mobile-quick-icon {
    min-width: 28px;
    font-size: 0.56rem;
    padding: 2px 5px;
  }

  .hero h1 {
    font-size: 2rem !important;
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.94rem !important;
    line-height: 1.6;
  }

  .quick-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .quick-nav a {
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    padding: 10px 8px;
  }

  .pedestal-stat,
  .hero-stat,
  .proof-item {
    padding: 16px 14px;
  }

  body {
    padding-bottom: 92px;
  }
}

/* Bold homepage and shop redesign */
.story-hero {
  overflow: hidden;
}

.story-hero .hero-bg {
  transform: scale(1.08);
  filter: brightness(0.34) saturate(1.08);
}

.story-hero .hero-overlay {
  background:
    radial-gradient(circle at top right, rgba(223, 190, 128, 0.22), transparent 24%),
    linear-gradient(130deg, rgba(6, 14, 11, 0.92), rgba(11, 26, 19, 0.74) 55%, rgba(31, 68, 48, 0.58));
}

.story-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.hero-parallax-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.36;
  animation: float 12s ease-in-out infinite;
}

.orb-one {
  width: 240px;
  height: 240px;
  top: 110px;
  right: 8%;
  background: radial-gradient(circle, rgba(226, 189, 120, 0.34), transparent 65%);
}

.orb-two {
  width: 180px;
  height: 180px;
  bottom: 70px;
  left: 6%;
  background: radial-gradient(circle, rgba(121, 171, 136, 0.3), transparent 62%);
}

.story-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.95;
}

.story-hero .hero-content p {
  max-width: 54ch;
  color: rgba(247, 243, 232, 0.86);
}

.story-nav {
  background: rgba(10, 19, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-story-panel {
  position: relative;
  z-index: 2;
}

.hero-story-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 21, 17, 0.82), rgba(21, 34, 28, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.story-kicker,
.pickup-kicker,
.bundle-kicker,
.trust-kicker,
.shop-hero-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226, 189, 120, 0.14);
  border: 1px solid rgba(226, 189, 120, 0.22);
  color: #efcf97;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-story-card h3,
.bundle-card h3,
.trust-card h3,
.shop-hero-panel h3,
.process-story-card h3 {
  color: #fff7e8;
  margin: 16px 0 12px;
  font-size: 1.4rem;
}

.hero-story-card p,
.bundle-card p,
.trust-card p,
.shop-hero-panel p,
.process-story-card p {
  color: #d8d2c5;
}

.story-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.story-visual-grid article,
.shop-hero-metrics article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.story-value,
.shop-hero-metrics strong {
  display: block;
  color: #fff4df;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.story-label,
.shop-hero-metrics span {
  color: #d0c9bb;
  font-size: 0.86rem;
}

.cinematic-stats .hero-stat {
  padding: 18px 20px;
  min-width: 180px;
  border-radius: 22px;
  background: rgba(12, 21, 17, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.harvest-strip {
  padding: 24px 0 0;
  background: linear-gradient(180deg, rgba(8, 14, 12, 0.98), rgba(10, 17, 13, 0.95));
}

.harvest-strip-grid,
.bundle-grid,
.trust-grid,
.process-story-grid {
  display: grid;
  gap: 22px;
}

.harvest-strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.harvest-strip article,
.bundle-card,
.trust-card,
.process-story-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 23, 20, 0.88), rgba(11, 17, 14, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.strip-label {
  display: block;
  margin-bottom: 10px;
  color: #d7b57a;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.harvest-strip strong {
  color: #f7f2e6;
  font-size: 1rem;
  line-height: 1.5;
}

.bundle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bundle-card ul,
.trust-list {
  margin: 16px 0 20px;
  padding: 0;
}

.bundle-card li,
.trust-list li {
  color: #ddd6ca;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.featured-bundle {
  background: linear-gradient(160deg, rgba(52, 78, 64, 0.92), rgba(22, 32, 27, 0.96));
  transform: translateY(-8px);
}

.bundle-metrics {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.bundle-metrics span {
  color: #f3ecdf;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.trust-grid,
.process-story-grid,
.premium-shop-hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card.photo,
.process-story-card.photo {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.trust-card.photo img,
.process-story-card.photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.trust-overlay {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(12, 19, 16, 0.4), rgba(8, 13, 11, 0.9));
}

.trust-overlay span {
  display: block;
  color: #d8b47b;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.trust-overlay strong {
  color: #fff8eb;
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
}

.trust-quote-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.trust-quote-stack blockquote {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #f0e7d9;
  border: 1px solid rgba(255,255,255,0.06);
}

.process-stepline {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.process-stepline:last-child {
  border-bottom: 0;
}

.process-stepline span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111712;
  font-weight: 900;
  background: linear-gradient(135deg, #d2a25d, #edcf97);
}

.pickup-card.cinematic {
  max-width: 720px;
  padding: 34px;
}

.pickup-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.pickup-price small {
  font-size: 0.78rem;
  color: #d3cbbe;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-season-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 18, 15, 0.78);
  color: #fff4df;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.08);
}

.product-chip-row,
.product-card-actions,
.product-meta-grid {
  display: grid;
  gap: 10px;
}

.product-chip-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.product-chip {
  padding: 8px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-chip.premium {
  color: #111712;
  background: linear-gradient(135deg, #edcf97, #d2a25d);
}

.product-chip.starter {
  color: #dff0df;
  background: rgba(95, 157, 118, 0.2);
  border: 1px solid rgba(95, 157, 118, 0.26);
}

.product-chip.steady,
.product-chip.subtle {
  color: #d7d0c3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
}

.product-meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.product-meta-grid div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.product-meta-grid strong {
  display: block;
  color: #f4ebdf;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta-grid span {
  display: block;
  margin-top: 6px;
  color: #d4cdbf;
  font-size: 0.85rem;
}

.product-card-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.product-link-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #f5efe2;
  font-weight: 700;
  cursor: pointer;
}

.product-link-btn.whatsapp {
  background: linear-gradient(135deg, #164634, #1e6b52);
}

.premium-shop-hero {
  background:
    radial-gradient(circle at top right, rgba(226, 189, 120, 0.16), transparent 22%),
    linear-gradient(150deg, #07100d, #112019 55%, #1c3428);
}

.premium-shop-hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.shop-hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 19, 0.88), rgba(20, 32, 27, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 64px rgba(0,0,0,0.24);
}

.shop-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.shop-curation-band,
.shop-recommendations,
.shop-story-strip {
  padding: 24px 0 0;
}

.shop-premium-card .product-img {
  height: 250px;
}

.shop-premium-card .product-body {
  padding: 22px;
}

.filter-layout {
  display: grid !important;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.shop-side-story {
  display: grid;
  gap: 20px;
}

.shop-side-card {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 19, 0.88), rgba(20, 31, 26, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 48px rgba(0,0,0,0.2);
}

.shop-side-card.spotlight {
  background:
    radial-gradient(circle at top right, rgba(226, 189, 120, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(25, 43, 34, 0.96), rgba(13, 21, 17, 0.96));
}

.shop-side-kicker,
.shop-command-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226, 189, 120, 0.14);
  border: 1px solid rgba(226, 189, 120, 0.22);
  color: #efcf97;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.shop-side-card h3,
.shop-command-bar h3 {
  margin: 16px 0 10px;
  color: #fff7e8;
  font-size: 1.5rem;
}

.shop-side-card p,
.shop-side-card blockquote {
  color: #d7d0c3;
}

.shop-side-card blockquote {
  margin: 16px 0 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
  line-height: 1.7;
}

.shop-side-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.shop-side-highlights span,
.shop-command-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: #f3ebde;
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-side-card.photo {
  padding: 0;
  overflow: hidden;
}

.shop-side-card.photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.shop-command-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding: 22px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(226, 189, 120, 0.12), transparent 18%),
    linear-gradient(160deg, rgba(14, 22, 18, 0.9), rgba(21, 33, 27, 0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

.shop-command-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.products-section .shop-header {
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(12, 18, 15, 0.62);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}

.products-section #shop-products.products-grid {
  margin-top: 24px;
}

.shop-premium-card {
  border-radius: 26px;
  overflow: hidden;
}

.shop-premium-card .product-body h3 {
  font-size: 1.16rem;
}

.shop-premium-card .price-tag {
  background: rgba(226, 189, 120, 0.12);
}

@media (max-width: 900px) {
  .story-hero-grid,
  .harvest-strip-grid,
  .bundle-grid,
  .trust-grid,
  .process-story-grid,
  .premium-shop-hero-grid,
  .shop-hero-metrics,
  .product-card-actions,
  .product-meta-grid,
  .filter-layout,
  .shop-command-bar {
    grid-template-columns: 1fr;
  }

  .story-hero h1 {
    max-width: 100%;
  }

  .featured-bundle {
    transform: none;
  }

  .story-visual-grid,
  .product-chip-row {
    grid-template-columns: 1fr 1fr;
  }

  .shop-command-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-story-card,
  .bundle-card,
  .trust-card,
  .process-story-card,
  .shop-hero-panel,
  .pickup-card.cinematic,
  .shop-side-card,
  .shop-command-bar {
    padding: 22px;
    border-radius: 22px;
  }

  .story-visual-grid,
  .product-chip-row {
    grid-template-columns: 1fr;
  }

  .harvest-strip {
    padding-top: 12px;
  }

  .shop-premium-card .product-img {
    height: 210px;
  }
}

/* Final motion and entry polish */
body.page-enter main,
body.page-enter .hero,
body.page-enter .page-hero,
body.page-enter .featured,
body.page-enter .filter-section,
body.page-enter .products-section,
body.page-enter .shop-curation-band,
body.page-enter .shop-recommendations,
body.page-enter .trust-band,
body.page-enter .process-story,
body.page-enter .social-proof-section {
  animation: pageRise 0.7s ease both;
}

@keyframes pageRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(226, 189, 120, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.98), rgba(14, 22, 18, 0.98));
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.page-loader-mark {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 28px 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(19, 30, 24, 0.82), rgba(12, 18, 15, 0.92));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.page-loader-title {
  color: #fff4df;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.page-loader-subtitle {
  color: #d2cbbc;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hero .hero-bg,
.hero-parallax-orb,
.hero-story-card,
.shop-hero-panel {
  will-change: transform;
  transition: transform 0.2s linear;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .story-hero .hero-bg,
  .hero-parallax-orb,
  .hero-story-card,
  .shop-hero-panel {
    transition: none !important;
    animation: none !important;
  }
}

/* Final mobile stabilization pass */
.product-emoji {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f3e2be;
  text-transform: uppercase;
  background:
    radial-gradient(circle at top right, rgba(226, 189, 120, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(12, 20, 16, 0.95), rgba(22, 34, 28, 0.98));
}

.product-img.image-missing img {
  display: none !important;
}

.product-img.image-missing .product-emoji {
  display: flex !important;
}

@media (max-width: 900px) {
  .mobile-quick-nav {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }

  .navbar {
    background: rgba(8, 14, 12, 0.96) !important;
    border-bottom: 1px solid rgba(231, 208, 161, 0.18) !important;
  }

  .nav-inner {
    min-height: 76px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .nav-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 118px) !important;
  }

  .nav-logo-text .name,
  .nav-logo-text .tagline {
    word-break: break-word;
  }

  .hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .nav-cart-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 82px !important;
    left: 12px !important;
    right: 12px !important;
    margin: 0 !important;
    padding: 14px !important;
    list-style: none !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(8, 13, 11, 0.99), rgba(18, 30, 25, 0.98)) !important;
    border: 1px solid rgba(231, 208, 161, 0.16) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4) !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
    z-index: 2000 !important;
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .nav-links li {
    width: 100%;
    border: 0 !important;
  }

  .nav-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #f7f1e4 !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #111712 !important;
    background: linear-gradient(135deg, #d2a25d, #edcf97) !important;
  }

  .hero .container,
  .page-hero .container,
  .premium-shop-hero .container,
  .story-hero .container {
    padding-top: 118px !important;
  }

  .page-hero,
  .premium-shop-hero,
  .story-hero {
    padding-top: 0 !important;
    padding-bottom: 54px !important;
  }

  .products-grid,
  .blog-grid,
  .dashboard-grid,
  .trust-grid,
  .bundle-grid,
  .premium-shop-hero-grid,
  .story-hero-grid,
  .shop-command-bar,
  .filter-layout,
  .product-card-actions,
  .product-meta-grid {
    grid-template-columns: 1fr !important;
  }

  .filter-sidebar {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 22px !important;
  }

  .shop-side-story {
    order: 2;
  }

  .shop-side-card.photo {
    min-height: 220px;
  }

  .shop-header,
  .shop-command-bar,
  .shop-side-card,
  .hero-story-card,
  .shop-hero-panel,
  .bundle-card,
  .trust-card,
  .process-story-card,
  .contact-form-panel,
  .contact-info-card,
  .dashboard-card,
  .blog-post,
  .product-card {
    border-radius: 22px !important;
  }

  .product-card,
  .shop-premium-card {
    overflow: hidden;
  }

  .product-img,
  .shop-premium-card .product-img {
    height: 220px !important;
    background: linear-gradient(160deg, rgba(14, 22, 18, 0.96), rgba(25, 38, 31, 0.98)) !important;
  }

  .product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-body p,
  .shop-side-card p,
  .shop-side-card blockquote,
  .section-subtitle,
  .page-hero p,
  .hero p,
  .contact-form-panel p,
  .dashboard-card p,
  .blog-post p {
    color: #ddd5c9 !important;
    opacity: 1 !important;
  }

  .product-body h3,
  .shop-command-bar h3,
  .shop-side-card h3,
  .page-hero h1,
  .hero h1 {
    color: #fff5e5 !important;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .price-tag,
  .add-to-cart-btn,
  .product-link-btn,
  .btn,
  .btn-primary,
  .btn-gold,
  .btn-outline,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .qty-control {
    justify-content: space-between;
    gap: 10px;
  }

  .qty-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .qty-input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 40px;
  }

  .footer {
    padding-bottom: 56px !important;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .nav-logo {
    max-width: calc(100% - 108px) !important;
  }

  .nav-logo-text .name {
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
  }

  .nav-logo-text .tagline {
    font-size: 0.54rem !important;
  }

  .nav-links {
    top: 78px !important;
    left: 10px !important;
    right: 10px !important;
    padding: 12px !important;
    border-radius: 20px !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem !important;
    line-height: 1.05 !important;
  }

  .hero p,
  .page-hero p,
  .section-subtitle {
    font-size: 0.96rem !important;
  }

  .shop-command-pills,
  .shop-side-highlights,
  .hero-buttons,
  .cta-buttons {
    gap: 10px !important;
  }
}

/* Leaner shop experience */
.nav-cart-btn-mobile {
  display: none !important;
}

.shop-hero-simple {
  display: grid;
  gap: 20px;
  align-items: center;
  min-height: 420px;
}

.shop-utility-strip {
  padding: 22px 0 0;
}

.shop-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-utility-grid article,
.shop-toolbar-card,
.shop-bulk-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(13, 20, 17, 0.9), rgba(19, 30, 24, 0.96));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.shop-utility-grid article {
  padding: 20px 22px;
  display: grid;
  gap: 6px;
}

.shop-utility-grid strong {
  color: #fff4df;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.shop-utility-grid span {
  color: #d7d0c3;
  font-size: 0.92rem;
}

.shop-toolbar-section {
  padding: 32px 0 0;
}

.shop-toolbar-card {
  padding: 26px;
  display: grid;
  gap: 22px;
}

.shop-toolbar-copy h2 {
  margin: 12px 0 10px;
  color: #fff5e5;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.shop-toolbar-copy p {
  color: #d8d2c5;
  max-width: 58ch;
}

.shop-toolbar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(240px, 0.8fr);
  gap: 16px;
  align-items: start;
}

.filter-group-inline {
  margin-bottom: 0;
}

.filter-group-inline .filter-btn {
  margin-bottom: 8px;
}

.shop-bulk-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.shop-bulk-card strong {
  color: #fff2dd;
  font-size: 1.05rem;
}

.shop-bulk-card p {
  color: #d9d1c3;
  font-size: 0.92rem;
  line-height: 1.6;
}

.shop-command-bar-simple {
  margin-top: 10px;
}

.shop-command-bar-simple h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.shop-premium-card {
  border: 1px solid rgba(220, 192, 136, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.shop-premium-card .product-body {
  display: grid;
  gap: 12px;
}

.shop-premium-card .product-body p {
  min-height: 3.3em;
}

.product-store-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-store-status {
  color: #eef4df;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-store-unit {
  color: #d6ccb9;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-premium-card .price-tag {
  min-width: 128px;
  padding: 10px 14px;
  border-radius: 16px;
}

.shop-premium-card .price-tag span {
  font-size: 1.12rem;
}

.shop-premium-card .add-to-cart-btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.product-card-actions {
  margin-top: 4px;
}

.product-link-btn.primary {
  background: linear-gradient(135deg, #1e6b52, #25785c);
  border-color: rgba(95, 194, 145, 0.22);
}

.product-link-btn.whatsapp.primary {
  color: #f5efe2;
}

.buy-cta .cta-content {
  max-width: 540px;
}

.buy-cta .cta-content p {
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .nav-cart-btn {
    display: none !important;
  }

  .nav-cart-btn-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .shop-utility-grid,
  .shop-toolbar-grid {
    grid-template-columns: 1fr;
  }

  .shop-toolbar-card {
    padding: 22px;
  }

  .shop-premium-card .product-body p {
    min-height: 0;
  }

  .product-store-line,
  .shop-premium-card .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card-actions {
    grid-template-columns: 1fr;
  }
}
