/* ===================================================
   SKINCARE WITH MULTANI — matches reference layout
   Palette: Ivory, Deep Olive Green, Gold accents
   =================================================== */

:root{
  --ivory:#FAF6EE;
  --ivory-deep:#F2EAD8;
  --cream:#FFFDF9;
  --olive:#4B5E2E;
  --olive-dark:#3A4A22;
  --olive-light:#7C9457;
  --gold:#B8924A;
  --gold-light:#D8B978;
  --clay:#C9A877;
  --clay-dark:#9C7A4C;
  --text-dark:#2B2417;
  --text-body:#5C5343;
  --text-muted:#8C8270;
  --border:#E5DCC6;
  --white:#fff;
  --shadow-sm:0 2px 14px rgba(43,36,23,.07);
  --shadow-md:0 10px 36px rgba(43,36,23,.10);
  --shadow-lg:0 24px 60px rgba(43,36,23,.16);
  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-full:999px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:'Jost', system-ui, sans-serif;
  --transition: .35s cubic-bezier(.25,.46,.45,.94);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--ivory);
  color:var(--text-body);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit;border:none;background:none}
ul{list-style:none}
.container{max-width:1280px;margin:0 auto;padding:0 2rem}
.section{padding:5.5rem 0}

/* ---------- TOPBAR ---------- */
.topbar{background:var(--olive-dark);color:#E8E0C8;font-size:.74rem;letter-spacing:.03em}
.topbar-inner{
  max-width:1280px;margin:0 auto;padding:.5rem 2rem;
  display:flex;align-items:center;justify-content:space-between;
}
.topbar-left{display:flex;gap:1.5rem}
.topbar-left span,.topbar-right span{display:flex;align-items:center;gap:.4rem}
.topbar-left i,.topbar-right i{color:var(--gold-light);font-size:.7rem}

/* ---------- NAVBAR ---------- */
.navbar{
  position:sticky;top:0;z-index:500;
  background:var(--cream);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:1280px;margin:0 auto;padding:.85rem 2rem;
  display:flex;align-items:center;gap:2rem;
}
.brand{display:flex;align-items:center;gap:.6rem;margin-right:auto}
.brand-mark{width:46px;height:46px;object-fit:contain}
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.brand-name{font-family:var(--font-body);font-weight:700;font-size:1.05rem;letter-spacing:.04em;color:var(--olive-dark)}
.brand-sub{font-size:.6rem;font-weight:500;letter-spacing:.18em;color:var(--clay-dark)}
.main-nav{display:flex;gap:1.9rem}
.main-nav a{
  font-size:.86rem;font-weight:500;color:var(--text-body);
  position:relative;padding:.3rem 0;transition:color var(--transition);
}
.main-nav a::after{
  content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;
  background:var(--olive);transform:scaleX(0);transition:transform var(--transition);
}
.main-nav a:hover,.main-nav a.active{color:var(--olive-dark)}
.main-nav a:hover::after,.main-nav a.active::after{transform:scaleX(1)}
.nav-actions{display:flex;align-items:center;gap:.9rem}
.icon-btn{
  width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  color:var(--text-body);font-size:.95rem;position:relative;border-radius:var(--radius-full);
  transition:var(--transition);
}
.icon-btn:hover{background:var(--ivory-deep);color:var(--olive-dark)}
.cart-count{
  position:absolute;top:0;right:0;background:var(--olive);color:#fff;
  font-size:.6rem;font-weight:700;width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.hamburger{display:none;flex-direction:column;gap:5px;width:24px}
.hamburger span{height:2px;background:var(--text-dark);display:block}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:600;font-size:.82rem;letter-spacing:.04em;
  padding:.7rem 1.5rem;border-radius:var(--radius-full);transition:var(--transition);
  white-space:nowrap;
}
.btn-primary{background:var(--olive);color:#fff;box-shadow:0 6px 20px rgba(75,94,46,.3)}
.btn-primary:hover{background:var(--olive-dark);transform:translateY(-2px)}
.btn-outline{background:transparent;border:1.5px solid var(--olive);color:var(--olive-dark)}
.btn-outline:hover{background:var(--olive);color:#fff}
.btn-light{background:#fff;color:var(--olive-dark)}
.btn-light:hover{background:var(--ivory-deep)}
.btn-whatsapp{background:var(--olive);font-size:.78rem;padding:.62rem 1.25rem}
.btn-large{padding:.9rem 1.9rem;font-size:.85rem}
.btn-full{width:100%}

/* ---------- SECTION HEAD ---------- */
.section-head{text-align:center;max-width:560px;margin:0 auto 3rem}
.eyebrow{
  font-size:.74rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--olive);display:flex;align-items:center;gap:.4rem;margin-bottom:.6rem;
}
.eyebrow.center{justify-content:center}
.section-head h2,.pd-title{
  font-family:var(--font-display);font-weight:500;font-size:clamp(1.8rem,3.2vw,2.5rem);
  color:var(--text-dark);
}

/* ---------- HERO ---------- */
.hero{
  background:linear-gradient(180deg,var(--ivory) 0%,var(--ivory-deep) 100%);
  padding:4rem 0 5rem;
  position:relative;overflow:hidden;
}
.hero-inner{
  max-width:1280px;margin:0 auto;padding:0 2rem;
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.hero-eyebrow{
  font-size:.78rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--clay-dark);margin-bottom:1rem;
}
.hero-title{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(2.6rem,5vw,3.6rem);line-height:1.08;color:var(--text-dark);
  margin-bottom:1.25rem;
}
.hero-title em{font-style:italic;color:var(--olive)}
.hero-desc{font-size:1rem;color:var(--text-body);max-width:420px;margin-bottom:2rem}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-tags{display:flex;gap:1.75rem;flex-wrap:wrap}
.hero-tag{display:flex;flex-direction:column;align-items:flex-start;gap:.4rem;font-size:.78rem;color:var(--text-muted);font-weight:500}
.hero-tag i{color:var(--gold);font-size:1.1rem}

/* Hero Visual */
.hero-visual{position:relative;display:flex;justify-content:center}
.hero-stage{
  position:relative;width:440px;height:440px;
}
.hero-blob{
  position:absolute;inset:0;border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(216,185,120,.35), rgba(124,148,87,.12) 70%);
}
.hero-leaf{position:absolute;color:var(--olive-light);font-size:2.4rem;opacity:.5}
.hero-leaf-1{top:5%;left:0;transform:rotate(-25deg)}
.hero-leaf-2{bottom:8%;right:0;transform:rotate(20deg) scaleX(-1)}
.hero-stone{position:absolute;border-radius:40% 60% 55% 45%/50% 45% 55% 50%;background:linear-gradient(135deg,#C9B28C,#A4865A)}
.hero-stone-1{width:38px;height:30px;bottom:18%;left:8%}
.hero-stone-2{width:26px;height:22px;bottom:12%;left:20%}

.pouch{
  position:absolute;top:8%;left:50%;transform:translateX(-58%);
  width:200px;height:280px;z-index:3;
}
.pouch-zip{
  height:22px;background:linear-gradient(180deg,#8B6F45,#6F5736);
  border-radius:10px 10px 0 0;
}
.pouch-content{
  background:linear-gradient(165deg,#D9C49C 0%,#C9A877 55%,#A9824E 100%);
  height:228px;border-radius:0 0 22px 22px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.35rem;
  padding:1rem;box-shadow:var(--shadow-md);position:relative;
}
.pouch-logo{width:34px;height:auto;filter:brightness(0) invert(1);opacity:.92;margin-bottom:.2rem}
.pouch-brand{font-family:var(--font-body);font-weight:700;font-size:.5rem;letter-spacing:.1em;color:#fff;text-align:center;line-height:1.3}
.pouch-product{font-family:var(--font-display);font-weight:600;font-size:.92rem;color:#3A2C14;text-align:center;line-height:1.15;margin:.25rem 0}
.pouch-pill{background:var(--olive-dark);color:#fff;font-size:.5rem;font-weight:700;letter-spacing:.06em;padding:.25rem .6rem;border-radius:var(--radius-full)}
.pouch-net{font-size:.55rem;color:#fff;opacity:.85;margin-top:.3rem}
.pouch-base{height:10px;background:#6F5736;border-radius:0 0 8px 8px}

.bowl{
  position:absolute;bottom:0;right:4%;width:200px;z-index:2;
}
.bowl-rim{
  width:200px;height:60px;border-radius:50%;
  background:linear-gradient(180deg,#8B6B3F,#5C4422);
  box-shadow:var(--shadow-md);
}
.bowl-powder{
  width:170px;height:80px;border-radius:50%;
  background:radial-gradient(circle at 40% 30%, #E8D5A8, #C9A877 60%, #A9824E);
  margin:0 auto -34px;position:relative;z-index:2;
}

.float-chip{
  position:absolute;width:44px;height:44px;border-radius:50%;
  background:#fff;box-shadow:var(--shadow-md);
  display:flex;align-items:center;justify-content:center;font-size:1.05rem;
  animation:chipFloat 3.5s ease-in-out infinite;
}
.fc-whatsapp{top:6%;right:-2%;color:#25D366;animation-delay:0s}
.fc-phone{top:42%;right:-6%;color:var(--olive);animation-delay:1.2s}
.fc-insta{bottom:10%;left:-4%;color:#C13584;animation-delay:2.1s}
@keyframes chipFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* ---------- WHY US ---------- */
.why-us{background:var(--ivory-deep)}
.why-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.25rem}
.why-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);
  padding:1.75rem 1rem;text-align:center;transition:var(--transition);
}
.why-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--gold-light)}
.why-icon{
  width:54px;height:54px;margin:0 auto 1rem;border-radius:50%;
  background:var(--ivory-deep);display:flex;align-items:center;justify-content:center;
  color:var(--olive);font-size:1.2rem;border:1px solid var(--border);
}
.why-card h3{font-size:.92rem;font-weight:600;color:var(--text-dark);margin-bottom:.35rem}
.why-card p{font-size:.78rem;color:var(--text-muted)}

/* ---------- PRODUCT DETAIL ---------- */
.product-detail{background:var(--ivory)}
.product-detail-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:4rem;align-items:start}

.pd-thumbs{display:flex;flex-direction:row;gap:.75rem;margin-bottom:1rem}
.pd-thumb{
  width:64px;height:64px;border-radius:var(--radius-sm);overflow:hidden;
  border:2px solid var(--border);transition:var(--transition);
}
.pd-thumb.active,.pd-thumb:hover{border-color:var(--olive)}
.thumb-visual{width:100%;height:100%}
.thumb-pouch{background:linear-gradient(165deg,#D9C49C,#A9824E)}
.thumb-bowl{background:radial-gradient(circle,#E8D5A8,#A9824E)}
.thumb-powder{background:linear-gradient(135deg,#C9A877,#8B6F45)}

.pd-main-image{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:3rem 2rem;box-shadow:var(--shadow-sm);
}
.pd-stage{position:relative;height:380px;display:flex;align-items:center;justify-content:center}
.pd-bowl-bg{position:absolute;bottom:0;width:260px}
.pd-bowl-powder{
  width:260px;height:110px;border-radius:50%;
  background:radial-gradient(circle at 40% 30%,#E8D5A8,#C9A877 60%,#9C7A4C);
}
.pd-pouch-large{
  position:relative;z-index:2;width:200px;
}
.pd-pouch-large .pouch-content{height:260px}
.pd-badge{
  position:absolute;top:6%;right:6%;width:72px;height:72px;border-radius:50%;
  background:var(--olive);color:#fff;font-size:.62rem;font-weight:700;text-align:center;
  display:flex;align-items:center;justify-content:center;line-height:1.25;
  box-shadow:var(--shadow-md);transform:rotate(8deg);
}

.pd-eyebrow{font-size:.74rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--clay-dark);margin-bottom:.5rem}
.pd-title{margin-bottom:.5rem}
.pd-meta{font-size:.84rem;color:var(--text-muted);margin-bottom:1.5rem}
.pd-price-row{display:flex;align-items:baseline;gap:.85rem;margin-bottom:2rem}
.pd-price{font-family:var(--font-display);font-size:2.2rem;font-weight:600;color:var(--olive-dark)}
.pd-price-old{font-size:1.1rem;color:var(--text-muted);text-decoration:line-through}
.pd-discount{background:var(--ivory-deep);color:var(--clay-dark);font-size:.74rem;font-weight:700;padding:.3rem .7rem;border-radius:var(--radius-full)}

.pd-block{margin-bottom:1.75rem}
.pd-label{font-size:.8rem;font-weight:600;color:var(--text-dark);margin-bottom:.7rem;text-transform:uppercase;letter-spacing:.05em}
.weight-options{display:flex;gap:.75rem}
.weight-opt{
  border:1.5px solid var(--border);border-radius:var(--radius-md);
  padding:.6rem 1.3rem;text-align:center;font-size:.84rem;font-weight:600;color:var(--text-body);
  transition:var(--transition);
}
.weight-opt span{display:block;font-size:.76rem;font-weight:500;color:var(--text-muted);margin-top:.15rem}
.weight-opt.active{background:var(--olive);border-color:var(--olive);color:#fff}
.weight-opt.active span{color:rgba(255,255,255,.85)}
.weight-opt:hover:not(.active){border-color:var(--olive)}

.qty-selector{
  display:inline-flex;align-items:center;border:1.5px solid var(--border);border-radius:var(--radius-full);
}
.qty-selector button{width:38px;height:38px;font-size:1.1rem;color:var(--olive-dark)}
.qty-selector span{width:38px;text-align:center;font-weight:600}

.pd-actions{display:flex;gap:1rem;margin-bottom:1.5rem}
.pd-trust{display:flex;gap:1.5rem;flex-wrap:wrap;font-size:.78rem;color:var(--text-muted);margin-bottom:2.5rem}
.pd-trust span{display:flex;align-items:center;gap:.4rem}
.pd-trust i{color:var(--olive)}

.pd-tabs{display:flex;gap:.5rem;border-bottom:1px solid var(--border);margin-bottom:1.5rem;flex-wrap:wrap}
.pdt-btn{
  font-size:.82rem;font-weight:600;color:var(--text-muted);padding:.6rem .25rem;
  border-bottom:2px solid transparent;margin-right:1.25rem;transition:var(--transition);
}
.pdt-btn.active,.pdt-btn:hover{color:var(--olive-dark);border-color:var(--olive)}
.pdt-content{display:none;font-size:.88rem;color:var(--text-body);line-height:1.75}
.pdt-content.active{display:block}
.pdt-list li{display:flex;align-items:flex-start;gap:.55rem;margin-bottom:.6rem}
.pdt-list i{color:var(--olive);margin-top:.25rem;font-size:.78rem}
.pdt-table{width:100%;border-collapse:collapse}
.pdt-table td{padding:.6rem 0;border-bottom:1px solid var(--border);font-size:.85rem}
.pdt-table td:first-child{font-weight:600;color:var(--text-dark);width:35%}
.pdt-content a{color:var(--olive);font-weight:600}

/* ---------- BENEFITS STRIP ---------- */
.benefits-strip{background:var(--ivory-deep)}
.benefits-row{display:grid;grid-template-columns:repeat(6,1fr);gap:1.5rem}
.benefit-item{text-align:center}
.bi-icon{
  width:64px;height:64px;margin:0 auto 1rem;border-radius:50%;
  background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;color:var(--olive);transition:var(--transition);
}
.benefit-item:hover .bi-icon{background:var(--olive);color:#fff;transform:scale(1.08)}
.benefit-item h4{font-size:.9rem;font-weight:600;color:var(--text-dark);margin-bottom:.3rem}
.benefit-item p{font-size:.76rem;color:var(--text-muted)}

/* ---------- GALLERY ---------- */
.gallery-section{background:var(--ivory)}
.gallery-filters{display:flex;justify-content:center;gap:.6rem;margin-bottom:2.5rem}
.gf-btn{
  font-size:.8rem;font-weight:600;padding:.55rem 1.4rem;border-radius:var(--radius-full);
  border:1.5px solid var(--border);color:var(--text-body);transition:var(--transition);
}
.gf-btn.active{background:var(--olive);border-color:var(--olive);color:#fff}
.gf-btn:hover:not(.active){border-color:var(--olive)}
.gallery-track-wrap{position:relative;display:flex;align-items:center;gap:1rem}
.gallery-track{
  display:flex;gap:1.25rem;overflow-x:auto;scroll-behavior:smooth;
  scrollbar-width:none;padding-bottom:.5rem;
}
.gallery-track::-webkit-scrollbar{display:none}
.gal-item{flex:0 0 220px;height:220px;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm)}
.gal-visual{width:100%;height:100%;transition:transform .5s ease}
.gal-item:hover .gal-visual{transform:scale(1.08)}
.gal-bowl1{background:radial-gradient(circle at 35% 30%,#EDDDB8,#C9A877 55%,#9C7A4C)}
.gal-pouch1{background:linear-gradient(160deg,#D9C49C,#A9824E)}
.gal-spoon{background:linear-gradient(135deg,#E0C99C,#B58F5C)}
.gal-pouch2{background:linear-gradient(200deg,#C9A877,#7C9457)}
.gal-pile{background:radial-gradient(ellipse at center,#E8D5A8,#9C7A4C)}
.gal-texture{background:repeating-linear-gradient(45deg,#D9C49C,#D9C49C 8px,#C9A877 8px,#C9A877 16px)}
.gallery-nav{
  width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--olive-dark);flex-shrink:0;
  transition:var(--transition);box-shadow:var(--shadow-sm);
}
.gallery-nav:hover{background:var(--olive);color:#fff}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section{background:var(--ivory-deep)}
.testimonial-carousel{display:flex;align-items:center;gap:1.25rem}
.t-track{
  display:flex;
  gap:1.5rem;
  overflow:hidden;
  flex:1;
}
.t-card{
  flex:0 0 calc(33.333% - 1rem);
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem;
  transition:var(--transition);
}
.t-stars{color:var(--gold);letter-spacing:.1em;margin-bottom:1rem;font-size:1rem}
.t-card p{font-family:var(--font-display);font-style:italic;font-size:1.02rem;color:var(--text-dark);line-height:1.6;margin-bottom:1.5rem}
.t-author{display:flex;align-items:center;gap:.85rem}
.t-avatar{
  width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--gold-light),var(--clay-dark));
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:.78rem;flex-shrink:0;
}
.t-author strong{display:block;font-size:.88rem}
.t-author span{font-size:.72rem;color:var(--olive);display:flex;align-items:center;gap:.3rem}
.t-nav{
  width:42px;height:42px;border-radius:50%;background:#fff;border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;color:var(--olive-dark);flex-shrink:0;transition:var(--transition);
}
.t-nav:hover{background:var(--olive);color:#fff}
.t-dots{display:flex;justify-content:center;gap:.5rem;margin-top:2rem}
.t-dots span{width:8px;height:8px;border-radius:50%;background:var(--border);cursor:pointer;transition:var(--transition)}
.t-dots span.active{background:var(--olive);width:24px;border-radius:4px}

/* ---------- CTA BANNER ---------- */
.cta-banner{padding:0 0 5.5rem}
.cta-banner-inner{
  background:linear-gradient(120deg,var(--olive-dark),var(--olive));
  border-radius:var(--radius-xl,32px);
  padding:3rem 3.5rem;display:flex;align-items:center;gap:2.5rem;flex-wrap:wrap;
  position:relative;overflow:hidden;
}
.cta-visual{flex-shrink:0}
.cta-bowl{
  width:100px;height:100px;border-radius:50%;
  background:radial-gradient(circle at 35% 30%,#E8D5A8,#C9A877 55%,#9C7A4C);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.cta-text{flex:1;min-width:240px}
.cta-text h2{font-family:var(--font-display);font-weight:500;font-size:clamp(1.6rem,3vw,2.1rem);color:#fff;line-height:1.25}
.cta-tags{display:flex;gap:1.5rem;flex-wrap:wrap}
.cta-tag{display:flex;align-items:center;gap:.6rem;color:#fff;font-size:.78rem;font-weight:500}
.cta-tag i{font-size:1.2rem;color:var(--gold-light)}

/* ---------- FAQ ---------- */
.faq-section{background:var(--ivory)}
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;
  padding:1.1rem 1.4rem;font-size:.9rem;font-weight:600;color:var(--text-dark);text-align:left;
}
.faq-q i{color:var(--olive);transition:transform var(--transition);font-size:.78rem}
.faq-item.open .faq-q i{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-a{max-height:200px}
.faq-a p{padding:0 1.4rem 1.1rem;font-size:.85rem;color:var(--text-body);line-height:1.7}

/* ---------- CONTACT ---------- */
.contact-section{background:var(--ivory-deep)}
.contact-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:3rem}
.contact-form{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:2.5rem;box-shadow:var(--shadow-sm)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;padding:.85rem 1.1rem;border:1.5px solid var(--border);border-radius:var(--radius-md);
  background:var(--ivory);font-size:.88rem;color:var(--text-dark);font-family:inherit;margin-bottom:1rem;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--olive)}
.contact-aside{display:flex;flex-direction:column;gap:1rem}
.contact-card{
  display:flex;align-items:center;gap:1rem;background:#fff;border:1px solid var(--border);
  border-radius:var(--radius-md);padding:1.1rem 1.3rem;
}
.contact-card i{font-size:1.1rem;color:var(--olive);width:36px;height:36px;background:var(--ivory-deep);border-radius:50%;display:flex;align-items:center;justify-content:center}
.contact-card strong{display:block;font-size:.85rem}
.contact-card span{font-size:.78rem;color:var(--text-muted)}
.map-embed{margin-top:.25rem}
.map-placeholder{
  height:160px;border-radius:var(--radius-md);background:var(--ivory-deep);border:1px dashed var(--border);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;color:var(--text-muted);
}
.map-placeholder i{font-size:1.5rem;color:var(--olive)}

/* ---------- FOOTER ---------- */
.footer{background:var(--olive-dark);color:#D8D2BE;padding-top:4rem}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr 1.2fr;gap:2.5rem;padding-bottom:3rem}
.footer-logo{display:flex;align-items:center;gap:.6rem;margin-bottom:1rem}
.footer-logo-wrap{
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
}

.footer-logo-img{
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.footer-logo .brand-name{font-weight:700;font-size:1rem;color:#fff}
.footer-logo small{font-size:.6rem;letter-spacing:.14em;color:var(--gold-light);font-weight:500}
.footer-brand p{font-size:.82rem;line-height:1.7;color:#C5BFA8;margin-bottom:1.25rem}
.footer-social{display:flex;gap:.6rem}
.footer-social a{
  width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;color:#D8D2BE;transition:var(--transition);
}
.footer-social a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.footer-col h4{font-size:.88rem;color:#fff;margin-bottom:1.1rem;font-weight:600}
.footer-col a,.footer-col p{display:block;font-size:.8rem;color:#C5BFA8;margin-bottom:.6rem}
.footer-col a:hover{color:var(--gold-light)}
.footer-col p{display:flex;align-items:center;gap:.5rem}
.footer-news p{margin-bottom:1rem}
.newsletter{display:flex;gap:.5rem}
.newsletter input{
  flex:1;padding:.6rem .9rem;border-radius:var(--radius-full);border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.06);color:#fff;font-size:.8rem;
}
.newsletter input::placeholder{color:#A89F84}
.newsletter button{
  width:38px;height:38px;border-radius:50%;background:var(--gold);color:#fff;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.25rem 0}
.footer-bottom-inner{display:flex;justify-content:space-between;font-size:.78rem;color:#A89F84}
.footer-bottom-inner i{color:#C0584B}

/* ---------- FLOATING ---------- */
.whatsapp-float{
  position:fixed;bottom:5.5rem;right:1.75rem;width:54px;height:54px;border-radius:50%;
  background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;box-shadow:0 8px 24px rgba(37,211,102,.4);z-index:400;transition:var(--transition);
}
.whatsapp-float:hover{transform:scale(1.1)}
.back-to-top{
  position:fixed;bottom:1.75rem;right:1.75rem;width:42px;height:42px;border-radius:50%;
  background:var(--olive);color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);z-index:400;opacity:0;visibility:hidden;transition:var(--transition);
}
.back-to-top.visible{opacity:1;visibility:visible}
.back-to-top:hover{background:var(--olive-dark);transform:translateY(-3px)}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay{
  position:fixed;inset:0;background:rgba(43,36,23,.85);z-index:1000;
  display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;
  opacity:0;visibility:hidden;transition:var(--transition);
}
.search-overlay.open{opacity:1;visibility:visible}
.search-box{display:flex;align-items:center;gap:1rem;width:90%;max-width:600px}
.search-box input{
  flex:1;padding:1rem 1.5rem;border-radius:var(--radius-full);border:none;font-size:1.1rem;font-family:var(--font-display);
}
.search-box button{color:#fff;font-size:1.4rem}

/* ---------- CART DRAWER ---------- */
.cart-drawer{
  position:fixed;top:0;right:-400px;width:380px;max-width:90vw;height:100vh;background:#fff;
  z-index:1100;display:flex;flex-direction:column;box-shadow:-10px 0 40px rgba(0,0,0,.15);
  transition:right .4s ease;
}
.cart-drawer.open{right:0}
.cart-drawer-header{display:flex;justify-content:space-between;align-items:center;padding:1.5rem;border-bottom:1px solid var(--border)}
.cart-drawer-header h3{font-family:var(--font-display);font-size:1.3rem}
.cart-drawer-body{flex:1;overflow-y:auto;padding:1.5rem}
.cart-empty{color:var(--text-muted);text-align:center;margin-top:2rem;font-size:.88rem}
.cart-item{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--border)}
.cart-item-thumb{width:56px;height:56px;border-radius:var(--radius-sm);background:linear-gradient(160deg,#D9C49C,#A9824E);flex-shrink:0}
.cart-item-info{flex:1}
.cart-item-info strong{display:block;font-size:.85rem;margin-bottom:.2rem}
.cart-item-info span{font-size:.76rem;color:var(--text-muted)}
.cart-item-remove{color:#C0584B;font-size:.78rem;margin-top:.3rem}
.cart-drawer-footer{padding:1.5rem;border-top:1px solid var(--border)}
.cart-total-row{display:flex;justify-content:space-between;font-weight:700;margin-bottom:1rem;font-size:1rem}
.drawer-backdrop{position:fixed;inset:0;background:rgba(43,36,23,.5);z-index:1050;opacity:0;visibility:hidden;transition:var(--transition)}
.drawer-backdrop.open{opacity:1;visibility:visible}

/* ---------- ANIMATIONS ---------- */
[data-aos]{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease}
[data-aos].aos-show{opacity:1;transform:translateY(0)}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1100px){
  .why-grid{grid-template-columns:repeat(3,1fr)}
  .benefits-row{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .product-detail-grid{grid-template-columns:1fr}
  .topbar-left span:nth-child(3){display:none}
}
@media(max-width:900px){
  .main-nav{display:none}
  .hamburger{display:flex}
  .btn-whatsapp{display:none}
  .main-nav.open{
    display:flex;flex-direction:column;position:fixed;top:0;left:0;right:0;bottom:0;
    background:var(--cream);padding:6rem 2rem 2rem;gap:1.25rem;z-index:600;
  }
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-text{order:1}
  .hero-tags{justify-content:center}
  .hero-ctas{justify-content:center}
  .hero-visual{order:0;margin-bottom:1rem}
  .topbar-left{gap:1rem}
  .topbar-left span:nth-child(2){display:none}
  .contact-grid{grid-template-columns:1fr}
  .t-card{flex:0 0 100%}
}
@media(max-width:600px){
  .section{padding:3.5rem 0}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .benefits-row{grid-template-columns:repeat(2,1fr)}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cta-banner-inner{padding:2.25rem 1.5rem;flex-direction:column;text-align:center}
  .pd-actions{flex-direction:column}
  .topbar-right{display:none}
  .container{padding:0 1.25rem}
  .nav-inner{padding:.85rem 1.25rem}
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  [data-aos]{opacity:1!important;transform:none!important}
}

/* Gallery caption overlay */
.gal-visual { position: relative; }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(to top, rgba(43,36,23,.7), transparent);
  font-size: .74rem; font-weight: 600; color: #fff;
  letter-spacing: .05em; opacity: 0; transition: .35s;
}
.gal-item:hover .gal-caption { opacity: 1; }

/* ── REVIEW FORM ─────────────────────────────────────────────────── */
.review-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;
}
.review-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--text-dark); margin-bottom: 1.25rem;
}
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.review-form input, .review-form textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-family: inherit; font-size: .88rem;
  background: var(--ivory); color: var(--text-dark);
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--olive); }
.review-form textarea { resize: vertical; margin-bottom: 1rem; }
.star-select { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.star-select p { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
.stars-input i { font-size: 1.4rem; color: var(--border); cursor: pointer; transition: color .2s; }
.stars-input i.active { color: var(--gold); }
.review-note { font-size: .74rem; color: var(--text-muted); margin-top: .6rem; display: flex; align-items: center; gap: .3rem; }

/* ── WEIGHT NOTE ─────────────────────────────────────────────────── */
.weight-note { font-size: .78rem; color: var(--text-muted); margin-top: .6rem; }
.weight-note a { color: var(--olive); font-weight: 600; }

/* ── SOCIAL ROW ──────────────────────────────────────────────────── */
.social-row { display: flex; gap: .75rem; margin-top: .5rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600; transition: var(--transition);
}
.social-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-btn.whatsapp  { background: #25D366; color: #fff; }
.social-btn:hover { opacity: .88; transform: translateY(-2px); }

/* ── POLICIES ────────────────────────────────────────────────────── */
.policies-section { background: var(--ivory-deep); }
.policies-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.policy-tab {
  font-size: .82rem; font-weight: 600; padding: .6rem 1.4rem;
  border-radius: var(--radius-full); border: 1.5px solid var(--border);
  color: var(--text-body); transition: var(--transition);
}
.policy-tab.active { background: var(--olive); border-color: var(--olive); color: #fff; }
.policy-tab:hover:not(.active) { border-color: var(--olive); color: var(--olive); }
.policy-content { display: none; max-width: 800px; margin: 0 auto; }
.policy-content.active { display: block; }
.policy-content h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--text-dark); margin-bottom: 1rem;
  padding-bottom: .75rem; border-bottom: 2px solid var(--border);
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
}
.policy-content h3 span { font-size: .72rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.policy-content h4 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 .5rem; }
.policy-content p { font-size: .88rem; color: var(--text-body); line-height: 1.8; margin-bottom: .75rem; }
.policy-content ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.policy-content ul li { font-size: .88rem; color: var(--text-body); line-height: 1.8; list-style: disc; }
.policy-content strong { color: var(--text-dark); }

/* ── CONTACT ASIDE LINKS ─────────────────────────────────────────── */
.contact-card a { color: var(--olive); font-size: .88rem; font-weight: 500; }
.contact-card a:hover { color: var(--olive-dark); }

@media(max-width:600px){
  .review-form-row { grid-template-columns: 1fr; }
  .policies-tabs { gap: .4rem; }
  .policy-tab { font-size: .74rem; padding: .5rem 1rem; }
}

/* ── HERO IMAGE (real photo) ─────────────────────────────── */
.hero-img-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-product-img {
  width: 100%; max-width: 480px;
  border-radius: var(--radius-xl, 32px);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.hero-img-badge {
  position: absolute; top: 5%; right: 0%;
  background: var(--olive); color: #fff;
  font-size: .65rem; font-weight: 700; text-align: center;
  padding: .6rem .9rem; border-radius: var(--radius-full);
  line-height: 1.4; box-shadow: var(--shadow-md);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── PRODUCT GALLERY (real images) ──────────────────────── */
.pd-gallery { display: flex; flex-direction: column; gap: 1rem; }
.pd-thumbs { display: flex; gap: .75rem; flex-wrap: wrap; }
.pd-thumb {
  width: 72px; height: 72px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); overflow: hidden;
  padding: 0; transition: var(--transition); cursor: pointer;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--olive); }
.pd-main-image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.pd-main-image img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform .5s ease;
}
.pd-main-image:hover img { transform: scale(1.04); }
.pd-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--olive); color: #fff;
  font-size: .62rem; font-weight: 700; text-align: center;
  padding: .5rem .8rem; border-radius: var(--radius-full);
  line-height: 1.4; letter-spacing: .06em; text-transform: uppercase;
}

/* ── GALLERY (real images) ───────────────────────────────── */
.gal-item {
  flex: 0 0 260px; height: 240px;
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
  display: block;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(to top, rgba(43,36,23,.75), transparent);
  font-size: .74rem; font-weight: 600; color: #fff;
  letter-spacing: .05em; opacity: 0; transition: .35s;
}
.gal-item:hover .gal-caption { opacity: 1; }

/* ── CTA IMG ─────────────────────────────────────────────── */
.cta-img {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ── FOOTER LOGO FULL ────────────────────────────────────── */
.footer-logo-img {
  width: 160px; height: auto;
  object-fit: contain; margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .9;
}

/* ── CART NOTE ───────────────────────────────────────────── */
.cart-cod-note {
  text-align: center; font-size: .74rem;
  color: var(--text-muted); margin-top: .6rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}

/* ══ AUTH MODAL ══════════════════════════════════════════════ */
.modal-overlay{position:fixed;inset:0;background:rgba(43,36,23,.6);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:.3s}
.modal-overlay.open{opacity:1;visibility:visible}
.modal-box{background:#fff;border-radius:var(--radius-lg);padding:2.5rem;width:90%;max-width:460px;position:relative;box-shadow:var(--shadow-lg);max-height:90vh;overflow-y:auto}
.modal-close{position:absolute;top:1rem;right:1rem;width:32px;height:32px;border-radius:50%;background:var(--ivory-deep);display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:.85rem}
.modal-close:hover{background:var(--border)}
.modal-tabs{display:flex;gap:.5rem;margin-bottom:1.75rem;border-bottom:2px solid var(--border)}
.modal-tab{flex:1;padding:.7rem;font-size:.88rem;font-weight:600;color:var(--text-muted);border-bottom:2px solid transparent;margin-bottom:-2px;transition:.2s}
.modal-tab.active{color:var(--olive-dark);border-color:var(--olive)}
.auth-form{display:none;flex-direction:column;gap:1rem}
.auth-form.active{display:flex}
.auth-form h3{font-family:var(--font-display);font-size:1.4rem;color:var(--text-dark);margin-bottom:.25rem}
.auth-field{display:flex;align-items:center;gap:.75rem;border:1.5px solid var(--border);border-radius:var(--radius-md);padding:.75rem 1rem;background:var(--ivory)}
.auth-field i{color:var(--text-muted);width:16px;text-align:center;flex-shrink:0}
.auth-field input{border:none;background:none;flex:1;font-size:.9rem;font-family:inherit;color:var(--text-dark);outline:none}
.auth-field input::placeholder{color:var(--text-muted)}
.auth-switch{font-size:.82rem;color:var(--text-muted);text-align:center}
.auth-switch span{color:var(--olive);font-weight:600;cursor:pointer}
.auth-msg{font-size:.8rem;text-align:center;min-height:1.2rem;font-weight:500}
.auth-msg.success{color:var(--olive)}
.auth-msg.error{color:#C0584B}

/* ══ NAV AUTH ════════════════════════════════════════════════ */
.btn-outline-sm{font-size:.76rem;font-weight:600;padding:.5rem 1rem;border-radius:var(--radius-full);border:1.5px solid var(--olive);color:var(--olive-dark);transition:var(--transition)}
.btn-outline-sm:hover{background:var(--olive);color:#fff}
.nav-auth,.nav-user{display:flex;align-items:center;gap:.6rem}
.nav-username{font-size:.78rem;font-weight:600;color:var(--olive-dark)}

/* ══ ORDER MODAL ═════════════════════════════════════════════ */
.order-summary-box{background:var(--ivory-deep);border-radius:var(--radius-md);padding:1rem 1.25rem;margin-bottom:1.25rem}
.order-summary-box p{font-size:.84rem;color:var(--text-body);margin-bottom:.3rem}
.order-summary-box strong{color:var(--text-dark)}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.payment-options{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1.25rem}
.pay-opt{display:flex;align-items:center;gap:.5rem;border:1.5px solid var(--border);border-radius:var(--radius-md);padding:.6rem 1rem;font-size:.82rem;font-weight:600;color:var(--text-body);cursor:pointer;transition:var(--transition)}
.pay-opt input{display:none}
.pay-opt.active,.pay-opt:has(input:checked){border-color:var(--olive);background:rgba(75,94,46,.08);color:var(--olive-dark)}
.pay-opt i{font-size:.9rem;color:var(--olive)}
.order-msg{font-size:.8rem;text-align:center;margin-top:.5rem;color:var(--olive);font-weight:500}

/* ══ UPI MODAL ═══════════════════════════════════════════════ */
.upi-modal-box{max-width:400px}
.upi-modal-box h3{font-family:var(--font-display);font-size:1.3rem;text-align:center;margin-bottom:1.25rem;color:var(--text-dark)}
.upi-qr-wrap{display:flex;justify-content:center;margin-bottom:1.25rem}
.upi-qr-box{text-align:center;border:2px dashed var(--border);border-radius:var(--radius-md);padding:2rem 3rem;background:var(--ivory)}
.upi-qr-icon{font-size:4rem;color:var(--olive-light);margin-bottom:.5rem}
.upi-scan-text{font-size:.78rem;color:var(--text-muted)}
.upi-id-box{display:flex;align-items:center;gap:.75rem;background:var(--ivory-deep);border-radius:var(--radius-md);padding:.85rem 1.1rem;margin-bottom:.75rem}
.upi-id-box span{font-size:.78rem;color:var(--text-muted)}
.upi-id-box strong{flex:1;font-size:.9rem;color:var(--text-dark)}
.upi-copy-btn{font-size:.72rem;font-weight:600;padding:.35rem .8rem;border-radius:var(--radius-full);background:var(--olive);color:#fff;border:none;cursor:pointer}
.upi-amount-box{display:flex;align-items:center;justify-content:space-between;background:var(--ivory-deep);border-radius:var(--radius-md);padding:.85rem 1.1rem;margin-bottom:.75rem}
.upi-amount-box span{font-size:.82rem;color:var(--text-muted)}
.upi-amount-box strong{font-size:1.4rem;color:var(--olive-dark);font-family:var(--font-display)}
.upi-note{font-size:.76rem;color:var(--text-muted);margin-bottom:.75rem;display:flex;align-items:center;gap:.3rem}
.upi-msg{font-size:.8rem;text-align:center;color:var(--olive);font-weight:500;margin-top:.5rem}
.modal-backdrop{position:fixed;inset:0;z-index:1900;display:none}
.modal-backdrop.open{display:block}

/* ══ PRODUCT TYPE TABS ═══════════════════════════════════════ */
.product-type-tabs{display:flex;gap:1rem;justify-content:center;margin-bottom:2.5rem}
.ptype-tab{display:flex;align-items:center;gap:.6rem;padding:.85rem 2rem;border-radius:var(--radius-full);border:2px solid var(--border);font-size:.88rem;font-weight:600;color:var(--text-body);transition:var(--transition)}
.ptype-tab.active{background:var(--olive);border-color:var(--olive);color:#fff;box-shadow:0 6px 20px rgba(75,94,46,.3)}
.ptype-tab:hover:not(.active){border-color:var(--olive);color:var(--olive-dark)}
.product-panel{display:none}
.product-panel.active{display:block}

/* ══ CART ITEM WITH IMAGE ════════════════════════════════════ */
.cart-item-thumb{width:56px;height:56px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;background:var(--ivory-deep)}
.cart-item-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.cart-delivery-row span:last-child{color:var(--olive);font-weight:600}
.cart-grand-total{border-top:2px solid var(--border);padding-top:.75rem;font-weight:700;font-size:1rem}

/* ══ FOOTER LOGO FIX ═════════════════════════════════════════ */
.footer-logo-wrap{margin-bottom:1rem}
.footer-logo-img{width:180px;height:auto;object-fit:contain;filter:brightness(0) invert(1);opacity:.9}

/* ══ FLOAT CHIPS ═════════════════════════════════════════════ */
.fc-star{top:42%;right:-6%;color:#F59E0B;animation-delay:1.2s}
.fc-leaf{bottom:10%;left:-4%;color:var(--olive);animation-delay:2.1s}

@media(max-width:600px){
  .product-type-tabs{flex-direction:column;align-items:center}
  .payment-options{flex-direction:column}
  .form-row-2{grid-template-columns:1fr}
}
