*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --container:1720px;
  --content-container:1400px;

  --green:#4FA36F;
  --deep-green:#2F5D4E;
  --muted:#667085;
  --line:#E5E7EB;
  --soft:#E8F0E7;
  --ink:#16213b;
  --white:#FFFFFF;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
  color:#1b2540;
  padding-top:90px;
  overflow-x:hidden;
  width:100%;
}

/* =========================
   NAVBAR FINAL FIX
========================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:1000;
}

.navbar-inner{
  max-width:1400px;
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#16213b;
  font-size:18px;
  font-weight:800;
  letter-spacing:0.02em;
}

.brand-logo{
  width:72px;
  height:52px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex:1;
  justify-content:center;
}

.main-nav a{
  text-decoration:none;
  color:#16213b;
  font-size:15px;
  font-weight:600;
  transition:0.2s ease;
}

.main-nav a:hover{
  color:#4FA36F;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-icon{
  text-decoration:none;
  font-size:20px;
  color:#16213b;
}

@media(max-width:900px){

  .main-nav{
    display:none;
  }

  .navbar-inner{
    padding:14px 18px;
  }

  .brand span{
    font-size:16px;
  }

  .btn-main{
    padding:12px 20px;
    font-size:14px;
  }
}

/* =========================
   GLOBAL DESIGN SYSTEM
========================= */
.container{
  max-width:var(--content-container);
  margin:0 auto;
  padding:0 20px;
}

section{
  max-width:1500px;
  margin:0 auto;
  padding:120px 60px;
  width:100%;
}

.section-label,
.section-kicker,
.section-tag{
  display:block;
  text-align:center;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--deep-green);
  font-weight:700;
  margin-bottom:12px;
}

.section-title{
  font-size:48px;
  font-weight:700;
  line-height:1.15;
  color:var(--ink);
  text-align:center;
  margin-bottom:14px;
}

.section-sub,
.section-copy{
  font-size:18px;
  color:var(--muted);
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
  line-height:1.6;
}

/* =========================
   BUTTONS
========================= */
.btn-main{
  background:var(--green);
  color:#fff;
  padding:16px 30px;
  border-radius:999px;
  text-decoration:none;
  display:inline-block;
  font-size:17px;
  font-weight:600;
  margin-right:10px;
  transition:all 0.25s ease;
}

.btn-main:hover{
  background:#3e8f5c;
  transform:translateY(-1px);
}

.btn-outline{
  border:1px solid #D1D5DB;
  padding:18px 34px;
  border-radius:999px;
  text-decoration:none;
  color:#374151;
  background:#fff;
  display:inline-block;
  font-size:17px;
  font-weight:500;
}

.large-btn{
  padding:18px 40px;
  font-size:16px;
}

/* =========================
   HERO
========================= */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:100px;
  min-height:85vh;
}

.hero > div:first-child{
  max-width:760px;
}

.hero > div:last-child{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.hero-img{
  max-width:980px;
  width:100%;
  height:auto;
  display:block;
}

.badge{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--green);
  background:var(--soft);
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:24px;
  position:static;
  transform:none;
}

.hero h1{
  font-size:74px;
  font-weight:700;
  line-height:1.02;
  letter-spacing:-0.03em;
  margin-bottom:22px;
  color:var(--ink);
}

.highlight{
  color:var(--green);
}

.hero p{
  font-size:21px;
  line-height:1.65;
  color:var(--muted);
  margin-bottom:34px;
  max-width:760px;
}

/* =========================
   PRODUCTS
========================= */
.products{
  text-align:center;
  padding-top:160px;
  padding-bottom:160px;
}

.products h2{
  font-size:56px;
  line-height:1.1;
  margin-bottom:12px;
  color:var(--ink);
  text-align:center;
}

.products .section-copy{
  margin:0 auto 60px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:50px;
}

.product-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.product-card img{
  width:160px;
  margin-bottom:24px;
  transition:transform 0.3s ease;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
  border-radius:12px;
}

.product-card:hover img{
  transform:scale(1.05);
}

.product-card h3{
  font-size:20px;
  margin-bottom:8px;
  color:var(--ink);
}

.product-card p{
  font-size:15.5px;
  color:var(--muted);
  margin-bottom:15px;
}

.product-card .btn-main{
  padding:12px 24px;
  font-size:15px;
  margin-right:0;
}

/* =========================
   BENEFITS
========================= */

.benefits{
  width:100%;
  background:#EAF3EA;
  padding:100px 0;
}

.benefits .section-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 24px;
}

.benefits h2{
  font-size:56px;
  line-height:1.1;
  color:var(--deep-green);
  margin-bottom:14px;
  text-align:center;
}

.benefits .section-copy,
.benefits .section-kicker{
  text-align:center;
}

.benefits-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:50px;
  margin-top:50px;
  align-items:center;
}

.benefits-image{
  display:flex;
  justify-content:center;
}

.benefits-image img{
  width:100%;
  max-width:560px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.benefits-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.benefit-card{
  background:#FFFFFF;
  padding:22px;
  border-radius:14px;
  text-align:left;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  transition:all 0.25s ease;
}

.benefit-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.benefit-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:var(--soft);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  font-size:18px;
  color:var(--deep-green);
}

.benefit-card h4{
  font-size:16px;
  margin-bottom:6px;
  color:var(--deep-green);
}

.benefit-card p{
  font-size:13.5px;
  line-height:1.45;
  color:var(--muted);
}

/* =========================
   ENGINEERED
========================= */
.engineered{
  background:#FFFFFF;
  padding-bottom:30px;
}

.engineered .section-inner{
  max-width:var(--content-container);
  margin:0 auto;
  padding:100px 40px;
  text-align:center;
}

.engineered h2{
  font-size:56px;
  line-height:1.1;
  color:var(--ink);
  margin-bottom:14px;
  text-align:center;
}

.engineered .section-copy{
  margin:0 auto 60px;
}

.engineered-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:40px;
  margin-top:60px;
}

.engineered-item{
  padding-right:20px;
}

.engineered-item h3{
  font-size:20px;
  font-weight:600;
  color:var(--deep-green);
  margin-bottom:6px;
}

.engineered-item p{
  font-size:15.5px;
  color:var(--muted);
  line-height:1.5;
}

.engineered-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:var(--soft);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:var(--deep-green);
  margin-bottom:12px;
}

/* =========================
   PRODUCT DETAILS
========================= */
.product-details{
  padding:40px 20px 80px;
  max-width:var(--content-container);
  margin:0 auto;
}

.product-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  margin-bottom:70px;
}

.product-row.reverse{
  flex-direction:row-reverse;
}

.product-text{
  flex:1;
}

.product-label{
  font-size:12px;
  letter-spacing:1.5px;
  color:var(--deep-green);
  font-weight:600;
  display:block;
  margin-bottom:10px;
}

