/* ═══════════════════════════════════════
   BALIDAO THEME — Main Stylesheet
   ═══════════════════════════════════════ */

:root {
  --orange: #F4600C;
  --orange2: #FF7A2F;
  --dark: #0D0D0D;
  --dark2: #181818;
  --dark3: #222222;
  --gold: #E8B94F;
  --cream: #F5F0EA;
  --gray: #888888;
  --green: #2ECC71;
  --red: #E74C3C;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--cream); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 10px 5%;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.announcement-bar a { color: white; text-decoration: underline; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244,96,12,0.12);
  padding: 14px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--cream);
}
.site-logo span { color: var(--orange); }
.site-nav { display: flex; gap: 28px; list-style: none; }
.site-nav a { color: var(--gray); font-size: .88rem; font-weight: 500; transition: color .2s; }
.site-nav a:hover { color: var(--cream); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-nav-cta {
  background: #25D366;
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  transition: background .2s;
}
.btn-nav-cta:hover { background: #20bd5a; color: white; }
.btn-nav-wa {
  background: #25D366;
  color: white;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.btn-nav-wa:hover { opacity: .85; color: white; }
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--cream);
}
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--orange);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  padding: 70px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,96,12,.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,96,12,.1);
  border: 1px solid rgba(244,96,12,.3);
  color: var(--orange2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.trust-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; }
.trust-stat span { font-size: .78rem; color: var(--gray); }

/* Hero Image */
.hero-img-wrap { position: relative; }
.hero-main-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 50px rgba(244,96,12,.07);
  border: 1px solid rgba(244,96,12,.15);
}
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.hf1 { top: -16px; right: 20px; border-color: rgba(46,204,113,.25); }
.hf2 { bottom: 24px; left: -20px; border-color: rgba(244,96,12,.25); }
.hf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulseDot 1.5s infinite; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(14px,3vw,48px);
  flex-wrap: wrap;
}
.tb-item { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: #ccc; font-weight: 500; }
.tb-icon { width: 34px; height: 34px; background: rgba(244,96,12,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; }

/* ── SECTIONS COMMONS ── */
.section { padding: 72px 5%; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-label { display: inline-block; color: var(--orange); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.section-sub { color: var(--gray); font-size: .95rem; max-width: 520px; line-height: 1.7; font-weight: 300; }

/* ── BUTTONS ── */
.btn-primary {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Syne', sans-serif;
}
.btn-primary:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.3); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  transition: all .25s;
  font-family: 'Syne', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); color: var(--cream); }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-top: 40px; }
