*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f6f6f6;
  color:#1a1a1a;
}

a{
  text-decoration:none;
}

.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

:root{
  --red:#c61e17;
  --dark:#111111;
  --light:#ffffff;
  --gray:#666666;
  --soft:#f2f2f2;
  --green:#25D366;
}

header{
  background:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  position:sticky;
  top:0;
  z-index:1000;
}

.navbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-box img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:14px;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 5px 14px rgba(0,0,0,0.08);
}

.logo-text h1{
  font-size:17px;
  line-height:1.2;
  color:var(--dark);
}

.logo-short{
  display:none;
}

.logo-text p{
  font-size:12px;
  color:#777;
  margin-top:3px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-links a{
  color:var(--dark);
  font-weight:700;
  font-size:14px;
  transition:0.3s;
  position:relative;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--red);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--red);
  transition:0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-toggle{
  display:none;
  border:none;
  background:var(--red);
  color:#fff;
  width:48px;
  height:48px;
  border-radius:12px;
  font-size:24px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  padding:0 0 20px;
}

.mobile-menu.active{
  display:block;
}

.mobile-menu a{
  display:block;
  background:#f5f5f5;
  color:#222;
  padding:14px 16px;
  margin-bottom:10px;
  border-radius:12px;
  font-weight:700;
}

.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  transition:0.3s;
  border:none;
  cursor:pointer;
}

.btn-red{
  background:var(--red);
  color:#fff;
  box-shadow:0 10px 20px rgba(198,30,23,0.22);
}

.btn-red:hover{
  background:#ab1712;
  transform:translateY(-2px);
}

.btn-dark{
  background:var(--dark);
  color:#fff;
}

.btn-dark:hover{
  background:#000;
  transform:translateY(-2px);
}

.btn-outline{
  border:2px solid var(--dark);
  color:var(--dark);
  background:#fff;
}

.btn-outline:hover{
  background:var(--dark);
  color:#fff;
}

.btn-green{
  background:var(--green);
  color:#fff;
  box-shadow:0 10px 20px rgba(37,211,102,0.2);
}

.btn-green:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(37,211,102,0.24);
}

/* ====== HERO ====== */
.hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  background:url("coke-bg.jpg") center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(198,30,23,0.82), rgba(0,0,0,0.68));
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
  padding:70px 0;
}

.hero-text h2{
  font-size:58px;
  line-height:1.05;
  color:#fff;
  margin-bottom:18px;
  font-weight:900;
  max-width:700px;
  letter-spacing:-1px;
}

.hero-text p{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,0.9);
  max-width:680px;
  margin-bottom:28px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}

.hero-badges span{
  background:rgba(255,255,255,0.15);
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,0.15);
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-promo{
  display:none;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.22);
  border-radius:20px;
  padding:16px 18px;
  margin-top:22px;
  max-width:720px;
}

.hero-promo-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:86px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.18);
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-align:center;
}

.hero-promo-copy{
  color:#fff;
  line-height:1.4;
  flex:1;
  min-width:0;
}

.hero-promo-copy strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}

.hero-promo-copy span{
  display:block;
  font-size:14px;
  color:rgba(255,255,255,0.82);
}

.hero-promo-link{
  white-space:nowrap;
}

.animated-words{
  display:inline-block;
  position:relative;
  min-width:240px;
  height:1.2em;
  vertical-align:bottom;
  color:#ffd7d5;
  font-weight:900;
}

.animated-words .word{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translateY(20px) scale(0.95);
  transition:all 0.5s ease;
  white-space:nowrap;
}

.animated-words .word.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