.product-text h2{
  font-size:40px;
  font-weight:700;
  color:#1F2937;
  margin-bottom:10px;
  line-height:1.15;
}

.product-sub{
  font-size:16px;
  color:var(--deep-green);
  margin-bottom:15px;
}

.product-desc{
  font-size:16px;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:20px;
}

.product-text ul{
  list-style:none;
  padding:0;
}

.product-text ul li{
  position:relative;
  padding-left:22px;
  margin-bottom:10px;
  font-size:15.5px;
  color:#374151;
}

.product-text ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--deep-green);
  font-weight:bold;
}

.product-img{
  flex:1;
  text-align:center;
}

.product-img img{
  max-width:340px;
  width:100%;
  height:auto;
}

/* =========================
   HOW IT WORKS + PRICING WRAP
========================= */
.how-it-works-wrap{
  width:100%;
  background:#EAF3EA;
  padding:100px 0;
}

.how-it-works-wrap .container{
  max-width:1400px;
  margin:0 auto;
  padding:0 24px;
}

.how-it-works h2,
.pricing h2{
  text-align:center;
  font-size:48px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--ink);
  line-height:1.15;
}

.how-it-works .section-sub,
.pricing .section-sub{
  font-size:18px;
  color:var(--muted);
  max-width:700px;
  margin:0 auto 60px;
  text-align:center;
  line-height:1.6;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  text-align:center;
  margin-bottom:100px;
}

.step-number{
  font-size:48px;
  font-weight:700;
  color:#9FBF9B;
  margin-bottom:10px;
}

.step h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:5px;
  color:var(--ink);
}

.step p{
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

/* =========================
   PRICING
========================= */
.pricing{
  margin-top:120px;
}

.pricing-cards{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.price-card{
  border-radius:20px;
  padding:50px 35px;
  text-align:center;
  width:340px;
  position:relative;
}

.price-card.light{
  background:#FFFFFF;
}

.price-card.dark{
  background:#111111;
  color:#FFFFFF;
}

.price-card h4{
  font-size:18px;
  margin-bottom:6px;
}

.price-card .small{
  font-size:15px;
  color:#667085;
  margin-bottom:18px;
}

.price-card.dark .small{
  color:#D1D5DB;
}

.price{
  font-size:46px;
  font-weight:700;
  margin:18px 0;
  color:var(--ink);
}

.price-card.dark .price{
  color:#FFFFFF;
}

.save{
  display:block;
  font-size:14px;
  color:#9FBF9B;
  margin-bottom:18px;
}

.pricing-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--deep-green);
  color:#FFFFFF;
  font-size:12px;
  padding:5px 12px;
  border-radius:999px;
}

.pricing-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  height:52px;
  padding:0 28px;
  border-radius:999px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:all 0.2s ease;
}

.pricing-btn-light{
  background:#FFFFFF;
  color:#111111;
  border:1px solid #111111;
}

.pricing-btn-light:hover,
.pricing-btn-green:hover{
  transform:translateY(-1px);
}

.pricing-btn-green{
  background:var(--green);
  color:#FFFFFF;
  border:1px solid var(--green);
}

.pricing-info{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--deep-green);
}

.info-item{
  display:flex;
  align-items:center;
  gap:8px;
}



/* =========================
   WHY CHOOSE
========================= */
.why-veravix{
  padding:72px 20px 40px;
  background:#FFFFFF;
  text-align:center;
}

.section-tag{
  font-size:12px;
  letter-spacing:2px;
  color:var(--deep-green);
  margin-bottom:12px;
  font-weight:700;
}

.section-title{
  font-size:48px;
  font-weight:700;
  line-height:1.15;
  text-align:center;
  color:var(--ink);
  margin-bottom:14px;
}

.why-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}

.why-card{
  background:#F7F9F7;
  padding:24px 22px;
  border-radius:16px;
  text-align:left;
  border:1px solid rgba(47, 93, 78, 0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity:0;
  transform:translateY(20px);
  box-shadow:0 8px 24px rgba(0,0,0,0.04);
}

.why-card.show{
  opacity:1;
  transform:translateY(0);
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,0,0,0.08);
}

.why-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#FFFFFF;
  color:var(--deep-green);
  border:1px solid rgba(47, 93, 78, 0.10);
  margin-bottom:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.why-icon svg{
  width:21px;
  height:21px;
  display:block;
}

.why-card h4{
  font-size:17px;
  margin-bottom:8px;
  color:var(--deep-green);
  line-height:1.3;
}

.why-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.6;
}

/* =========================
   FINAL CTA
========================= */
.final-cta{
  padding:56px 20px 72px;
  text-align:center;
  background:#FFFFFF;
}

.final-cta h2{
  font-size:48px;
  line-height:1.15;
  margin-bottom:18px;
  color:var(--ink);
  font-weight:700;
}

.final-cta p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:30px;
  line-height:1.6;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.final-cta .btn-main.large-btn{
  min-width:220px;
  text-align:center;
  margin-right:0;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#FFFFFF;
  padding:28px 20px 36px;
  border-top:1px solid #E5E7EB;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  flex-wrap:wrap;
}