.product-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(244,96,12,.2); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.product-card-img { height: 220px; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}
.product-card-body { padding: 18px 20px; }
.product-card-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.product-card-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; }
.price-compare { font-size: .9rem; color: var(--gray); text-decoration: line-through; }
.price-badge { background: rgba(46,204,113,.12); color: var(--green); padding: 2px 8px; border-radius: 6px; font-size: .72rem; font-weight: 700; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 40px 5%; max-width: 1180px; margin: 0 auto; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.gallery { display: flex; flex-direction: column; gap: 14px; }
.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--dark2);
  border: 1px solid rgba(244,96,12,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-main:hover img { transform: scale(1.03); }
.stock-pill {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.35);
  color: var(--green);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
  background: var(--dark2);
}
.thumb.active, .thumb:hover { border-color: var(--orange); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 6px; }
.product-tags { display: flex; gap: 7px; margin-bottom: 14px; flex-wrap: wrap; }
.ptag { background: rgba(244,96,12,.1); border: 1px solid rgba(244,96,12,.22); color: var(--orange2); padding: 3px 11px; border-radius: 50px; font-size: .73rem; font-weight: 700; }
.product-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.product-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.stars { color: var(--gold); font-size: .95rem; }
.review-count { color: var(--gray); font-size: .83rem; }
.review-count a { color: var(--orange); }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price-main { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; }
.price-old { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; }
.price-save { background: rgba(46,204,113,.12); color: var(--green); padding: 3px 9px; border-radius: 6px; font-size: .78rem; font-weight: 700; }
.delivery-note { color: var(--gray); font-size: .83rem; margin-bottom: 20px; display: flex; align-items: center; gap: 5px; }
.delivery-note span { color: var(--green); font-weight: 600; }
.urgency-box {
  background: rgba(244,96,12,.07);
  border: 1px solid rgba(244,96,12,.18);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.urgency-txt { font-size: .86rem; flex: 1; }
.urgency-txt strong { color: var(--orange); font-family: 'Syne', sans-serif; }
.timer { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--orange); background: rgba(244,96,12,.1); padding: 5px 12px; border-radius: 8px; flex-shrink: 0; }
.benefits { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 9px; }
.benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: #ddd; line-height: 1.5; }
.chk { width: 19px; height: 19px; background: rgba(46,204,113,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* Quantity */
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.qty-lbl { font-size: .88rem; color: var(--gray); }
.qty-ctrl { display: flex; align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; overflow: hidden; }
.qbtn { width: 36px; height: 36px; background: rgba(255,255,255,.05); border: none; color: var(--cream); font-size: 1.1rem; cursor: pointer; transition: background .2s; }
.qbtn:hover { background: rgba(244,96,12,.15); }
.qval { width: 42px; text-align: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; background: transparent; border: none; color: var(--cream); }
.stock-hint { color: var(--gray); font-size: .8rem; }
.stock-hint strong { color: var(--orange); }

/* CTA Block */
.cta-block { display: flex; flex-direction: column; gap: 10px; }
.btn-buy {
  background: var(--orange);
  color: white;
  padding: 17px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .25s;
  width: 100%;
}
.btn-buy:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(244,96,12,.3); }
.btn-wa-order {
  background: #25D366;
  color: white;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all .25s;
  width: 100%;
  text-decoration: none;
}
.btn-wa-order:hover { background: #20bd5a; transform: translateY(-2px); color: white; }

/* Payments */
.payments { display: flex; align-items: center; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.pay-lbl { font-size: .76rem; color: var(--gray); font-weight: 500; }
.pay-chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 7px; padding: 4px 10px; font-size: .73rem; font-weight: 700; }
.pay-chip.or { border-color: rgba(244,96,12,.3); color: var(--orange2); }
.pay-chip.wv { border-color: rgba(0,150,255,.3); color: #5BB4FF; }
.pay-chip.mt { border-color: rgba(255,200,0,.3); color: #FFD700; }
.pay-chip.ys { border-color: rgba(128,0,255,.3); color: #B57BFF; }

/* Tabs */
.tabs-area { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 36px; }
.tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.tbtn { padding: 10px 20px; background: none; border: none; border-bottom: 2px solid transparent; color: var(--gray); font-size: .87rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Syne', sans-serif; margin-bottom: -1px; }
.tbtn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tcont { display: none; }
.tcont.active { display: block; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spec-row { display: flex; justify-content: space-between; padding: 11px 14px; background: var(--dark3); border-radius: 9px; font-size: .86rem; }
.sk { color: var(--gray); }
.sv { font-weight: 600; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); padding: 14px 0; }
.faq-q { font-weight: 700; font-size: .92rem; cursor: pointer; display: flex; justify-content: space-between; font-family: 'Syne', sans-serif; }
.faq-a { color: var(--gray); font-size: .86rem; line-height: 1.65; font-weight: 300; display: none; padding-top: 10px; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; margin-top: 40px; }
.why-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 26px; transition: all .3s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.why-card:hover { border-color: rgba(244,96,12,.2); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: .86rem; line-height: 1.62; font-weight: 300; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.rev-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 22px; transition: transform .2s; }
.rev-card:hover { transform: translateY(-3px); }
.reviewer { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--dark3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.rev-name { font-size: .9rem; font-weight: 700; display: block; }
.rev-loc { font-size: .76rem; color: var(--gray); }
.rev-verified { color: var(--green) !important; font-weight: 600 !important; }
.rev-stars { color: var(--gold); font-size: .88rem; margin-bottom: 9px; }
.rev-text { color: #ccc; font-size: .88rem; line-height: 1.62; font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #B03E00 100%); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 28px); }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 14px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 480px; margin: 0 auto 28px; font-weight: 300; position: relative; }
.btn-white { background: white; color: var(--orange); padding: 16px 36px; border-radius: 50px; font-weight: 800; font-size: 1rem; border: none; cursor: pointer; font-family: 'Syne', sans-serif; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; position: relative; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.22); color: var(--orange); }

/* ── FOOTER ── */
footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,.05); padding: 44px 5% 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot-brand p { color: var(--gray); font-size: .86rem; line-height: 1.7; margin-top: 10px; font-weight: 300; max-width: 240px; }
.foot-col h4 { font-size: .82rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: var(--gray); font-size: .86rem; font-weight: 300; transition: color .2s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.foot-bottom p { color: var(--gray); font-size: .8rem; }

/* ── WA FLOAT ── */
@keyframes waBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }

/* ── AI AGENT ── */
.agent-wrap { position: fixed; bottom: 24px; left: 24px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.agent-btn { width: 58px; height: 58px; background: linear-gradient(135deg,#F4600C,#FF7A2F); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; cursor: pointer; box-shadow: 0 6px 24px rgba(244,96,12,.4); border: none; animation: agentPulse 3s ease infinite; transition: transform .2s; }
.agent-btn:hover { transform: scale(1.08); }
@keyframes agentPulse { 0%,100%{box-shadow:0 6px 24px rgba(244,96,12,.4)} 50%{box-shadow:0 6px 36px rgba(244,96,12,.65)} }
.agent-window { width: 320px; background: #1A1A1A; border: 1px solid rgba(244,96,12,.2); border-radius: 20px; overflow: hidden; display: none; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,.6); max-height: 500px; }
.agent-window.open { display: flex; }
.agent-header { background: linear-gradient(135deg,#F4600C,#B03E00); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.agent-header-left { display: flex; align-items: center; gap: 10px; }
.agent-avatar { width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.agent-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; color: white; }
.agent-status { font-size: .72rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 4px; }
.agent-online { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulseDot 1.5s infinite; }
.agent-close { background: rgba(255,255,255,.15); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.agent-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 300px; }
.msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .86rem; line-height: 1.5; animation: msgIn .25s ease; }
@keyframes msgIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.msg.bot { background: #272727; color: #eee; border-radius: 4px 14px 14px 14px; align-self: flex-start; }
.msg.user { background: linear-gradient(135deg,#F4600C,#B03E00); color: white; border-radius: 14px 4px 14px 14px; align-self: flex-end; }
.msg.bot strong { color: #FF7A2F; }
.agent-options { display: flex; gap: 7px; flex-wrap: wrap; padding: 0 16px 10px; }
.opt-btn { background: #272727; border: 1px solid rgba(244,96,12,.25); color: #FF7A2F; padding: 6px 12px; border-radius: 50px; font-size: .78rem; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; }
.opt-btn:hover { background: rgba(244,96,12,.12); border-color: rgba(244,96,12,.5); }
.agent-input-row { padding: 12px 14px; border-top: 1px solid rgba(255,255,255,.07); display: flex; gap: 8px; }
.agent-input { flex: 1; background: #272727; border: 1px solid rgba(255,255,255,.1); border-radius: 50px; padding: 9px 14px; color: #eee; font-size: .85rem; outline: none; font-family: 'DM Sans', sans-serif; }
.agent-input:focus { border-color: rgba(244,96,12,.35); }
.agent-send { background: var(--orange); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.agent-send:hover { background: var(--orange2); }
.lang-toggle { display: flex; gap: 6px; padding: 8px 16px 0; }
.lang-btn { background: #272727; border: 1px solid rgba(255,255,255,.1); color: var(--gray); padding: 4px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; cursor: pointer; transition: all .2s; }
.lang-btn.active { background: rgba(244,96,12,.12); border-color: rgba(244,96,12,.3); color: var(--orange); }
.typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: #272727; border-radius: 4px 14px 14px 14px; align-self: flex-start; width: 56px; }
.typing span { width: 7px; height: 7px; background: var(--gray); border-radius: 50%; animation: typingDot 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.agent-badge { position: absolute; top: -4px; right: -4px; background: var(--red); color: white; width: 18px; height: 18px; border-radius: 50%; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 80px 5% 50px; gap: 32px; }
  .hero-img-wrap { order: -1; }
  .hero h1 { font-size: 2rem; }
  .hf1, .hf2 { display: none; }
  .product-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .specs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 12px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .agent-window { width: 290px; }
  .gallery-thumbs { grid-template-columns: repeat(4,1fr); }
}

/* ── MERCHANT BADGE ── */
.marchand-badge {
  background: linear-gradient(135deg,rgba(181,123,255,.15),rgba(181,123,255,.05));
  border: 1px solid rgba(181,123,255,.35);
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.marchand-logo {
  width: 44px; height: 44px; background: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .7rem; color: #6B21A8;
  text-align: center; line-height: 1.2; flex-shrink: 0; padding: 4px;
}
.marchand-info strong { display:block; font-family:'Syne',sans-serif; font-size:.88rem; font-weight:700; }
.marchand-info span { font-size:.78rem; color: #B57BFF; }
.marchand-verified {
  background: rgba(46,204,113,.12); border: 1px solid rgba(46,204,113,.3);
  color: #2ECC71; padding: 4px 10px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}

/* ── WHY SANDWICH MOBILE ── */
.why-sandwich { display: flex; flex-direction: column; gap: 16px; }
.why-top-cards, .why-bottom-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-center-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.why-center-img img { width: 100%; object-fit: cover; }
@media(min-width:900px) {
  .why-sandwich { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
  .why-top-cards { display: flex; flex-direction: column; gap: 16px; grid-column: 1; grid-row: 1; }
  .why-center-img { grid-column: 2; grid-row: 1 / 3; }
  .why-bottom-cards { display: flex; flex-direction: column; gap: 16px; grid-column: 1; grid-row: 2; }
}

/* ── QR STICKER MIXX BY YAS ── */
.qr-sticker {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
}
.qr-tab {
  background: linear-gradient(135deg, #4A0E8F, #6B21A8);
  color: white;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 12px 8px;
  border-radius: 0 8px 8px 0;
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  box-shadow: 3px 0 12px rgba(107,33,168,.3);
  transition: all .3s;
  white-space: nowrap;
}
.qr-tab:hover { background: linear-gradient(135deg, #5B1199, #7C3ABA); }
.qr-panel {
  position: fixed;
  left: -220px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 0 16px 16px 0;
  padding: 16px;
  width: 200px;
  box-shadow: 4px 0 24px rgba(0,0,0,.3);
  transition: left .3s ease;
  z-index: 997;
}
.qr-panel.open { left: 0; }
.qr-panel-header { text-align: center; margin-bottom: 10px; }
.qr-panel-header strong { display: block; font-family: 'Syne', sans-serif; font-size: .82rem; color: #4A0E8F; font-weight: 800; }
.qr-panel-header span { font-size: .72rem; color: #666; }
.qr-img { width: 100%; border-radius: 8px; border: 2px solid #4A0E8F; }
.qr-code-num { text-align: center; margin-top: 8px; font-family: 'Syne', sans-serif; font-size: .85rem; font-weight: 800; color: #4A0E8F; letter-spacing: 2px; }
.qr-close { position: absolute; top: 8px; right: 10px; background: none; border: none; color: #999; cursor: pointer; font-size: 1rem; }
@media(max-width:600px){ .qr-panel{ width:170px } .qr-tab{ font-size:.65rem;padding:10px 6px } }



/* Bouton WA principal page produit */
.btn-wa-main {
  display: flex !important;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 24px;
  margin-top: 8px;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   