.hero-card{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:28px;
  padding:30px;
  color:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.hero-card h3{
  font-size:22px;
  margin-bottom:16px;
}

.hero-card .big{
  font-size:62px;
  font-weight:900;
  line-height:1;
  margin-bottom:8px;
}

.hero-card p{
  color:rgba(255,255,255,0.9);
  line-height:1.7;
  margin-bottom:22px;
}

.mini-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.mini-box{
  background:rgba(255,255,255,0.12);
  padding:16px;
  border-radius:18px;
}

.mini-box strong{
  display:block;
  font-size:20px;
  margin-bottom:4px;
}

section{
  padding:85px 0;
}

.page-hero{
  padding:60px 0;
  background:var(--light);
}

.page-hero-content{
  max-width:860px;
  margin:auto;
  text-align:left;
}

.page-hero-content h2{
  font-size:44px;
  line-height:1.1;
  margin-bottom:16px;
}

.page-hero-content p{
  color:var(--dark);
  font-size:18px;
  line-height:1.8;
  max-width:740px;
}

.page-hero + section {
  padding-top:40px;
}

.section-title{
  text-align:center;
  margin-bottom:38px;
}

.section-title h3{
  font-size:36px;
  color:var(--dark);
  margin-bottom:10px;
}

.section-title p{
  color:var(--gray);
  font-size:16px;
  max-width:720px;
  margin:auto;
  line-height:1.7;
}

/* ====== ABOUT ====== */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.about-box,
.about-card,
.product-card,
.info-card,
.order-summary,
.organogram-inline,
.why-card,
.coverage-card{
  background:#fff;
  border-radius:26px;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
}

.about-box{
  padding:34px;
  line-height:1.9;
  color:#555;
  font-size:16px;
}

.about-card{
  padding:34px;
  background:linear-gradient(135deg,#111,#1f1f1f);
  color:#fff;
}

.about-card h4{
  font-size:24px;
  margin-bottom:16px;
}

.about-card ul{
  padding-left:20px;
  line-height:1.9;
  color:#ddd;
}

.organogram-inline{
  margin-top:30px;
  padding:20px;
  overflow:hidden;
}

.organogram-inline img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid #eee;
}

.organogram-note{
  margin-top:14px;
  color:#666;
  line-height:1.8;
  text-align:center;
  font-size:15px;
}

/* ====== PRODUCTS — SLIDESHOW + FLOATING DROPDOWN ====== */
.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* Card: no overflow:hidden so the floating dropdown can escape */
.product-card{
  position:relative;
  z-index:1;
  transition:box-shadow 0.3s;
  cursor:default;
}

.product-card.open{
  z-index:50; /* float above sibling cards when dropdown is open */
}

.product-card:hover{
  box-shadow:0 18px 35px rgba(0,0,0,0.13);
}

/* ---- Slideshow ---- */
.slideshow-wrap{
  position:relative;
  height:220px;
  background:#f8f8f8;
  overflow:hidden;
  border-radius:26px 26px 0 0;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 0.65s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slide.active{
  opacity:1;
}

.slide img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

/* Branded placeholder slide — used until real photos are added */
.slide-ph{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:16px;
  text-align:center;
}

.slide-ph.dark{ background:linear-gradient(135deg,#111 0%,#242424 100%); }
.slide-ph.red{ background:linear-gradient(135deg,#c61e17 0%,#8a1210 100%); }

.slide-dots{
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:5px;
  z-index:3;
}

.slide-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  border:none;
  padding:0;
  cursor:pointer;
  transition:background 0.3s, transform 0.2s;
}

.slide-dot.active{
  background:#fff;
  transform:scale(1.35);
}

/* ---- Card body ---- */
.product-body{
  padding:14px 16px 16px;
  position:relative; /* anchor for the floating dropdown */
}

/* Toggle button — styled like a select/placeholder input */
.product-toggle{
  width:100%;
  background:#f8f8f8;
  border:1.5px solid #e4e4e4;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  text-align:left;
  transition:border-color 0.2s, background 0.2s;
}

.product-toggle:hover{
  border-color:var(--red);
  background:#fff8f8;
}

.product-card.open .product-toggle{
  border-color:var(--red);
  background:#fff8f8;
  border-radius:12px 12px 0 0;
  border-bottom-color:transparent;
}

.product-toggle-left{
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:flex-start;
}

.product-toggle h4{
  font-size:15px;
  font-weight:700;
  color:var(--dark);
  line-height:1.2;
}

.placeholder-text{
  font-size:11px;
  color:#aaa;
  font-weight:400;
}

.product-card.open .placeholder-text{
  color:var(--red);
}

.tag{
  display:inline-block;
  background:#fde9e8;
  color:var(--red);
  padding:3px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

/* ---- Floating SKU dropdown ---- */
.sku-dropdown{
  display:none;
  position:absolute;
  top:calc(100% - 16px); /* attaches right below the toggle button */
  left:0;
  right:0;
  z-index:200;
  background:#fff;
  border:1.5px solid var(--red);
  border-top:none;
  border-radius:0 0 14px 14px;
  box-shadow:0 18px 36px rgba(0,0,0,0.13);
  padding:4px 14px 12px;
  max-height:260px;
  overflow-y:auto;
}

.sku-dropdown.open{
  display:block;
}

.sku-dropdown::-webkit-scrollbar{ width:4px; }
.sku-dropdown::-webkit-scrollbar-thumb{ background:var(--red); border-radius:4px; }

.sku-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  border-bottom:1px solid #f5f5f5;
}

.sku-item:last-child{ border-bottom:none; }

.sku-item span{
  font-size:13px;
  font-weight:600;
  color:#444;
}

.sku-controls{
  display:flex;
  align-items:center;
  gap:6px;
}

.sku-qty-input{
  width:40px;
  height:30px;
  border:1px solid #ddd;
  border-radius:6px;
  text-align:center;
  font-size:13px;
  font-weight:700;
  outline:none;
}

.sku-qty-input:focus{ border-color:var(--red); }

.add-btn-mini{
  background:var(--red);
  color:#fff;
  border:none;
  width:30px;
  height:30px;
  border-radius:6px;
  cursor:pointer;
  font-weight:700;
  font-size:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s, transform 0.15s;
  flex-shrink:0;
}

.add-btn-mini:hover{
  background:#ab1712;
  transform:scale(1.07);
}

/* ====== ANNOUNCEMENT BAR ====== */
.announcement-bar{
  background:var(--red);
  color:#fff;
  text-align:center;
  padding:0; /* changed to 0, padding moved to link */
  font-size:14px;
  font-weight:600;
  position:relative;
  z-index:1100;
  line-height:1.5;
  display:none; /* shown by JS when promo is active */
}

.bar-link{
  display:block;
  color:#fff;
  padding:11px 52px;
  text-decoration:none;
  transition:background 0.2s;
}

.bar-link:hover{
  background:rgba(0,0,0,0.1);
}

.bar-text a{
  color:#fff;
  text-decoration:underline;
}

.bar-close{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,0.2);
  border:none;
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  cursor:pointer;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s;
  flex-shrink:0;
}

.bar-close:hover{ background:rgba(255,255,255,0.38); }

/* ====== PROMOTIONS SECTION ====== */
.promo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.promo-card{
  background:#fff;
  border-radius:26px;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  padding:28px 28px 24px;
  border-top:5px solid var(--red);
  position:relative;
  overflow:hidden;
}

.promo-badge{
  display:inline-block;
  background:#fde9e8;
  color:var(--red);
  padding:5px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

.promo-discount{
  position:absolute;
  top:22px;
  right:22px;
  background:var(--dark);
  color:#fff;
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  text-align:center;
  line-height:1.25;
  white-space:pre-line;
}

.promo-title{
  font-size:22px;
  font-weight:900;
  color:var(--dark);
  margin-bottom:8px;
  padding-right:80px; /* clear the discount circle */
  line-height:1.3;
}

.promo-subtitle{
  font-size:13px;
  color:var(--red);
  font-weight:700;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:0.04em;
}

.promo-desc{
  font-size:14px;
  color:#666;
  line-height:1.75;
  margin-bottom:18px;
}

.promo-countdown-label{
  font-size:11px;
  font-weight:700;
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:0.06em;
  margin-bottom:8px;
}

.promo-countdown{
  display:flex;
  gap:8px;
  margin-bottom:20px;
}

.countdown-unit{
  background:#f8f8f8;
  border-radius:12px;
  padding:10px 14px;
  text-align:center;
  min-width:56px;
}

.countdown-unit .num{
  display:block;
  font-size:26px;
  font-weight:900;
  color:var(--red);
  line-height:1;
}

.countdown-unit .lbl{
  display:block;
  font-size:10px;
  color:#aaa;
  margin-top:4px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.04em;
}

/* ====== LAUNCH POPUP ====== */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.62);
  z-index:4000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  animation:popFadeIn 0.3s ease;
}

@keyframes popFadeIn{
  from{opacity:0}
  to{opacity:1}
}

.popup-card{
  background:#fff;
  border-radius:28px;
  padding:36px 32px 28px;
  max-width:440px;
  width:100%;
  position:relative;
  text-align:center;
  animation:popSlideUp 0.42s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:0 24px 60px rgba(0,0,0,0.24);
}

@keyframes popSlideUp{
  from{transform:translateY(40px) scale(0.95);opacity:0}
  to{transform:translateY(0) scale(1);opacity:1}
}

.popup-top-bar{
  height:6px;
  background:var(--red);
  border-radius:28px 28px 0 0;
}

.popup-close{
  position:absolute;
  top:16px;
  right:16px;
  background:#f2f2f2;
  border:none;
  width:34px;
  height:34px;
  border-radius:50%;
  cursor:pointer;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s;
  z-index:1;
}

.popup-close:hover{ background:#e2e2e2; }

.popup-badge{
  display:inline-block;
  background:#fde9e8;
  color:var(--red);
  padding:6px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:0.04em;
}

.popup-title{
  font-size:26px;
  font-weight:900;
  color:var(--dark);
  margin-bottom:10px;
  line-height:1.25;
}

.popup-desc{
  font-size:14px;
  color:#666;
  line-height:1.75;
  margin-bottom:20px;
}

.popup-countdown{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-bottom:22px;
}

.popup-cta{
  display:inline-block;
  font-size:15px;
  padding:14px 34px;
}

.popup-skip{
  display:block;
  margin-top:14px;
  font-size:12px;
  color:#bbb;
  cursor:pointer;
  background:none;
  border:none;
  text-decoration:underline;
}

.popup-skip:hover{ color:#888; }

/* Responsive: promo grid stacks on mobile */
@media(max-width:768px){
  .promo-grid{ grid-template-columns:1fr; }
  .popup-card{ padding:28px 20px 22px; }
  .popup-top-bar{ margin:-28px -20px 22px; }
  .popup-title{ font-size:22px; }
}

/* ====== PLACEHOLDER SLIDES (swap with real photos later) ====== */
.ph-slide{
  display:flex;
  align-items:center;
  justify-content:center;
}

.ph-inner{
  text-align:center;
  padding:16px 12px;
}

.ph-emoji{
  font-size:34px;
  display:block;
  margin-bottom:10px;
  line-height:1;
}

.ph-label{
  display:block;
  font-size:13px;
  font-weight:800;
  color:#fff;
  line-height:1.45;
  letter-spacing:0.02em;
}

.ph-sub{
  display:block;
  font-size:11px;
  color:rgba(255,255,255,0.65);
  margin-top:5px;
  font-weight:600;
}

/* ====== ORDER SUMMARY ====== */
.summary-wrap{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:24px;
  align-items:start;
}

.order-summary{
  padding:30px;
}

.order-summary h4{
  font-size:28px;
  color:var(--dark);
  margin-bottom:10px;
}

.order-summary > p{
  color:#666;
  line-height:1.7;
  margin-bottom:18px;
}

.order-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}

.order-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:#f8f8f8;
  border-radius:16px;
}

.order-item strong{
  display:block;
  color:var(--dark);
  margin-bottom:3px;
}

.order-item span{
  color:#666;
  font-size:14px;
}

.remove-btn{
  border:none;
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
  flex-shrink:0;
}

.remove-btn:hover{
  background:#000;
}

.empty-order{
  padding:18px;
  background:#fafafa;
  border:1px dashed #ddd;
  border-radius:16px;
  color:#777;
}

/* Carton counter */
.order-total{
  font-weight:800;
  font-size:18px;
  color:var(--dark);
  margin-top:8px;
}

.carton-warning{
  margin-top:10px;
  padding:12px 16px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  display:none;
}

.carton-warning.show{
  display:block;
}

.carton-warning.under{
  background:#fff3cd;
  color:#856404;
  border:1px solid #ffc107;
}

.carton-warning.over{
  background:#d1eddf;
  color:#1a5c35;
  border:1px solid #25a05b;
}

.order-meta{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:18px;
}

.order-input{
  width:100%;
  border:1px solid #ddd;
  border-radius:16px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
}

.order-input:focus{
  border-color:var(--red);
}

.order-note{
  width:100%;
  min-height:100px;
  border:1px solid #ddd;
  border-radius:18px;
  padding:15px;
  font-size:15px;
  margin-top:14px;
  resize:vertical;
  outline:none;
}

.order-note:focus{
  border-color:var(--red);
}

.order-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.order-help{
  background:linear-gradient(135deg,#111,#262626);
  color:#fff;
  border-radius:26px;
  padding:28px;
  box-shadow:0 10px 28px rgba(0,0,0,0.1);
}

.order-help h4{
  font-size:24px;
  margin-bottom:12px;
}

.order-help ul{
  padding-left:20px;
  line-height:1.9;
  color:#ddd;
}

/* ====== WHY US & COVERAGE ====== */
.why-grid,
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.why-card,
.coverage-card{
  padding:32px;
}

.why-card h4,
.coverage-card h4{
  font-size:22px;
  color:var(--red);
  margin-bottom:14px;
}
.why-card p,
.coverage-card p{
  color:#555;
  line-height:1.8;
}

.why-icon,
.coverage-icon{
  font-size:28px;
  margin-bottom:10px;
  display:block;
}

/* ====== CTA ====== */
.cta{
  background:linear-gradient(135deg,#111,#262626);
  color:#fff;
  border-radius:32px;
  padding:45px 32px;
  text-align:center;
  box-shadow:0 15px 30px rgba(0,0,0,0.14);
}

.cta h3{
  font-size:38px;
  margin-bottom:12px;
}

.cta p{
  color:#ddd;
  max-width:760px;
  margin:0 auto 26px;
  line-height:1.8;
}

/* ====== FOOTER ====== */
footer{
  background:#0f0f0f;
  color:#fff;
  margin-top:70px;
}

.footer-container{
  width:92%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  padding:55px 0 30px;
}

.footer-brand h2{
  color:var(--red);
  margin-bottom:10px;
  font-size:28px;
}

.footer-brand p,
.footer-contact p{
  color:#ccc;
  line-height:1.8;
}

.footer-links h4,
.footer-contact h4{
  margin-bottom:14px;
  font-size:18px;
}

.footer-links a{
  display:block;
  color:#ccc;
  margin-bottom:10px;
  transition:0.3s;
}

.footer-links a:hover{
  color:var(--red);
}

.footer-contact a{
  color:#ccc;
  transition:0.3s;
}

.footer-contact a:hover{
  color:#fff;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid #2b2b2b;
  color:#aaa;
  padding:18px 0;
  font-size:14px;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--green);
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:0 12px 24px rgba(0,0,0,0.22);
  font-weight:700;
  font-size:15px;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg{
  width:24px;
  height:24px;
  display:block;
}

.whatsapp-float:hover{
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 16px 28px rgba(0,0,0,0.26);
}

/* ====== SCROLL TO TOP ====== */
#scrollTopBtn{
  position:fixed;
  bottom:90px;
  right:22px;
  z-index:1100;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--dark);
  color:#fff;
  border:none;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.22);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s, transform 0.3s;
  display:flex;
  align-items:center;
  justify-content:center;
}

#scrollTopBtn.visible{
  opacity:1;
  pointer-events:auto;
}

#scrollTopBtn:hover{
  background:#333;
  transform:translateY(-2px);
}