.footer-brand-wrap{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.footer-brand{
  font-size:14px;
  font-weight:700;
  letter-spacing:0.04em;
  color:#111827;
}

.footer-tagline{
  font-size:12px;
  color:var(--muted);
}

.footer-copy{
  font-size:12px;
  color:var(--muted);
  text-align:right;
  flex:1;
  line-height:1.6;
  max-width:760px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1000px){
  .hero{
    flex-direction:column;
    text-align:center;
    gap:60px;
  }

  .hero > div:first-child{
    max-width:100%;
  }

  .hero > div:last-child{
    justify-content:center;
  }

  .hero-img{
    max-width:100%;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
  }

  .nav-center{
    gap:22px;
  }

  .nav-center a{
    font-size:15px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .benefits-cards{
    grid-template-columns:1fr 1fr;
  }

  .engineered-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:900px){
  .product-row{
    flex-direction:column;
    text-align:center;
  }

  .product-row.reverse{
    flex-direction:column;
  }

  .product-img img{
    max-width:260px;
  }
}

@media (max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .benefits-cards{
    grid-template-columns:1fr;
  }

  .engineered-grid{
    grid-template-columns:1fr;
  }

  .section-title,
  .final-cta h2{
    font-size:30px;
  }

  .final-cta{
    padding:44px 20px 56px;
  }

  .final-cta p{
    font-size:16px;
    margin-bottom:24px;
  }

  .large-btn{
    width:100%;
    max-width:320px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-copy{
    text-align:center;
    max-width:100%;
  }
}



/* =========================
   FINAL CTA
========================= */
.final-cta{
  padding:100px 20px;
  text-align:center;
  background:#FFFFFF;
}

.final-cta h2{
  font-size:48px;
  line-height:1.15;
  margin-bottom:20px;
  color:var(--ink);
  font-weight:700;
}

.final-cta p{
  font-size:18px;
  color:var(--muted);
  margin-bottom:35px;
  line-height:1.6;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#FFFFFF;
  text-align:center;
  padding:40px 20px;
  border-top:1px solid #E5E7EB;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-brand{
  font-size:14px;
  font-weight:700;
  color:#111827;
}

.footer-copy{
  font-size:12px;
  color:#6b7280;
  text-align:center;
  flex:1;
  line-height:1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1000px){
  .hero{
    flex-direction:column;
    text-align:center;
    gap:60px;
  }

  .hero > div:first-child{
    max-width:100%;
  }

  .hero > div:last-child{
    justify-content:center;
  }

  .hero-img{
    max-width:100%;
  }

  .product-grid{
    grid-template-columns:1fr 1fr;
  }

  .nav-center{
    gap:22px;
  }

  .nav-center a{
    font-size:15px;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .benefits-cards{
    grid-template-columns:1fr 1fr;
  }

  .engineered-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:900px){
  .product-row{
    flex-direction:column;
    text-align:center;
  }

  .product-row.reverse{
    flex-direction:column;
  }

  .product-img img{
    max-width:260px;
  }
}

@media (max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .benefits-cards{
    grid-template-columns:1fr;
  }

  .engineered-grid{
    grid-template-columns:1fr;
  }

  .final-cta h2,
  .how-it-works h2,
  .pricing h2,
  .section-title{
    font-size:30px;
  }

  .products h2,
  .benefits h2,
  .engineered h2{
    font-size:34px;
  }

  .large-btn{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
  }
}

/* =========================
   PREMIUM HOVER POLISH
========================= */

/* product images + cards */
.product-card{
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card img{
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 34px rgba(0,0,0,0.08);
}

.product-card:hover img{
  transform:scale(1.08);
  box-shadow:0 14px 28px rgba(0,0,0,0.10);
}

/* benefits cards */
.benefit-card{
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(0,0,0,0.08);
}

/* engineered items */
.engineered-item{
  transition:transform 0.25s ease;
}

.engineered-item:hover{
  transform:translateY(-4px);
}

/* product detail images */
.product-img img{
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.product-row:hover .product-img img{
  transform:scale(1.04);
  box-shadow:0 16px 30px rgba(0,0,0,0.08);
}

/* steps */
.step{
  transition:transform 0.25s ease;
}

.step:hover{
  transform:translateY(-4px);
}

/* pricing cards */
.price-card{
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,0,0,0.08);
}

/* why choose cards */
.why-card{
  transition:transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(0,0,0,0.08);
}

/* main buttons */
.btn-main,
.pricing-btn{
  transition:transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-main:hover,
.pricing-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

body::after{
  content:"";
  position:fixed;
  bottom:20px;
  right:20px;
  width:180px;
  height:180px;
  background:url('../img/veravix-logo.png') no-repeat center;
  background-size:contain;
  opacity:0.05;
  pointer-events:none;
  z-index:0;
}

/* MINI CART */

#cartOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:none;
  z-index:999;
}

#miniCart{
  position:fixed;
  top:0;
  right:-400px;
  width:380px;
  height:100%;
  background:#fff;
  box-shadow:-10px 0 30px rgba(0,0,0,0.1);
  transition:0.3s;
  z-index:1000;
  display:flex;
  flex-direction:column;
}

#miniCart.active{
  right:0;
}

#cartOverlay.active{
  display:block;
}

.miniCart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  border-bottom:1px solid #eee;
}

.miniCart-header h3{
  margin:0;
}

.miniCart-header button{
  border:none;
  background:none;
  font-size:20px;
  cursor:pointer;
}

#miniCartItems{
  flex:1;
  overflow-y:auto;
  padding:20px;
}

.miniCart-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:15px;
}

.miniCart-footer{
  padding:20px;
  border-top:1px solid #eee;
}

/* =========================
   MINI CART MOBILE FIX
========================= */
@media(max-width:768px){

  #miniCart{
    width:100%;
    right:-100%;
    top:72px;
    height:calc(100% - 72px);
  }

  #miniCart.active{
    right:0;
  }

}

@media(max-width:768px){

	section{
    padding:80px 20px; /* 🔥 THIS FIXES OVERFLOW */
  }

	 .navbar{
    padding:15px 20px;
  }

  .nav-center{
    display:none; /* 🔥 hide menu on mobile */
  }

  .miniCart-footer{
    position:sticky;
    bottom:0;
    background:#fff;
  }

  .miniCart-item{
    padding:15px 0;
  }

}

/* CART ITEM */
.miniCart-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

/* QTY CONTROLS */
.qty-controls{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:5px;
}

.qty-controls button{
  background:#E8F0E7;
  border:none;
  padding:5px 10px;
  cursor:pointer;
  border-radius:6px;
}

.miniCart-actions button{
  background:none;
  border:none;
  font-size:16px;
  cursor:pointer;
}

/* =========================
   MINI CART PREMIUM
========================= */

.miniCart-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
  border-bottom:1px solid #eee;
}

.miniCart-left{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.miniCart-right{
  text-align:right;
}

.qty-controls{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty-controls button{
  width:28px;
  height:28px;
  border-radius:6px;
  border:none;
  background:#E8F0E7;
  cursor:pointer;
  font-weight:600;
}

.qty-controls span{
  min-width:20px;
  text-align:center;
}

.miniCart-footer{
  position:sticky;
  bottom:0;
  background:#fff;
  padding:20px;
  border-top:1px solid #eee;
}

#miniCartTotal{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkout-form h2{
  margin-bottom:20px;
}

.checkout-form label{
  display:block;
  margin-top:15px;
  font-weight:500;
}

.checkout-form input{
  width:100%;
  padding:12px;
  margin-top:5px;
  border-radius:8px;
  border:1px solid #ddd;
}

.summary-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.summary-total{
  font-size:20px;
  font-weight:700;
  margin-top:10px;
}

html{
  scroll-behavior:smooth;
}

/* =========================
   CHECKOUT PREMIUM UI
========================= */

.checkout-left{
  padding:80px;
  background:#FFFFFF;
}

.checkout-right{
  padding:80px;
  background:#E8F0E7;
}

.checkout-header h2{
  font-size:32px;
  margin-bottom:5px;
}

.checkout-header p{
  color:#777;
  margin-bottom:30px;
}

.checkout-left {
  display: block;
}

.checkout-left img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8e1;
}

.checkout-sub {
  font-size: 12px;
  color: #6d7a74;
  margin-top: 2px;
}

.checkout-right {
  font-weight: 600;
}

