/* Warraich Food - Premium Stylesheet */
/* Variables */
:root {
  --green-900: #0d2818;
  --green-800: #1a4a2e;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-500: #52b788;
  --gold-500: #f4a900;
  --gold-400: #ffc107;
  --gold-300: #ffd166;
  --gold-100: #fff3cd;
  --cream-100: #fefae0;
  --cream-200: #f8edc8;
  --cream-300: #f0dbb4;
  --warm-100: #fdf6e3;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #999;
  --gray-500: #777;
  --gray-600: #555;
  --gray-700: #333;
  --gray-800: #222;
  --text: #2d2d2d;
  --text-light: #666;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-gold: 0 6px 25px rgba(244,169,0,.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Reset & Base */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color: inherit;text-decoration: none}

/* Container */
.container{max-width: 1120px;margin: 0 auto;padding: 0 24px}

/* Typography */
.section-label{
  display: inline-block;
  background: var(--gold-100);
  color: var(--green-800);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title{
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-800);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-sub{
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.text-center{text-align:center}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--font);
}
.btn:hover{transform: translateY(-2px)}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-800);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover{box-shadow: 0 8px 30px rgba(244,169,0,.45)}
.btn-secondary{
  background: var(--green-800);
  color: var(--white);
}
.btn-secondary:hover{background: var(--green-700)}
.btn-whatsapp{
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover{background: #1da851}
.btn-outline{
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover{background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7)}
.btn-lg{padding: 16px 40px; font-size: 1.05rem}
.btn-sm{padding: 8px 20px; font-size: .85rem}

/* Header */
.site-header{
  background: var(--green-800);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo{
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo img{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}
.site-logo-text{
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.site-logo-text span{
  color: var(--gold-500);
  display: block;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.main-nav{display: flex; align-items: center; gap: 8px}
.main-nav a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
.main-nav a:hover{background: rgba(255,255,255,.1); color: var(--white)}
.main-nav .nav-cart{position:relative;display:inline-flex;align-items:center;gap:4px;color:rgba(255,255,255,.8);font-size:.9rem;text-decoration:none;transition:color .2s;padding:6px 8px}
.main-nav .nav-cart:hover{color:var(--gold-500)}
.cart-count-badge{background:var(--gold-500);color:var(--green-900);font-size:.65rem;font-weight:700;min-width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;line-height:1;padding:0 4px}
.main-nav .nav-cta{
  background: var(--gold-500);
  color: var(--green-800);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.main-nav .nav-cta:hover{background: var(--gold-400)}

/* Hero */
.hero{
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,169,0,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after{
  content: '';
  position: absolute;
  bottom: -40%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content{position: relative; z-index: 1; text-align: center}
.hero-badge{
  display: inline-block;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-300);
}
.hero h1{
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.hero h1 span{color: var(--gold-500)}
.hero p{
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: .88;
  line-height: 1.65;
}
.hero-actions{display: flex; gap: 12px; justify-content: center; flex-wrap: wrap}
.hero-stats{
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 45px;
  flex-wrap: wrap;
}
.hero-stat{text-align: center}
.hero-stat .num{
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-500);
  display: block;
  line-height: 1.2;
}
.hero-stat .label{
  font-size: .78rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section{padding: 70px 0}

/* Product Cards */
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  text-align: center;
  transition: all .3s ease;
  border: 1px solid var(--cream-200);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .product-card-img { width:100%; height:180px; display:flex; align-items:center; justify-content:center; margin-bottom:10px; border-radius:10px; background:#faf8f0; overflow:hidden }
.product-card .product-card-img img { width:100%; height:100%; object-fit:cover; border-radius:10px; display:block }
.product-card .product-card-img .icon { font-size:3rem }
.product-card .best-seller-badge{
  position:absolute;
  top:10px;left:10px;
  background:linear-gradient(135deg,var(--gold-500),var(--gold-400));
  color:var(--green-900);
  font-size:.65rem;
  font-weight:800;
  padding:3px 10px;
  border-radius:50px;
  z-index:2;
  box-shadow:0 2px 8px rgba(244,169,0,.4);
  letter-spacing:.3px;
  white-space:nowrap;
}
.product-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before{opacity: 1}
.product-card .icon{
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}
.product-card .badge{
  display: inline-block;
  background: var(--gold-100);
  color: var(--green-800);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.product-card h3{
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 3px;
  line-height: 1.3;
}
.product-card .weight{
  color: var(--text-light);
  font-size: .82rem;
  margin-bottom: 6px;
}
.product-card .price{
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-800);
  margin-bottom: 14px;
}
.product-card .price span{
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-light);
}
.product-card .desc{
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-card .btn-row{
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: auto;
}
.product-card .btn-row .btn{
  flex: 1;
  padding: 8px 8px;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 8px;
}
.product-card .btn-row .btn-primary{
  background: linear-gradient(135deg, #1a4a2e, #2d6a4f);
  color: #fff;
}

/* Product Carousel */
.product-carousel{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-track{
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
  padding: 4px 0;
}
.carousel-track .product-card{
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
}
.carousel-arrow{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-300);
  color: var(--green-800);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.carousel-arrow:hover{
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: var(--shadow-md);
}
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-300);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.carousel-dot.active{
  background: var(--green-800);
  transform: scale(1.2);
}
@media(max-width: 1024px){
  .carousel-track .product-card{flex: 0 0 calc(50% - 10px);min-width:220px}
}
@media(max-width: 768px){
  .carousel-arrow{display:none}
  .carousel-track{overflow-x:auto;gap:14px;scroll-snap-type:x mandatory;padding-bottom:8px}
  .carousel-track .product-card{flex: 0 0 85%;scroll-snap-align:start;min-width:200px}
  .carousel-dots{margin-top:14px}
}
.product-card .btn-row .btn-outline{
  border: 2px solid #8B5E3C;
  color: #8B5E3C;
  background: transparent;
}
.product-card .btn-row .btn-outline:hover{
  background: #8B5E3C;
  color: #fff;
}

/* Features Grid */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-item{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--cream-200);
  transition: all .3s;
}
.feature-item:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-item .emoji{font-size: 2.5rem; margin-bottom: 10px; display: block}
.feature-item h4{
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 4px;
}
.feature-item p{font-size: .88rem; color: var(--text-light); line-height: 1.5}

/* Payment Cards */
.payment-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.payment-card{
  background: var(--white);
  border: 2px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all .25s;
}
.payment-card:hover{border-color: var(--gold-500); transform: translateY(-2px)}
.payment-card .icon{font-size: 2.2rem; margin-bottom: 6px; display: block}
.payment-card h4{
  font-size: .95rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 4px;
}
.payment-card .acct{
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.payment-card p{font-size: .8rem; color: var(--text-light)}

/* Delivery Options */
.delivery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.delivery-card{
  background: var(--white);
  border: 2px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all .25s;
}
.delivery-card:hover{border-color: var(--gold-500); transform: translateY(-2px)}
.delivery-card .icon{font-size: 2.2rem; margin-bottom: 8px; display: block}
.delivery-card h4{font-size: 1rem; font-weight: 700; color: var(--green-800); margin-bottom: 4px}
.delivery-card p{font-size: .85rem; color: var(--text-light)}
.delivery-card .charge{font-size: .8rem; color: var(--gold-500); font-weight: 700; margin-top: 4px}

/* City Grid */
.city-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.city-tag{
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-700);
  transition: all .2s;
}
.city-tag:hover{
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

/* Coming Soon */
.soon-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.soon-card{
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
}
.soon-card:hover{background: rgba(255,255,255,.1); transform: translateY(-3px)}
.soon-card .emoji{font-size: 2.8rem; margin-bottom: 10px; display: block}
.soon-card h4{font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--white)}
.soon-card p{font-size: .85rem; opacity: .75; line-height: 1.5}
.soon-badge{
  display: inline-block;
  background: var(--gold-500);
  color: var(--green-800);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* Contact Grid */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-item{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--cream-200);
  transition: all .3s;
}
.contact-item:hover{transform: translateY(-3px); box-shadow: var(--shadow-md)}
.contact-item .emoji{font-size: 2rem; margin-bottom: 8px; display: block}
.contact-item h4{font-size: .9rem; font-weight: 700; color: var(--green-800); margin-bottom: 6px}
.contact-item a{color: var(--green-700); font-weight: 600; font-size: .95rem}
.contact-item a:hover{color: var(--green-800)}
.contact-item p{font-size: .9rem; color: var(--text-light)}

/* Footer */
.site-footer{
  background: var(--green-900);
  color: rgba(255,255,255,.6);
  padding: 40px 0 30px;
  font-size: .85rem;
}
.site-footer .inner{display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px}
.site-footer a{color: var(--gold-500); text-decoration: none}
.site-footer a:hover{text-decoration: underline}
.site-footer .social-links{display: flex; gap: 15px}
.site-footer .social-links a{color: rgba(255,255,255,.6); font-size: 1.2rem}
.site-footer .social-links a:hover{color: var(--gold-500)}

/* CTA Banner */
.cta-banner{
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2{font-size: 1.8rem; font-weight: 800; margin-bottom: 8px}
.cta-banner p{font-size: 1rem; opacity: .85; margin-bottom: 20px}
.cta-banner .btns{display: flex; gap: 12px; justify-content: center; flex-wrap: wrap}

/* Shipping Box */
.shipping-box{
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff8e1, var(--cream-100));
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 5px solid var(--gold-500);
}
.shipping-box h3{font-size: 1.1rem; margin-bottom: 16px; color: var(--green-800)}
.shipping-box ul{list-style: none; padding: 0}
.shipping-box ul li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  display: flex;
  gap: 10px;
  font-size: .92rem;
  line-height: 1.5;
}
.shipping-box ul li:last-child{border: none}
.shipping-box ul li::before{content: "✓"; color: var(--green-600); font-weight: 700; flex-shrink: 0}

/* Product Detail Page */
.product-hero{
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.product-hero .two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-hero .info{}
.product-hero .info .breadcrumb{font-size: .82rem; opacity: .6; margin-bottom: 12px}
.product-hero .info .breadcrumb a{color: var(--gold-300)}
.product-hero .info h1{font-size: 2.6rem; font-weight: 900; line-height: 1.15; margin-bottom: 12px}
.product-hero .info h1 span{color: var(--gold-500)}
.product-hero .info .sub{font-size: 1rem; opacity: .85; margin-bottom: 15px; line-height: 1.6}
.product-hero .info .price-display{font-size: 2.4rem; font-weight: 900; color: var(--gold-500); margin-bottom: 6px}
.product-hero .info .weight-display{font-size: 1rem; opacity: .7; margin-bottom: 20px}
.product-hero .info .actions{display: flex; gap: 12px; flex-wrap: wrap}
.product-hero .visual{text-align: center}
.product-hero .visual .emoji-big{font-size: 10rem; line-height: 1; display: block}
.product-hero .visual .trust-row{display: flex; gap: 20px; justify-content: center; margin-top: 20px}
.product-hero .visual .trust-item{text-align: center}
.product-hero .visual .trust-item .num{font-size: 1rem; font-weight: 800; color: var(--gold-500); display: block}
.product-hero .visual .trust-item .label{font-size: .75rem; opacity: .65}

/* How It Works */
.steps-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: start;
  position: relative;
}
.step-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-500, #f4a900);
  z-index: 2;
  position: relative;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse{
  0%,100%{transform:translateX(0);opacity:.7}
  50%{transform:translateX(6px);opacity:1}
}
.step-card{
  text-align: center;
  padding: 30px 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
.step-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.step-card .step-icon{
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-300));
  color: var(--green-800);
  position: relative;
}
.step-card .step-icon .num{
  position: absolute;
  top: -4px; right: -4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.step-card h4{font-size: 1rem; font-weight: 700; color: var(--green-800); margin-bottom: 6px}
.step-card p{font-size: .82rem; color: var(--text-light); line-height: 1.55; max-width: 220px; margin: 0 auto}

/* Why Box */
.why-box{
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--gold-500);
}
.why-box h4{font-size: 1rem; font-weight: 700; color: var(--green-800); margin-bottom: 10px}
.why-box ul{list-style: none; padding: 0}
.why-box ul li{padding: 6px 0; display: flex; gap: 8px; font-size: .9rem; line-height: 1.5}
.why-box ul li::before{content: "✓"; color: var(--green-600); font-weight: 700; flex-shrink: 0}

/* Two Column */
.two-col{display: grid; grid-template-columns: 1fr 1fr; gap: 30px}

/* FAQ */
.faq-list{max-width: 720px; margin: 0 auto}
.faq-item{
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: all .2s;
}
.faq-item:hover{border-color: var(--gold-300)}
.faq-item h4{font-size: .95rem; font-weight: 700; color: var(--green-800); margin-bottom: 4px; cursor: pointer}
.faq-item p{font-size: .88rem; color: var(--text-light); line-height: 1.5}

/* Pickup Points */
.points-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.point-card{
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all .2s;
}
.point-card:hover{border-color: var(--gold-300)}
.point-card .tag{
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.point-card .tag-daewoo{background: #e8f4fd; color: #006699}
.point-card .tag-physical{background: #e8f5e9; color: #2e7d32}
.point-card h4{font-size: .9rem; font-weight: 700; color: var(--green-800); margin-bottom: 2px}
.point-card .city{font-size: .8rem; color: var(--gold-500); font-weight: 600}
.point-card .addr{font-size: .8rem; color: var(--text-light); margin-top: 3px}

/* Form Styles */
.form-group{margin-bottom: 18px}
.form-group label{display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text)}
.form-group input,.form-group textarea,.form-group select{
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font);
  transition: all .2s;
  background: var(--white);
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea{resize: vertical; min-height: 90px}
.form-group input[type="checkbox"]{width: auto; padding: 0; border: none; box-shadow: none; display: inline; margin-right: 6px; vertical-align: middle}
.form-row{display: grid; grid-template-columns: 1fr 1fr; gap: 16px}

/* Selection Cards */
.select-grid{display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px}
.select-card{
  background: var(--cream-100);
  border: 2px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.select-card:hover{border-color: var(--gold-500); transform: translateY(-2px)}
.select-card.selected{border-color: var(--green-600); background: #e8f5e9}
.select-card input{display: none}
.select-card .icon{font-size: 2rem; margin-bottom: 6px; display: block}
.select-card h4{font-size: .95rem; font-weight: 700; color: var(--green-800); margin-bottom: 2px}
.select-card p{font-size: .82rem; color: var(--text-light)}
.select-card .amt{font-size: 1.1rem; font-weight: 800; color: var(--green-800); margin-top: 4px}

/* Success Page */
.success-wrap{text-align: center; padding: 50px 20px; max-width: 550px; margin: 0 auto}
.success-wrap .check{font-size: 4rem; margin-bottom: 16px; display: block}
.success-wrap h2{font-size: 1.8rem; color: var(--green-800); margin-bottom: 8px}
.success-wrap .order-ref{font-size: 1.4rem; font-weight: 900; color: var(--gold-500); margin: 12px 0}
.success-wrap .order-details{text-align: left; display: inline-block; margin: 16px 0}
.success-wrap .order-details p{padding: 6px 0; font-size: .95rem}
.success-wrap .order-details strong{color: var(--green-800)}

/* Responsive */
/* ===== TOP BAR ===== */
.top-bar{
  background: var(--green-900);
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.top-bar-item{display:flex;align-items:center;gap:4px}
.top-bar-item a{color:var(--gold-300);text-decoration:none;font-weight:500}
.top-bar-item a:hover{color:var(--gold-500)}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar{
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  padding: 8px 0;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
}
.announcement-inner{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap}
.announcement-text{display:flex;align-items:center;gap:6px}
.announcement-cta{
  background: var(--green-800);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  transition: all .2s;
}
.announcement-cta:hover{background: var(--green-700); color: var(--white)}

/* ===== DROPDOWN NAV ===== */
.nav-dropdown{position:relative}
.nav-dropdown .drop-trigger{cursor:default}
.nav-dropdown .drop-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  min-width: 220px;
  padding: 8px 0;
  z-index: 1001;
  border: 1px solid var(--cream-200);
}
.nav-dropdown:hover .drop-menu,
.nav-dropdown:focus-within .drop-menu{display:block}
.nav-dropdown .drop-menu a{
  display:flex;
  align-items:center;
  gap:6px;
  padding: 10px 18px;
  color: var(--text) !important;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all .15s;
}
.nav-dropdown .drop-menu a:hover{background: var(--cream-100); color: var(--green-800) !important}

/* ===== HAMBURGER MENU ===== */
.nav-toggle-input{display:none}
.nav-toggle-label{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:4px;
}
.nav-toggle-label span{
  display:block;
  width:24px;
  height:2px;
  background: var(--white);
  border-radius:2px;
  transition:all .3s ease;
}
#navToggle:checked ~ .nav-toggle-label span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
#navToggle:checked ~ .nav-toggle-label span:nth-child(2){opacity:0}
#navToggle:checked ~ .nav-toggle-label span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ===== ENHANCED FOOTER ===== */
.site-footer{
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 50px 0 40px;
}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.footer-logo img{width:44px;height:44px;border-radius:50%;object-fit:cover;border:2px solid var(--gold-500);flex-shrink:0}
.footer-logo-text{color:var(--white);font-size:1.05rem;font-weight:800;line-height:1.2}
.footer-logo-text span{color:var(--gold-500);display:block;font-size:.65rem;font-weight:500;text-transform:uppercase;letter-spacing:1.5px}
.footer-brand p{font-size:.82rem;line-height:1.6;margin-bottom:14px;opacity:.7}
.footer-social{display:flex;gap:10px}
.footer-social a{
  display:flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.footer-social a:hover{background: var(--gold-500); color: var(--green-900)}
.footer-col h4{
  font-size:.85rem;
  font-weight:700;
  color: var(--gold-500);
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:14px;
}
.footer-col ul{list-style:none;padding:0}
.footer-col ul li{margin-bottom:8px}
.footer-col ul li a{
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size:.84rem;
  transition: all .2s;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.footer-col ul li a:hover{color: var(--gold-500); padding-left:4px}
.footer-contact-item{font-size:.78rem;opacity:.7;display:inline-flex;align-items:center;gap:4px}
.footer-col ul li .footer-contact-item{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
.footer-contact-item a{color:var(--gold-300);text-decoration:none}
.footer-contact-item a:hover{color:var(--gold-500)}
.footer-payments li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.footer-payments li:last-child{border-bottom:none}
.footer-payments .pm-icon{font-size:1.3rem;flex-shrink:0}
.footer-payments li div strong{display:block;font-size:.84rem;color:rgba(255,255,255,.8)}
.footer-payments li div span{font-size:.78rem;opacity:.6}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p{font-size:.78rem;opacity:.5}
.footer-bottom a{color:var(--gold-500);text-decoration:none}

/* ===== SCROLL TO TOP ===== */
#scrollTop{
  position:fixed;
  bottom:85px;
  right:20px;
  z-index:9997;
  width:42px;
  height:42px;
  border-radius:50%;
  background: var(--green-800);
  color: var(--white);
  border: 2px solid var(--gold-500);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:1.2rem;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
  transition:all .3s ease;
}
#scrollTop:hover{background: var(--green-700); transform:translateY(-3px)}

/* ===== FLOATING SEAL BADGE ===== */
.floating-seal{
  position:fixed;
  top:130px;
  right:15px;
  z-index:998;
  width:72px;
  height:72px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--green-800),var(--green-700));
  border:3px solid var(--gold-500);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.15);
  animation:sealPulse 3s ease-in-out infinite;
  cursor:default;
}
.floating-seal .seal-icon{font-size:1.6rem;line-height:1}
.floating-seal .seal-text{font-size:.45rem;font-weight:800;color:var(--gold-500);text-transform:uppercase;letter-spacing:.5px;line-height:1.1;margin-top:2px;text-align:center}
@keyframes sealPulse{0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(0,0,0,.15)}50%{transform:scale(1.05);box-shadow:0 6px 30px rgba(244,169,0,.25)}}

/* ===== TRUST BADGES ROW ===== */
.trust-badges{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  margin-top:40px;
}
.trust-badge-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  padding:24px 14px;
  background:var(--white);
  border-radius:var(--radius-md);
  border:1px solid var(--cream-200);
  transition:all .3s ease;
  text-align:center;
}
.trust-badge-item:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--gold-300);
}
.trust-badge-item .tb-icon{
  width:52px;height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  transition:all .3s;
  flex-shrink:0;
}
.trust-badge-item:nth-child(1) .tb-icon{background:#d1fae5;color:#16a34a}
.trust-badge-item:nth-child(2) .tb-icon{background:#fef3c7;color:#d49500}
.trust-badge-item:nth-child(3) .tb-icon{background:#dbeafe;color:#3b82f6}
.trust-badge-item:nth-child(4) .tb-icon{background:#ede9fe;color:#8b5cf6}
.trust-badge-item:nth-child(5) .tb-icon{background:#fce7f3;color:#ec4899}
.trust-badge-item span:last-child{font-size:.82rem;font-weight:600;color:var(--green-800);line-height:1.3}

/* ===== WHY CHOOSE US (replaced by .choose-grid) ===== */

/* ===== FADE-IN ANIMATION ===== */
.fade-in{opacity:0;transform:translateY(30px);transition:all .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ===== HERO DECORATIVE LEAF ===== */
.hero-leaf{
  position:absolute;
  font-size:8rem;
  opacity:.04;
  pointer-events:none;
  animation:leafFloat 8s ease-in-out infinite;
}
.hero-leaf.l1{top:-5%;left:-5%;transform:rotate(-30deg);animation-delay:0s}
.hero-leaf.l2{bottom:-10%;right:-8%;transform:rotate(120deg);animation-delay:3s;font-size:10rem}
@keyframes leafFloat{0%,100%{transform:rotate(-30deg) translateY(0)}50%{transform:rotate(-30deg) translateY(-20px)}}
.hero-leaf.l2{animation-name:leafFloat2}
@keyframes leafFloat2{0%,100%{transform:rotate(120deg) translateY(0)}50%{transform:rotate(120deg) translateY(-15px)}}

/* Why Choose Grid */
.choose-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.choose-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--cream-200);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.choose-card::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.choose-card:hover::before{transform: scaleX(1)}
.choose-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--gold-300);
}
.choose-icon{
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-300));
  transition: all .35s ease;
}
.choose-card:hover .choose-icon{
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}
.choose-card h4{
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 8px;
}
.choose-card p{
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}
@media(max-width:768px){
  .choose-grid{grid-template-columns:1fr;gap:16px}
  .choose-card{padding:28px 20px}
}

/* Testimonial Carousel */
.testimonial-carousel{
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}
.testimonial-track{
  overflow: hidden;
}
.testimonial-slide{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  border: 1px solid var(--cream-200);
}
.testimonial-slide .stars{
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-slide .text{
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-slide .text::before{content: '\201C'; font-size: 2.5rem; color: var(--gold-500); font-style: normal; line-height: 0; vertical-align: -8px; margin-right: 4px}
.testimonial-slide .text::after{content: '\201D'; font-size: 2.5rem; color: var(--gold-500); font-style: normal; line-height: 0; vertical-align: -4px; margin-left: 4px}
.testimonial-slide .author{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-slide .author .avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-slide .author .info strong{display:block;font-size:.9rem;color:var(--green-800)}
.testimonial-slide .author .info span{font-size:.8rem;color:var(--text-light)}
.testimonial-nav{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-nav button{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cream-300);
  background: var(--white);
  color: var(--green-800);
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-nav button:hover{
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.testimonial-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.testimonial-dots .tdot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream-300);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.testimonial-dots .tdot.active{background: var(--green-800); transform: scale(1.2)}
@media(max-width:768px){
  .testimonial-slide{padding:28px 20px}
  .testimonial-slide .text{font-size:.95rem}
}
/* ===== SECTION DIVIDER ===== */
.section-divider{
  width:60px;height:3px;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-300));
  border-radius:2px;
  margin:0 auto 20px;
}

/* ===== WHATSAPP LIVE DOT ===== */
.wa-live-dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:50%;
  background:#25D366;
  margin-right:4px;
  animation:livePulse 1.5s ease-in-out infinite;
  vertical-align:middle;
}
@keyframes livePulse{0%,100%{opacity:1}50%{opacity:.3}}

/* ===== MOBILE STICKY ORDER BAR ===== */
.mobile-order-bar{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:9996;
  background:var(--white);
  padding:10px 16px;
  border-top:2px solid var(--gold-500);
  box-shadow:0 -4px 20px rgba(0,0,0,.1);
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.mobile-order-bar span{font-size:.82rem;font-weight:600;color:var(--green-800)}
.mobile-order-bar .btn{font-size:.82rem;padding:10px 24px;flex-shrink:0}
@media(max-width:768px){
  .mobile-order-bar{display:flex}
  .floating-seal{display:none}
  #waWidget{bottom:70px!important}
  #scrollTop{bottom:70px!important}
}

/* ===== GALLERY ===== */
.page-hero{
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
  color: var(--white);
  padding: 50px 0 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1{font-size:2.4rem;font-weight:900;line-height:1.15;margin-bottom:8px}
.page-hero h1 span{color:var(--gold-500)}
.page-hero p{font-size:1.05rem;opacity:.8;max-width:550px;margin:0 auto}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:24px;
}
.gallery-card{
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--cream-200);
  transition:all .3s;
}
.gallery-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.gallery-img{
  height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.gallery-img .gi-emoji{font-size:5rem;opacity:.7}
.gallery-info{padding:18px 20px}
.gallery-info h3{font-size:1.05rem;font-weight:800;color:var(--green-800);margin-bottom:4px}
.gallery-info p{font-size:.85rem;color:var(--text-light);margin-bottom:10px;line-height:1.5}
.gallery-tag{
  display:inline-block;
  font-size:.75rem;
  font-weight:700;
  background:var(--gold-100);
  color:var(--green-800);
  padding:3px 12px;
  border-radius:50px;
  margin-bottom:10px;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(310px,1fr));
  gap:24px;
}
.video-card{
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid var(--cream-200);
  transition:all .3s;
}
.video-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.video-thumb{
  height:200px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  cursor:pointer;
  position:relative;
}
.video-thumb .play-icon{
  font-size:3.5rem;
  color:rgba(255,255,255,.8);
  text-shadow:0 2px 10px rgba(0,0,0,.3);
  transition:all .2s;
}
.video-card:hover .play-icon{color:var(--gold-500);transform:scale(1.1)}
.video-thumb .video-label{
  font-size:.8rem;
  font-weight:600;
  color:rgba(255,255,255,.7);
  background:rgba(0,0,0,.3);
  padding:4px 14px;
  border-radius:50px;
}
.video-info{padding:16px 20px}
.video-info h4{font-size:.95rem;font-weight:700;color:var(--green-800);margin-bottom:2px}
.video-info p{font-size:.82rem;color:var(--text-light);line-height:1.5}

/* ===== COMING SOON CTA ===== */
.soon-product-tag{
  display:inline-block;
  background:var(--gold-100);
  color:var(--green-800);
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:4px 14px;
  border-radius:50px;
  margin-bottom:8px;
}

/* ===== SELECT CARD HOVER FIX ===== */
.select-card input{display:none}

/* ===== RESPONSIVE - PUBLIC SITE ===== */
/* Tablet landscape */
@media(max-width: 1024px){
  .container{padding: 0 20px}
  .product-hero .two-col{gap: 30px}
  .product-hero .info h1{font-size: 2rem}
  .product-hero .visual .emoji-big{font-size: 7rem}
  .footer-grid{grid-template-columns: 1fr 1fr 1fr;gap:20px;padding:36px 0 28px}
  .footer-contact-item{font-size:.74rem}
  .footer-col ul li .footer-contact-item{white-space:normal}
  .hero h1{font-size:2.6rem}
  .section-title{font-size:1.8rem}
  .product-grid{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
  .gallery-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:18px}
  .video-grid{grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px}
  .steps-grid{grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;gap:6px}
  .step-arrow{font-size:1.4rem}
  .trust-badges{grid-template-columns:repeat(3,1fr)}
}

/* Tablet & mobile nav */
@media(max-width: 900px){
  .header-inner{flex-wrap:wrap}
  .nav-toggle-label{display:flex}
  .main-nav{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--green-900);flex-direction:column;gap:2px;z-index:1000;padding:70px 20px 20px;overflow-y:auto}
  #navToggle:checked ~ .main-nav{display:flex}
  .main-nav a{width:100%;padding:12px 16px;border-radius:6px;color:rgba(255,255,255,.8);font-size:.9rem;display:flex;align-items:center;gap:8px;min-height:44px}
  .main-nav a:hover{background:rgba(255,255,255,.06);color:#fff}
  .main-nav .nav-cta{margin-top:8px;justify-content:center}
  .nav-dropdown .drop-trigger{width:100%;padding:10px 16px;display:flex;align-items:center;justify-content:space-between;color:rgba(255,255,255,.8);font-size:.9rem;border-radius:6px;min-height:44px}
  .nav-dropdown .drop-trigger:hover{background:rgba(255,255,255,.06);color:#fff}
  .nav-dropdown .drop-menu{position:static;box-shadow:none;border:none;background:rgba(0,0,0,.15);border-radius:6px;padding:2px 0;margin:2px 0 2px 8px;opacity:1;visibility:visible;transform:none}
  .nav-dropdown .drop-menu a{padding:10px 16px;font-size:.82rem;min-height:38px}
  .top-bar-item.top-bar-wa{display:none}
  .announcement-cta{display:none}
  .container{padding:0 16px}
  .site-header{padding:12px 0}
  .site-logo img{width:40px;height:40px}
  .site-logo-text{font-size:1rem}
  .site-logo-text span{font-size:.6rem}
  .hero h1{font-size:2rem}
  .hero p{font-size:1rem}
  .section-title{font-size:1.5rem}
}

/* Tablet portrait */
@media(max-width: 768px){
  .container{padding: 0 16px}
  .top-bar{padding:4px 0;font-size:.72rem}
  .top-bar-item.top-bar-wa{display:none}
  .announcement-bar{padding:6px 0}
  .announcement-text{font-size:.7rem}
  .announcement-cta{font-size:.65rem;padding:3px 10px}

  /* Hero */
  .hero{padding:40px 0 35px}
  .hero h1{font-size:1.7rem}
  .hero p{font-size:.95rem;margin-bottom:20px}
  .hero-actions{gap:8px}
  .hero-actions .btn{padding:12px 24px;font-size:.85rem}
  .hero-stats{gap:16px;margin-top:30px}
  .hero-stat .num{font-size:1.2rem}
  .hero-stat .label{font-size:.7rem}

  /* Sections */
  section{padding:40px 0}
  .section-title{font-size:1.4rem}
  .section-sub{font-size:.9rem;margin-bottom:24px}
  .two-col{grid-template-columns:1fr;gap:20px}
  .product-hero{padding:40px 0}
  .product-hero .two-col{grid-template-columns:1fr;gap:24px}
  .product-hero .info h1{font-size:1.6rem}
  .product-hero .info .sub{font-size:.9rem}
  .product-hero .info .price-display{font-size:1.8rem}
  .product-hero .info .actions{gap:8px}
  .product-hero .info .actions .btn{padding:10px 20px;font-size:.85rem;flex:1;justify-content:center}
  .product-hero .visual .emoji-big{font-size:5rem}
  .product-hero .visual .trust-row{gap:16px}
  .product-hero .visual .trust-item .num{font-size:.85rem}
  .product-hero .visual .trust-item .label{font-size:.7rem}

  /* Product Grid */
  .product-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
  .product-card{padding:22px 16px 18px}
  .product-card .product-card-img{min-height:120px}
  .product-card .product-card-img img{max-height:160px}
  .product-card h3{font-size:1.05rem}
  .product-card .weight{font-size:.78rem}
  .product-card .price{font-size:1.25rem;margin-bottom:10px}
  .product-card .btn-row .btn{padding:7px 6px;font-size:.75rem}

  /* Grid layouts */
  .feature-grid{grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:16px}
  .feature-item{padding:20px 16px}
  .payment-grid{grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px}
  .payment-card{padding:18px 14px}
  .delivery-grid{grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px}
  .delivery-card{padding:18px}
  .steps-grid{grid-template-columns:1fr 1fr;gap:14px}
  .step-arrow{display:none}
  .step-card{padding:20px 14px}
  .step-card .step-icon{width:52px;height:52px;font-size:1.2rem}
  .step-card h4{font-size:.9rem}
  .trust-badges{grid-template-columns:repeat(3,1fr);gap:12px}
  .trust-badge-item{padding:16px 10px}
  .trust-badge-item .tb-icon{width:42px;height:42px;font-size:1.1rem}
  .soon-grid{grid-template-columns:1fr;gap:16px}
  .soon-card{padding:24px 18px}
  .contact-grid{grid-template-columns:1fr;gap:14px}
  .contact-item{padding:18px}
  .contact-inquiry-form input,.contact-inquiry-form textarea{font-size:.82rem}

  /* Gallery */
  .gallery-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px}
  .gallery-img{height:160px}
  .video-grid{grid-template-columns:1fr;gap:16px}
  .video-thumb{height:180px}
  .page-hero{padding:35px 0 30px}
  .page-hero h1{font-size:1.6rem}

  /* FAQ */
  .faq-item{padding:14px 16px}
  .faq-item h4{font-size:.88rem}
  .faq-item p{font-size:.82rem}

  /* Form */
  .form-row{grid-template-columns:1fr;gap:0}
  .form-group input,.form-group textarea,.form-group select{padding:10px 12px;font-size:.9rem}
  .select-grid{grid-template-columns:1fr 1fr;gap:10px}

  /* CTA */
  .cta-banner{padding:40px 0}
  .cta-banner h2{font-size:1.3rem}
  .cta-banner p{font-size:.9rem}
  .cta-banner .btns{gap:8px;flex-direction:column;align-items:center}
  .cta-banner .btns .btn{width:100%;max-width:280px;justify-content:center}

  /* Why Box */
  .why-box{padding:18px}
  .why-box h4{font-size:.9rem}
  .why-box ul li{font-size:.82rem}

  /* City Grid */
  .city-grid{grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:6px}
  .city-tag{padding:8px 6px;font-size:.75rem}

  /* Points Grid */
  .points-grid{grid-template-columns:1fr;gap:10px}

  /* Shipping Box */
  .shipping-box{padding:24px 18px}
  .shipping-box h3{font-size:1rem}
  .shipping-box ul li{font-size:.85rem;padding:8px 0}

  /* Success */
  .success-wrap{padding:30px 16px}
  .success-wrap h2{font-size:1.3rem}
  .success-wrap .order-ref{font-size:1.1rem}

  /* Footer */
  .footer-grid{grid-template-columns:1fr;gap:24px;padding:32px 0 20px;text-align:center}
  .footer-logo{justify-content:center}
  .footer-brand p{text-align:center;font-size:.8rem}
  .footer-social{justify-content:center}
  .footer-col{text-align:center}
  .footer-col h4{font-size:.8rem;margin-bottom:10px}
  .footer-col ul li{margin-bottom:6px}
  .footer-col ul li a{font-size:.8rem;justify-content:center}
  .footer-contact-item{justify-content:center;font-size:.8rem}
  .footer-payments li{justify-content:center}

  /* Trust Badges */
  .trust-badges{gap:14px;margin-top:24px}
  .trust-badge-item{padding:14px 8px}
  .trust-badge-item .tb-icon{width:40px;height:40px;font-size:1.1rem}

  /* Product Gallery */
  .product-gallery{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:8px}
  .product-gallery img{height:120px}
  .nutrition-grid{grid-template-columns:repeat(auto-fit,minmax(100px,1fr));gap:8px}
  .nutrition-item{padding:10px}
  .nutrition-item .n-val{font-size:1rem}
  .nutrition-item .n-label{font-size:.72rem}
  .feature-list li{font-size:.85rem;padding:8px 0 8px 28px}
  .feature-list li::before{top:8px;font-size:.9rem}

  /* Quiz */
  .quiz-card{padding:18px!important}
  .quiz-result{padding:20px!important}
  .quiz-result h3{font-size:1.1rem}
}

/* Small phones */
@media(max-width: 480px){
  .container{padding: 0 12px}
  .top-bar-item:not(.top-bar-wa):first-child{font-size:.68rem}
  .announcement-text{font-size:.65rem;text-align:center;width:100%}
  .announcement-cta{display:none}
  .site-header{padding:10px 0}
  .site-logo img{width:36px;height:36px}
  .site-logo-text{font-size:.9rem}
  .site-logo-text span{font-size:.55rem}

  .hero{padding:30px 0 28px}
  .hero h1{font-size:1.4rem}
  .hero p{font-size:.85rem}
  .hero-badge{font-size:.72rem;padding:5px 14px}
  .hero-actions .btn{font-size:.8rem;padding:10px 18px}
  .hero-stats{gap:12px;margin-top:20px}
  .hero-stat .num{font-size:1rem}
  .hero-stat .label{font-size:.65rem}

  section{padding:30px 0}
  .section-title{font-size:1.2rem}
  .section-sub{font-size:.82rem;margin-bottom:18px}
  .product-hero{padding:28px 0}
  .product-hero .info h1{font-size:1.3rem}
  .product-hero .info .sub{font-size:.82rem}
  .product-hero .info .price-display{font-size:1.5rem}
  .product-hero .info .weight-display{font-size:.85rem}
  .product-hero .visual .emoji-big{font-size:3.5rem}

  .product-grid{grid-template-columns:1fr;gap:14px}
  .product-card{padding:20px 14px}
  .product-card .product-card-img{height:140px}
  .product-card h3{font-size:1rem}
  .product-card .price{font-size:1.2rem}
  .product-card .weight{font-size:.82rem}

  .payment-grid{grid-template-columns:1fr;gap:10px}
  .payment-card{padding:14px}
  .delivery-grid{grid-template-columns:1fr;gap:10px}

  .steps-grid{grid-template-columns:1fr 1fr;gap:10px}
  .step-arrow{display:none}
  .step-card{padding:14px 10px}
  .step-card .step-icon{width:44px;height:44px;font-size:1rem}
  .step-card .step-icon .num{width:18px;height:18px;font-size:.6rem}
  .step-card h4{font-size:.82rem}
  .step-card p{font-size:.78rem}
  .trust-badges{grid-template-columns:repeat(2,1fr);gap:10px}
  .trust-badge-item{padding:12px 8px}
  .trust-badge-item .tb-icon{width:36px;height:36px;font-size:.95rem}
  .trust-badge-item span:last-child{font-size:.75rem}

  .gallery-grid{grid-template-columns:1fr;gap:12px}
  .video-grid{grid-template-columns:1fr;gap:12px}
  .page-hero{padding:28px 0 24px}
  .page-hero h1{font-size:1.3rem}
  .page-hero p{font-size:.85rem}

  .faq-item{padding:12px 14px}
  .faq-item h4{font-size:.82rem}
  .faq-item p{font-size:.78rem}

  .cta-banner h2{font-size:1.1rem}
  .cta-banner p{font-size:.82rem}

  .footer-grid{gap:18px;padding:24px 0 16px}
  .footer-col h4{font-size:.75rem}
  .footer-col ul li a{font-size:.75rem}
  .footer-bottom p{font-size:.7rem}
  .footer-contact-item{font-size:.75rem}
  .footer-contact-form input,.footer-contact-form textarea{font-size:.75rem!important}

  .trust-badges{gap:10px;padding:12px}
  .trust-badge-item{font-size:.7rem}

  .city-grid{grid-template-columns:repeat(auto-fill,minmax(80px,1fr));gap:4px}
  .city-tag{padding:6px 4px;font-size:.7rem}

  .select-grid{grid-template-columns:1fr;gap:8px}
  .shipping-box{padding:18px 14px}

  .product-gallery{grid-template-columns:repeat(auto-fill,minmax(100px,1fr));gap:6px}
  .product-gallery img{height:90px}
  .nutrition-grid{grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:6px}
  .nutrition-item{padding:8px}
  .nutrition-item .n-val{font-size:.85rem}

  .soon-card{padding:20px 14px}
  .soon-card .emoji{font-size:2.2rem}
  .soon-card h4{font-size:.95rem}
  .soon-card p{font-size:.8rem}

  .contact-item{padding:14px}
  .contact-item .emoji{font-size:1.6rem}
  .contact-item h4{font-size:.82rem}
  .contact-item a{font-size:.85rem}
  .contact-inquiry-form input,.contact-inquiry-form textarea{font-size:.78rem!important}

  .mobile-order-bar{padding:8px 12px}
  .mobile-order-bar span{font-size:.75rem}
  .mobile-order-bar .btn{font-size:.75rem;padding:8px 16px}

  /* Chat on small screens */
  #aiChatWidget{border-radius:0!important;max-height:100vh!important}
  #aiChatButton{bottom:70px!important;right:70px!important;width:48px!important;height:48px!important;font-size:1.3rem!important}

  /* Override inline 3-col grids on product pages */
  [style*="grid-template-columns:repeat(3,1fr)"]{grid-template-columns:1fr!important}
  [style*="grid-template-columns:1fr 1fr;gap:24px"]{grid-template-columns:1fr!important;gap:16px!important}
  [style*="grid-template-columns:1fr 1fr;gap:40px"]{grid-template-columns:1fr!important;gap:20px!important}
  .var-options{flex-wrap:wrap}
  .var-option{flex:1 1 120px}
}

/* Very small phones (360px and below) */
@media(max-width: 360px){
  .container{padding:0 10px}
  .site-logo img{width:32px;height:32px}
  .site-logo-text{font-size:.82rem}
  .site-logo-text span{font-size:.5rem}
  .hero h1{font-size:1.2rem}
  .hero p{font-size:.78rem}
  .hero-actions .btn{padding:8px 14px;font-size:.75rem;flex:1;justify-content:center}
  .section-title{font-size:1.05rem}
  .section-sub{font-size:.75rem}
  .product-grid{grid-template-columns:1fr;gap:12px}
  .product-card{padding:16px 12px}
  .product-card h3{font-size:.9rem}
  .product-card .price{font-size:1.05rem}
  .product-card .btn-row .btn{font-size:.68rem;padding:6px 4px}
  .var-option{flex:1 1 100px;padding:10px 6px}
  .var-option .v-weight{font-size:.95rem}
  .var-option .v-price{font-size:.78rem}
  .qty-btn-group button{width:36px;height:36px;font-size:1rem}
  .order-panel{padding:18px 14px}
  .order-total{font-size:1.1rem}
  .footer-grid{gap:14px;padding:20px 0 12px}
  .trust-badges{grid-template-columns:repeat(2,1fr);gap:8px}
  .trust-badge-item{padding:10px 6px}
  .feature-item{padding:14px 10px}
  .feature-item .fi-icon{width:36px;height:36px;font-size:1.2rem}
  .feature-item h4{font-size:.82rem}
  .feature-item p{font-size:.72rem}
  .step-card{padding:12px 8px}
  .step-card h4{font-size:.78rem}
  .step-card p{font-size:.72rem}
  #aiChatButton{right:12px!important;bottom:12px!important}
}

/* Cart mobile responsive: convert table to stacked cards */
@media(max-width: 768px){
  .cart-table{display:block;overflow-x:auto;width:100%}
  .cart-table table{width:100%;min-width:480px}
  .cart-table .var-chips{flex-wrap:wrap;gap:4px}
  .cart-table .var-chips .chip{font-size:.72rem;padding:3px 8px}
}
@media(max-width: 480px){
  .cart-table table{min-width:360px;font-size:.78rem}
  .cart-table td,.cart-table th{padding:8px 6px}
  .cart-table input[type=number]{width:50px;padding:4px}
}