/* ====== TOAST BUTTON RESTYLED ====== */
.toast-more{
  background:#2a2a2a;
  color:#fff;
  border-radius:12px;
  padding:9px 16px;
  font-size:13px;
  font-weight:700;
}

.toast-more:hover{ background:#3a3a3a; }

.toast-view{
  background:var(--red);
  color:#fff;
  border-radius:12px;
  padding:9px 16px;
  font-size:13px;
  font-weight:700;
}

.toast-view:hover{ background:#ab1712; }

/* Promo discount rows inside the totals box */
.totals-promo-divider{
  border-top:1.5px dashed #ddd;
  margin:6px 0;
}

.total-row.promo-discount{
  color:#1a5c35;
  font-weight:700;
}

.total-row.promo-discount span{
  font-size:13px;
}

.discount-amt{
  color:#1a5c35 !important;
  font-size:16px !important;
}

.total-row.promo-final{
  border-top:2px solid #1a5c35;
  margin-top:4px;
  padding-top:10px !important;
}

.total-row.promo-final span{
  font-size:15px;
  font-weight:700;
  color:#1a5c35;
}

.promo-final-amt{
  font-size:26px !important;
  color:#1a5c35 !important;
  font-weight:900 !important;
  letter-spacing:-0.5px;
}

.total-row.promo-note{
  background:#d1eddf;
  border-radius:10px;
  padding:8px 12px !important;
  margin-top:6px;
  font-size:13px;
  color:#1a5c35;
  font-weight:700;
}

.total-row.promo-nudge{
  background:#fff3cd;
  border-radius:10px;
  padding:8px 12px !important;
  margin-top:6px;
  font-size:13px;
  color:#856404;
  font-weight:700;
  display:block;
}

/* ====== ADD-TO-ORDER TOAST ====== */
.add-toast{
  position:fixed;
  bottom:90px;
  left:50%;
  transform:translateX(-50%) translateY(130px);
  z-index:2000;
  background:#111;
  color:#fff;
  border-radius:20px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 12px 32px rgba(0,0,0,0.32);
  transition:transform 0.38s cubic-bezier(0.34,1.46,0.64,1), opacity 0.3s;
  opacity:0;
  pointer-events:none;
  min-width:300px;
  max-width:460px;
  width:calc(100% - 40px);
}

.add-toast.show{
  transform:translateX(-50%) translateY(0);
  opacity:1;
  pointer-events:all;
}

.order-item-detail{
  flex:1;
  min-width:0;
}

.order-item-price{
  display:block;
  font-size:13px;
  color:#777;
  margin-top:4px;
  line-height:1.4;
}

.order-grand-total{
  background:#f8f8f8;
  border:1px solid #eee;
  border-radius:18px;
  padding:16px 18px;
  margin-top:16px;
}

.total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 0;
  font-size:14px;
  color:#555;
  border-bottom:1px solid #eee;
}

.total-row:last-of-type{ border-bottom:none; }

.total-row.grand{
  border-top:2px solid #ddd;
  margin-top:8px;
  padding-top:12px;
  border-bottom:none;
}

.total-row.grand span{
  font-size:16px;
  font-weight:700;
  color:var(--dark);
}

.total-row.grand strong{
  font-size:22px;
  font-weight:900;
  color:var(--red);
}

.price-est-note{
  font-size:11px;
  color:#aaa;
  margin-top:10px;
  line-height:1.6;
  font-style:italic;
}

/* ====== RESPONSIVE ====== */
@media (max-width:1024px){
  .hero-content,
  .about-grid,
  .info-grid,
  .footer-container,
  .summary-wrap,
  .why-grid,
  .coverage-grid{
    grid-template-columns:1fr;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-text h2{
    font-size:46px;
  }
}

@media (max-width:768px){
  .nav-links,
  .nav-actions{
    display:none;
  }

  .menu-toggle{
    display:inline-block;
  }

  .hero{
    min-height:auto;
  }

  .hero-text h2{
    font-size:34px;
  }

  .hero-text p{
    font-size:16px;
  }

  .products-grid{
    display:flex;
    align-items:flex-start; /* Fix: prevent all cards from stretching when one expands */
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:16px;
    padding-bottom:20px;
    -webkit-overflow-scrolling:touch;
  }

  .products-grid::-webkit-scrollbar{
    height:6px;
  }

  .products-grid::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:10px;
  }

  .products-grid::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:10px;
  }

  .products-grid .product-card{
    min-width:82%;
    flex-shrink:0;
    scroll-snap-align:center;
  }

  /* On mobile, dropdown is inline — no clipping issue since card is full width */
  .sku-dropdown{
    position:relative;
    top:0;
    border-top:1.5px solid var(--red);
    border-radius:0 0 14px 14px;
    box-shadow:none;
    max-height:none;
  }

  .order-meta{
    grid-template-columns:1fr;
  }

  .section-title h3,
  .cta h3{
    font-size:28px;
  }

  .logo-text h1{
    font-size:14px;
  }

  .logo-full{
    display:none;
  }

  .logo-short{
    display:block;
  }

  .whatsapp-float{
    right:16px;
    bottom:16px;
    padding:13px 16px;
  }

  .whatsapp-float span{
    display:none;
  }

  .whatsapp-float svg{
    width:26px;
    height:26px;
  }

  .order-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-card{
    display:none;
  }

  .hero-promo{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-promo-link{
    width:100%;
  }

  .animated-words{
    min-width:180px;
  }
}