/* FORM */
.checkout-form{
  max-width:400px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-weight:600;
  margin-bottom:5px;
}

.form-group input{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:16px;
}

.form-group input:focus{
  border-color:#9FBF9B;
  outline:none;
}

/* BUTTON */
.checkout-btn{
  width:100%;
  margin-top:20px;
  padding:18px;
  font-size:16px;
}

/* SUMMARY */
.summary-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
}

.summary-divider{
  height:1px;
  background:#ddd;
  margin:20px 0;
}

.summary-total{
  font-size:22px;
  font-weight:700;
}

/* =========================
   MOBILE POLISH
========================= */

@media (max-width: 768px){

    body{
        overflow-x:hidden;
    }

    .hero,
    .hero-grid,
    .hero-section{
        grid-template-columns:1fr !important;
        display:grid !important;
        gap:30px;
        text-align:center;
    }

    .hero h1{
        font-size:42px !important;
        line-height:1.1;
    }

    .hero p{
        font-size:17px !important;
        line-height:1.6;
    }

    .hero img{
        max-width:100%;
        height:auto;
        margin:auto;
    }

    .btn-row,
    .hero-buttons{
        flex-direction:column;
        gap:14px;
        align-items:center;
    }

    .btn-row a,
    .hero-buttons a{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .mini-topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .mini-nav{
        width:100%;
        gap:10px;
    }

    .mini-nav a{
        font-size:13px;
    }

    .product-grid,
    .products-grid{
        grid-template-columns:1fr 1fr !important;
        gap:18px;
    }

    .legal-header h1{
        font-size:38px !important;
    }

    .legal-container{
        padding:26px 20px !important;
    }

    .footer-links{
        flex-direction:column;
        align-items:center;
        gap:10px;
    }
}

/* =========================
   GLOBAL WATERMARK
========================= */

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;

  background: url('../img/products/veravix-logo.jpg') no-repeat center;
  background-size: contain;

  transform: translate(-50%, -50%);
  opacity: 0.15; /* 🔥 KEY: subtle but visible */
  filter: blur(0.9px);

  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits ABOVE watermark */
body > * {
  position: relative;
  z-index: 1;
}

/* ===== CHECKOUT POLISH ===== */

.card {
  background: #ffffff;
  border: 1px solid #e3e8e2;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* LEFT FORM */
.checkout-left input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  margin-top: 6px;
}

.form-group {
  margin-bottom: 18px;
}

/* RIGHT SUMMARY */
.checkout-right {
  background: #ffffff !important; /* kill green */
}

/* Order items */
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

/* TOTAL ALIGN FIX */
.summary-total-right {
  text-align: right;
}

.summary-total strong {
  display: block;
  font-size: 16px;
}

.summary-total small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

/* Buttons spacing */
.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== CHECKOUT FINAL POLISH ===== */

.checkout-left .section-title {
  font-size: 52px;
  font-weight: 700;
}

.checkout-left .section-copy {
  text-align: center;
  margin-bottom: 26px;
}

.checkout-left label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2F5D4E;
}

.checkout-left input {
  min-height: 50px;
  font-size: 15px;
  background: #fff;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  margin-bottom: 0;
}

.summary-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.3;
}

.summary-item small {
  font-size: 12px;
  color: #6d7a74;
}

.summary-total > span {
  font-size: 17px;
  font-weight: 700;
}

.summary-total small {
  margin-top: 3px;
  font-size: 12px;
  color: #6d7a74;
}

.checkout-actions .btn-outline,
.checkout-actions .btn-main,
.checkout-actions button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 920px) {

  .checkout-right.card {
    position: static;
  }
}

/* ===== MINI CART POLISH ===== */

#cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 32, 28, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 998;
}

#cartOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

#miniCart {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #fff;
  transition: right 0.35s ease;
  z-index: 999;

  /* ADD THIS */
  box-shadow: -8px 0 30px rgba(0,0,0,0.08);
  padding: 20px;
}

#miniCart.active {
  transform: translateX(0);
}

.miniCart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid #e6ece5;
  background: #fff;
}

.miniCart-header h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #183153;
}

.miniCart-header button {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #5f6e68;
}

#miniCartItems {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px 20px;
}

.miniCart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #edf1ec;
}

.miniCart-left strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #1f3442;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f8f4;
  border: 1px solid #e2e8e1;
  border-radius: 999px;
  padding: 4px 8px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: #e7efe5;
  color: #2F5D4E;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.qty-controls span {
  min-width: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1f3442;
}

.miniCart-right {
  text-align: right;
  min-width: 76px;
}

.miniCart-right > div {
  font-size: 15px;
  font-weight: 700;
  color: #1f3442;
  margin-bottom: 10px;
}

.miniCart-right button {
  border: none;
  background: transparent;
  color: #8a948f;
  font-size: 18px;
  cursor: pointer;
}

.miniCart-footer {
  position: sticky;
  bottom: 0;
  background: linear-gradient(to top, #f7faf7, #ffffff);
  padding-top: 15px;
  margin-top: 15px;
}

#miniCartTotal {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #183153;
  margin-bottom: 14px;
}

#miniCartTotal small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #60706a;
}

.miniCart-footer .btn-main {
  width: 100%;
  border-radius: 30px;
  padding: 14px;
  font-weight: 600;
}

.orders-table td[colspan="3"] {
  min-width: 260px;
}

/* ===== MINI CART PREMIUM ===== */

.miniCart-item {
  transition: background 0.2s ease;
  border-radius: 10px;
}

.miniCart-item:hover {
  background: #f7faf7;
}

.miniCart-product {
  display: flex;
  gap: 12px;
  align-items: center;
}

.miniCart-product img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #e2e8e1;
}

.miniCart-sub {
  font-size: 12px;
  color: #6d7a74;
  margin-top: 2px;
}

.qty-controls {
  margin-top: 10px;
}

.miniCart-right {
  text-align: right;
}

.miniCart-right button{
  margin-top:8px;
  background:none;
  border:none;
  color:#8a948f;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:0;
  transition:all 0.2s ease;
}

.miniCart-right button::before{
  content:"🗑";
  font-size:15px;
  line-height:1;
}

.miniCart-right button:hover{
  color:#d9534f;
}

.miniCart-right button:hover {
  color: #d9534f;
}

.miniCart-footer {
  background: linear-gradient(to top, #f7faf7, #ffffff);
}

.order-products {
  min-width: 260px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
}

.order-divider {
  border-top: 1px solid #e5e5e5;
  margin: 8px 0;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

/* ===== MINI CART ANIMATION ===== */

#miniCart.open {
  right: 0;
}

/* Overlay */
#cartOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

#cartOverlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-note {
  font-size: 12px;
  color: #6d7a74;
  margin-top: 10px;
}

.legal-note a {
  color: #2F5D4E;
  text-decoration: underline;
}

/* ===== CHECKOUT LAYOUT FIX ===== */

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  align-items: start;
}

.checkout-left-panel {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.checkout-right-panel {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  position: sticky;
  top: 40px;
}

.checkout-left-panel h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.checkout-left-panel label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 15px;
}

.checkout-left-panel input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #dfe5dc;
  margin-top: 6px;
  font-size: 14px;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.checkout-actions .btn-main {
  flex: 1;
}

.checkout-actions .btn-secondary {
  border-radius: 30px;
}

.checkout-right-panel h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.checkout-item {
  padding: 14px 0;
}

.legal-check input {
  margin-right: 6px;
}

/* ===== FIX EXISTING CHECKOUT STRUCTURE ===== */

.checkout-left .form-group {
  margin-bottom: 15px;
}

.checkout-left input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #dfe5dc;
}

.section-title {
  font-size: 28px;
}

.section-copy {
  font-size: 14px;
}

/* ===== LEGAL PAGES ===== */

.legal-page {
  padding: 80px 0;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 40px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.legal-card h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #183153;
}

.legal-card .hint {
  font-size: 14px;
  color: #6d7a74;
  margin-bottom: 16px;
}

.legal-card h3 {
  font-size: 20px;
  margin: 24px 0 8px;
  color: #2F5D4E;
}

.legal-card p,
.legal-card li {
  font-size: 15px;
  line-height: 1.7;
  color: #334;
}

.legal-card .divider {
  margin: 18px 0 22px;
  border: 0;
  border-top: 1px solid #e5e5e5;
}

.legal-page .footer,
.legal-page footer.footer {
  text-align: center;
  margin-top: 24px;
}

/* ===== CHECKOUT FIX ===== */

.checkout-container {
  max-width: 1200px; /* was ~900–1000 */
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.checkout-left.card {
  padding: 34px 36px;
}

.checkout-right.card {
  padding: 28px;
}

.checkout-left .section-title {
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: #183153;
}

.checkout-left .section-copy {
  font-size: 15px;
  color: #6d7a74;
  margin-bottom: 22px;
  max-width: 520px;
}

.checkout-left .form-group {
  margin-bottom: 16px;
}

.checkout-left .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2F5D4E;
  margin-bottom: 8px;
}

.checkout-page input[type="text"],
.checkout-page input[type="email"],
.checkout-page input[type="tel"] {
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.checkout-page input:focus {
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.04),
    0 0 0 3px rgba(47,93,78,0.08);
}

.checkout-page input:focus {
  border-color: #2F5D4E;
  box-shadow: 0 0 0 3px rgba(47,93,78,0.08);
}

.checkout-left .form-group input:focus {
  outline: none;
  border-color: #9FBF9B;
  box-shadow: 0 0 0 4px rgba(159,191,155,0.12);
}

.legal-check {
  background: #f8fbf9;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e3ebe7;
}

.legal-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.legal-check a {
  color: #2F5D4E;
  text-decoration: underline;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.checkout-actions .btn-secondary,
.checkout-actions .btn-main {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.checkout-actions .btn-secondary {
  min-width: 120px;
}

.checkout-actions .btn-main {
  flex: 1;
}

.btn-main {
  background: #4f9d6a;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.checkout-right h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #edf1ec;
}

.checkout-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.checkout-item-left img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #e2e8e1;
  flex: 0 0 auto;
}

.checkout-item-left strong {
  font-size: 16px;
}

.checkout-sub {
  font-size: 12px;
  color: #6d7a74;
  margin-top: 2px;
}

.checkout-item-right {
  font-size: 16px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.summary-total-left {
  font-size: 18px;
  font-weight: 600;
  color: #1b2540;
}

.summary-total-right {
  text-align: right;
}

.summary-price {
  font-size: 24px;
  font-weight: 700;
  color: #2F5D4E;
}

.summary-vat {
  font-size: 12px;
  color: #7b8b84;
  margin-top: 4px;
}

.summary-total > div:first-child {
  font-size: 22px;
  font-weight: 700;
  color: #1b2540;
  line-height: 1;
}

.summary-total-right {
  text-align: right;
}

.summary-total-right strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #2F5D4E;
  line-height: 1;
}

.summary-total-right small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #7b8b84;
}

.checkout-right .total {
  font-size: 22px;
  font-weight: 700;
  color: #2F5D4E;
}

.checkout-right small {
  font-size: 12px;
  color: #7b8f86;
}

@media (max-width: 980px) {

  .checkout-left .section-title {
    font-size: 36px;
  }
}

/* ===== PREMIUM LEGAL PAGES ===== */

.legal-wrapper {
  padding: 120px 20px;
}

.legal-header h1 {
  font-size: 42px;
  margin-bottom: 6px;
  color: #183153;
}

.legal-sub {
  font-size: 14px;
  color: #6d7a74;
  margin-bottom: 30px;
}

.legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: #334;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2F5D4E;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-footer {
  margin-top: 30px;
}

.legal-footer a {
  color: #2F5D4E;
  text-decoration: underline;
  font-size: 14px;
}

/* ===== LEGAL CLEAN UI ===== */

.legal-wrapper {
  padding: 100px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.legal-container h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.legal-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.legal-content h3 {
  margin-top: 25px;
  font-size: 20px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.7;
}

.legal-footer {
  margin-top: 30px;
}

/* ===== GLOBAL FOOTER ===== */

.site-footer {
  text-align: center;
  font-size: 13px;
  color: #7a8a83;
  padding: 30px 20px;
  margin-top: 60px;
}

/* ===== LEGAL PREMIUM STYLE ===== */

.legal-header h1 {
  font-size: 44px;
  margin-bottom: 8px;
  color: #183153;
}

.legal-header p {
  font-size: 16px;
  color: #6d7a74;
  margin-bottom: 30px;
}

.legal-content {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

/* section spacing */
.legal-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 8px;
  color: #2F5D4E;
}

/* subtle divider between sections */
.legal-content h3:not(:first-child) {
  border-top: 1px solid #eef2ee;
  padding-top: 20px;
}

/* ===== GLOBAL BACKGROUND (SOFT PREMIUM LOOK) ===== */

body {
  background: #f7faf7;
  font-family: Arial, sans-serif;
  padding-top: 90px !important;
}

.hero{
  min-height: auto !important;
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}

/* ===== CHECKOUT RESET (FIX BROKEN LAYOUT) ===== */

.checkout-page * {
  box-sizing: border-box;
}

.checkout-page {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #222;
}

.checkout-page .btn-main {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  background: #4FA06D;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.legal-content {
  font-size: 16px;
  line-height: 1.8;
}

.checkout-left label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2F5D4E;
}

.checkout-left .form-group {
  margin-bottom: 18px;
}

.checkout-left.card {
  padding: 32px;
}

.checkout-left h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.checkout-left p {
  margin-bottom: 28px;
  color: #6b7c75;
}

.checkout-page select {
  width: 100%;
  height: 56px;
  padding: 0 14px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-page select {
  width: 100%;
  height: 56px;
  padding: 0 14px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

@media (max-width: 768px) {
  .address-grid {
    grid-template-columns: 1fr;
  }
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkout-page select,
.checkout-left select {
  width: 100%;
  height: 56px;
  padding: 0 14px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

@media (max-width: 768px) {
  .address-grid {
    grid-template-columns: 1fr;
  }
}

.summary-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d9e2dc, transparent);
  margin: 14px 0;
}

.checkout-item {
  padding: 14px 0;
  border-bottom: 1px solid #eef2ef;
}

.checkout-item:last-of-type {
  border-bottom: none;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin-bottom: 12px;
}

.summary-row span:first-child {
  color: #5f6e68;
}

.summary-row span:last-child {
  font-weight: 600;
}

.summary-total > div:first-child {
  font-size: 16px;
  font-weight: 600;
}

.summary-total-right {
  text-align: right;
}

.summary-total-right strong {
  font-size: 22px;
  color: #2F5D4E;
}

.summary-total-right small {
  display: block;
  font-size: 12px;
  color: #8a9b93;
}

.shipping-card {
  background: #ffffff;
  border: 1px solid #e1e9e2;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 8px 20px rgba(47,93,78,0.05);
  margin-bottom: 20px;
}

.shipping-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.shipping-form label {
  font-weight: 600;
  color: #2F5D4E;
}

.shipping-form input {
  width: 120px;
  height: 44px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
}

.btn-main {
  transition: all 0.2s ease;
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47,93,78,0.18);
}

.checkout-right.card {
  position: sticky;
  top: 30px;
}

@media (max-width: 920px) {
  .checkout-right.card {
    position: static;
  }
}

.checkout-steps {
  max-width: 1200px;
  margin: 24px auto 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.step {
  padding: 10px 18px;
  border-radius: 999px;
  background: #eef2ef;
  color: #5f6e68;
  font-size: 14px;
  font-weight: 600;
}

.step.done {
  background: #dff3e7;
  color: #2F5D4E;
}

.step.active {
  background: #2F5D4E;
  color: #fff;
}

.trust-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.trust-badges span {
  background: #f4f7f5;
  border: 1px solid #dfe7e2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #2F5D4E;
  font-weight: 600;
}

.success-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.success-card {
  background: #fff;
  padding: 50px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  animation: popIn .45s ease;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #2F5D4E;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
}

@keyframes popIn {
  from {opacity:0; transform:scale(.9);}
  to {opacity:1; transform:scale(1);}
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:22px;
}

.stat-card{
  background:#fff;
  border:1px solid #e1e9e2;
  border-radius:22px;
  padding:20px;
  box-shadow:0 10px 24px rgba(47,93,78,.05);
}

.stat-label{
  font-size:13px;
  color:#7a8b85;
  margin-bottom:10px;
  font-weight:700;
  text-transform:uppercase;
}

.stat-value{
  font-size:30px;
  font-weight:800;
  color:#2F5D4E;
}

@media(max-width:1000px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .stats-grid{
    grid-template-columns:1fr;
  }
}

.print-btn{
  display:inline-block;
  padding:8px 14px;
  background:#2f5d4e;
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.print-btn:hover{
  opacity:.9;
}

/* ===== REMOVE ALL WHITE IMAGE FRAMES ===== */

.product-card,
.product-card img,
.product-img,
.product-img img,
.hero-img,
.hero-img img,
.checkout-item-left img,
.miniCart-product img,
.benefits-image img{
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* keep product hover clean */
.product-card:hover,
.product-card:hover img{
    box-shadow: none !important;
}

/* ===== REMOVE PRODUCT IMAGE WHITE CARDS ===== */

.product-card{
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.product-card img{
  width: 160px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* if image files contain white edges, blend slightly */
.product-card img,
.hero-img,
.product-img img{
  mix-blend-mode: multiply;
}

/* =========================
   Navbar Brand Logo
========================= */
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.brand span{
    font-size:28px;
    font-weight:800;
    color:#0f2240;
    letter-spacing:0.5px;
}

.brand-logo{
    width:108px;
    height:72px;
    object-fit:contain;
    display:block;
}

.legal-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
    padding-bottom:18px;
    border-bottom:1px solid #e8eee8;
}

.legal-brand img{
    width:42px !important;
    height:42px !important;
    max-width:42px;
    min-width:42px;
    object-fit:contain;
    display:block;
}

.legal-brand-text h3{
    margin:0;
    font-size:18px;
    line-height:1.1;
    color:#1d2b4f;
}

.legal-brand-text p{
    margin:4px 0 0;
    font-size:12px;
    color:#6f7c74;
}

/* ==================================
   LEGAL PAGES PREMIUM POLISH
================================== */

/* page spacing */
.legal-wrapper{
    padding:60px 20px;
}

/* main white card */
.legal-container{
    max-width:980px;
    margin:0 auto;
    background:#ffffff;
    border-radius:34px;
    padding:42px 46px;
    box-shadow:0 18px 55px rgba(0,0,0,0.07);
    border:1px solid rgba(159,191,155,0.16);
}

/* logo row */
.legal-brand{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:34px;
    padding-bottom:20px;
    border-bottom:1px solid #edf2ed;
}

.legal-brand img{
    width:56px !important;
    height:56px !important;
    max-width:56px;
    min-width:56px;
    object-fit:contain;
    display:block;
}

.legal-brand-text h3{
    margin:0;
    font-size:22px;
    color:#1d2b4f;
    font-weight:800;
}

.legal-brand-text p{
    margin:4px 0 0;
    font-size:13px;
    color:#6f7c74;
}

/* headings */
.legal-container h1{
    font-size:52px;
    line-height:1.08;
    margin:0 0 10px;
    color:#1d2b4f;
}

.legal-container > p,
.legal-sub{
    margin-bottom:18px;
    color:#6d7782;
}

/* content spacing */
.legal-content{
    margin-top:22px;
}

/* each section becomes a card */
.legal-content h3{
    background:#f7faf7;
    border:1px solid #e8efe8;
    border-radius:18px;
    padding:16px 20px;
    margin:22px 0 10px;
    color:#2f5d4e;
    font-size:26px;
}

.legal-content p{
    padding:0 6px 8px;
    font-size:17px;
    line-height:1.8;
    color:#43505a;
}

/* footer button */
.legal-footer a{
    display:inline-block;
    margin-top:28px;
    padding:14px 20px;
    background:#2f5d4e;
    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(47,93,78,0.18);
    transition:all 0.2s ease;
}

.legal-footer a:hover{
    transform:translateY(-2px);
    background:#24493d;
}

/* mobile */
@media (max-width:768px){
    .legal-container{
        padding:28px 22px;
        border-radius:24px;
    }

    .legal-container h1{
        font-size:38px;
    }

    .legal-content h3{
        font-size:22px;
    }

    .legal-brand img{
        width:48px !important;
        height:48px !important;
    }
}

/* ===============================
   LEGAL NAVBAR + FOOTER
=============================== */

.mini-topbar{
    max-width:1100px;
    margin:20px auto 0;
    padding:14px 24px;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mini-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-size:22px;
    font-weight:800;
    color:#1d2b4f;
}

.mini-brand img{
    width:36px;
    height:36px;
    object-fit:contain;
    display:block;
}

.mini-nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.mini-nav a{
    color:#52606b;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
}

.mini-nav a:hover{
    color:#2f5d4e;
}

.legal-site-footer{
    text-align:center;
    padding:30px 20px 50px;
    color:#6c7780;
    font-size:14px;
}

/* ==================================
   LEGAL PAGES FINAL STABLE LAYOUT
================================== */

body.legal-page-body{
    background: linear-gradient(180deg,#eef5ee 0%, #f7faf7 100%);
    margin: 0;
    padding-top: 0 !important;
}

.mini-topbar{
    max-width: 1100px;
    margin: 26px auto 0;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.mini-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1d2b4f;
    font-size: 22px;
    font-weight: 800;
}

.mini-brand img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.mini-nav{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.mini-nav a{
    text-decoration: none;
    color: #5b6770;
    font-size: 14px;
    font-weight: 600;
}

.mini-nav a:hover{
    color: #2f5d4e;
}

.legal-wrapper{
    max-width: 1100px;
    margin: 34px auto 0;
    padding: 0 20px 40px;
}

.legal-container{
    width: 100%;
    background: #ffffff;
    border-radius: 34px;
    padding: 44px 58px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.07);
    border: 1px solid rgba(159,191,155,0.16);
}

.legal-header{
    margin-bottom: 10px;
}

.legal-header h1{
    font-size: 56px;
    line-height: 1.06;
    margin: 0 0 10px;
    color: #1d2b4f;
}

.legal-header p{
    margin: 0;
    font-size: 18px;
    color: #5f6d76;
}

.legal-sub{
    margin: 0 0 28px;
    font-size: 14px;
    color: #7b8790;
}

.legal-content{
    margin-top: 18px;
}

.legal-content h3{
    background: #f7faf7;
    border: 1px solid #e8efe8;
    border-radius: 18px;
    padding: 16px 20px;
    margin: 24px 0 12px;
    color: #2f5d4e;
    font-size: 24px;
    font-weight: 800;
}

.legal-content p{
    margin: 0 0 16px;
    padding: 0 6px;
    font-size: 17px;
    line-height: 1.8;
    color: #43505a;
}

.legal-footer{
    margin-top: 28px;
}

.legal-footer a{
    display: inline-block;
    padding: 14px 20px;
    background: #2f5d4e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(47,93,78,0.18);
    transition: all 0.2s ease;
}

.legal-footer a:hover{
    transform: translateY(-2px);
    background: #24493d;
}

.legal-site-footer{
    text-align: center;
    padding: 12px 20px 42px;
    color: #6c7780;
    font-size: 14px;
}

@media (max-width: 900px){
    .mini-topbar{
        margin: 18px 16px 0;
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-wrapper{
        margin-top: 24px;
        padding: 0 16px 32px;
    }

    .legal-container{
        padding: 30px 22px;
        border-radius: 24px;
    }

    .legal-header h1{
        font-size: 40px;
    }

    .legal-header p{
        font-size: 16px;
    }

    .legal-content h3{
        font-size: 20px;
    }

    .legal-content p{
        font-size: 15px;
    }
}

/* =========================
   ACTIVE NAV LINKS
========================= */

.mini-nav a.active-link{
    background:#2f5d4e;
    color:#fff !important;
    padding:10px 14px;
    border-radius:12px;
    box-shadow:0 8px 18px rgba(47,93,78,0.18);
}

.mini-nav a{
    transition:all .2s ease;
}

.mini-nav a:hover{
    background:#f2f7f2;
    padding:10px 14px;
    border-radius:12px;
}

.footer-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
}

.footer-links a{
    color:#5b6770;
    text-decoration:none;
    font-weight:600;
}

.footer-links a:hover{
    color:#2f5d4e;
}

/* =========================
   ROOT NAV FIX
========================= */

.site-header{
  width:100%;
  background:transparent;
  border-radius:0;
  box-shadow:none;
  padding:18px 0;
  margin:0;
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand,
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.brand-text {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -.5px;
    color: #0f2340;
}

/* nav links */
nav a,
.nav-links a,
.menu a {
    color: #0f2340 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 6px;
    transition: .2s ease;
}

nav a:hover,
.nav-links a:hover,
.menu a:hover {
    color: #2F5D4E !important;
}

/* hero reset */
.hero,
.hero-grid,
.hero-content {
    margin-top: 0 !important;
}

.hero h1 {
    line-height: 1.02;
}

/* =========================
   FULL-WIDTH GREEN SECTIONS FIX
========================= */

section.benefits,
section.how-it-works-wrap{
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

section.benefits{
  background: #EAF3EA;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

section.how-it-works-wrap{
  background: #EAF3EA;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

section.benefits .section-inner,
section.how-it-works-wrap .container{
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   ENGINEERED SECTION FIX
========================= */

section.engineered{
  max-width:none !important;
  width:100% !important;
  margin:0 !important;
  background:transparent !important;
  padding:100px 0 !important;
}

section.engineered .section-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 24px;
  background:transparent !important;
}

/* =========================
   FORCE BIGGER NAV LOGO
========================= */

.navbar .brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.navbar .brand-logo{
  width:92px !important;
  height:82px !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

/* =========================
   MOBILE WATERMARK
========================= */
@media (max-width: 768px){
  .hero::after{
    background-size: 260px !important;
    opacity: 0.08;
  }
}

/* =========================
   CLEAN MOBILE NAVBAR
========================= */
@media (max-width: 768px){

  .navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 14px;
    gap:10px;
    flex-wrap:nowrap;
  }

  /* Brand area */
  .brand{
    display:flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
  }

  .brand-logo{
    width:44px !important;
    height:44px !important;
    object-fit:contain;
  }

  /* Hide text on mobile */
  .brand span,
  .brand-text,
  .brand-name{
    display:none !important;
  }

  /* Desktop links off */
  .nav-links{
    display:none !important;
  }

  /* Cart center */
  .cart-btn,
  .cart-icon{
    font-size:20px;
    line-height:1;
    margin:0 auto;
    flex:0 0 auto;
  }

  /* Shop button */
  .btn-primary,
  .nav-cta a,
  .shop-btn{
    padding:10px 18px !important;
    font-size:15px !important;
    border-radius:999px;
    white-space:nowrap;
    min-width:auto;
  }
}

/* =========================
   MOBILE HERO SPACING FIX
========================= */
@media (max-width: 768px){

  .hero,
  .hero-section,
  header + section{
    padding-top: 40px !important;
  }

  .hero-badge,
  .eyebrow{
    margin-top: 18px !important;
  }
}

/* =========================
   PREMIUM HAMBURGER MENU
========================= */

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  color:#0f2343;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:14px;
  padding:18px;
  background:#ffffff;
  border-top:1px solid #eee;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.mobile-menu a{
  text-decoration:none;
  color:#0f2343;
  font-weight:600;
  font-size:16px;
}

.mobile-menu.show{
  display:flex;
}

@media (max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    display:none !important;
  }
}

/* =========================
   MOBILE NAV HEIGHT + HERO OFFSET FIX
========================= */
@media (max-width: 768px){

  body{
    padding-top: 78px !important;
  }

  .navbar{
    padding: 0 !important;
  }

  .navbar-inner{
    min-height: 78px;
    padding: 10px 14px !important;
    gap: 10px !important;
  }

  .brand-logo{
    width: 38px !important;
    height: 38px !important;
  }

  .menu-toggle{
    font-size: 22px !important;
    line-height: 1 !important;
    padding: 0 4px !important;
  }

  .nav-icon{
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .nav-right .btn-main{
    padding: 10px 16px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    min-height: 42px !important;
    margin-right: 0 !important;
  }

  .hero{
    padding-top: 24px !important;
  }

  .badge{
    margin-top: 8px !important;
  }
}

/* =========================
   MOBILE SHOP BUTTON TEXT ALIGN FIX
========================= */
@media (max-width: 768px){

  .nav-right .btn-main,
  .btn-primary,
  .shop-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
    height:42px !important;
    padding:0 18px !important;
  }
}

/* =========================
   MINI CART CLOSE FIX
========================= */

#cartOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 998;
}

#cartOverlay.active{
  opacity: 1;
  visibility: visible;
}

#miniCart{
  position:fixed;
  top:0;
  right:-400px;
  width:380px;
  height:100%;
  background:#fff;
  box-shadow:-10px 0 30px rgba(0,0,0,0.1);
  transition:right 0.3s ease;
  z-index:1000;
  display:flex;
  flex-direction:column;
}

#miniCart.active{
  right: 0;
}

.miniCart-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.miniCart-header button{
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #183153;
}

@media (max-width: 768px){
  #miniCart{
    width: 100%;
    max-width: 100%;
    right: -100%;
  }

  #miniCart.active{
    right: 0;
  }
}

/* =========================
   MOBILE CART HEADER FIX
========================= */
@media (max-width: 768px){

  #miniCart{
    top: 78px !important;
    height: calc(100vh - 78px) !important;
  }

  .miniCart-header{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:16px 18px !important;
    background:#ffffff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:5;
  }

  .miniCart-header button{
    display:block !important;
    background:none !important;
    border:none !important;
    font-size:28px !important;
    line-height:1 !important;
    color:#0f2343 !important;
    padding:4px 8px !important;
    cursor:pointer;
  }
}

/* =========================
   MOBILE PRODUCT CARD POLISH
========================= */
@media (max-width: 768px){

  .product-grid,
  .products-grid,
  .collection-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .product-card,
  .product-item,
  .collection-card{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.05);
    border-radius:22px;
    padding:18px 16px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    text-align:center;
    overflow:hidden;
  }

  .product-card img,
  .product-item img,
  .collection-card img{
    width:160px !important;
    max-width:100%;
    height:auto;
    margin:0 auto 12px;
    display:block;
  }

  .product-card h3,
  .product-item h3,
  .collection-card h3{
    font-size:22px;
    line-height:1.2;
    margin:8px 0 6px;
    color:#0f2343;
  }

  .product-card p,
  .product-item p,
  .collection-card p{
    font-size:15px;
    line-height:1.5;
    color:#667085;
    margin-bottom:14px;
  }

  .product-card .btn-main,
  .product-item .btn-main,
  .collection-card .btn-main{
    width:100%;
    min-height:48px;
    border-radius:999px;
    font-size:16px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
  }
}

/* =========================
   MOBILE CART CARD POLISH
========================= */
@media (max-width:768px){

  #miniCart{
    padding:18px;
  }

  #miniCartItems{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .cart-item{
    display:grid;
    grid-template-columns:72px 1fr auto;
    gap:14px;
    align-items:start;
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:18px;
    padding:14px;
    box-shadow:0 6px 16px rgba(0,0,0,0.05);
  }

  .cart-item img{
    width:72px;
    height:72px;
    object-fit:contain;
    border-radius:12px;
    background:#f8faf8;
    padding:4px;
  }

  .cart-item h4{
    margin:0 0 4px;
    font-size:20px;
    line-height:1.2;
    color:#102445;
  }

  .cart-item .price{
    font-size:20px;
    font-weight:700;
    color:#102445;
    white-space:nowrap;
  }

  .cart-item .qty-label{
    font-size:14px;
    color:#667085;
    margin-bottom:10px;
  }

  .qty-controls{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#f5f8f5;
    border-radius:999px;
    padding:6px 10px;
    width:auto;
  }

  .qty-controls button{
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#eaf3ea;
    font-size:20px;
    font-weight:700;
    color:#2f5d4e;
  }

  .qty-controls span{
    min-width:20px;
    text-align:center;
    font-weight:700;
    font-size:16px;
  }

.cart-remove{
  background:none;
  border:none;
  color:#c0392b;
  cursor:pointer;
  margin-top:8px;
  text-align:right;
  font-size:14px;
  font-weight:600;
  padding:0;
}

  .miniCart-footer{
    padding-top:18px;
  }

  .miniCart-footer .btn-main{
    min-height:54px;
    font-size:22px;
    font-weight:700;
    border-radius:999px;
  }
}

/* =========================
   MOBILE LIVE SITE FIX - TEMP
========================= */

@media (max-width: 768px){

  .site-header,
  .navbar,
  .nav-wrap{
    min-height: 78px;
    padding: 10px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
  }

  .brand-logo{
    width:56px;
    height:56px;
    object-fit:contain;
    flex-shrink:0;
  }

  .brand-text{
    font-size:20px;
    line-height:1;
    white-space:nowrap;
  }

  .mobile-menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    font-size:28px;
  }

  .cart-btn,
  .shop-now-top,
  .nav-cta{
    height:44px;
    padding:0 18px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
  }
}


