:root{
  /* Light theme */
  --bg:#ffffff;
  --card:#ffffff;
  --card2:#f6f7fb;
  --text:#0b1220;
  --muted:rgba(11,18,32,.72);
  --line:rgba(11,18,32,.14);
  --shadow:0 18px 60px rgba(15,23,42,.12);
  --shadow2:0 14px 34px rgba(15,23,42,.10);
  --brand1:#ffdd55;
  --brand2:#b90cff;
  --ok:#35d07f;
  --danger:#ff4d6d;
  --radius:18px;
  --radius2:14px;
  --container:1120px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  padding-top:66px;
  font-family:var(--font);
  background:#ffffff;
  color:var(--text);
  line-height:1.3;
}
img{max-width:100%;height:auto}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 4px;
}

.bg-orb{
  display:none;
}
.orb-1{display:none;}
.orb-2{display:none;}

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
@media (max-width: 980px){
  .topbar__inner{
    height:auto;
    min-height:56px;
    padding:8px 18px;
  }
  .brand__title{font-size:15px}
  .brand__sub{font-size:11px}
  .brand__contact{font-size:10px;margin-top:3px}
  .brand__contact-icon{font-size:14px}
  .brand__contact:hover{color:rgba(34,197,94,.9)}
  .brand__logo,
  .brand__logo-img{height:36px}
  body{padding-top:80px}
}
.topbar__cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.brand{display:flex;align-items:center;gap:10px;min-width:220px}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(135deg, var(--brand1), var(--brand2));
  box-shadow:0 10px 30px rgba(185,12,255,.22);
}
.brand__logo-link{
  display:flex;
  align-items:center;
  text-decoration:none;
  transition:opacity .2s ease;
}
.brand__logo-link:hover{
  opacity:.85;
}
.brand__logo{
  display:block;
  height:48px;
  width:auto;
}
.brand__logo-img{
  height:48px;
  width:auto;
  display:block;
  object-fit:contain;
}
.brand__title{font-weight:800;letter-spacing:.2px}
.brand__sub{font-size:12px;color:var(--muted);margin-top:2px}
.brand__contact{
  display:inline-block;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  color:var(--text);
  letter-spacing:.1px;
  text-decoration:none;
  transition:color .2s ease, opacity .2s ease;
}
.brand__contact-icon{
  display:inline-block;
  font-size:16px;
  line-height:1;
  margin-right:4px;
  vertical-align:middle;
}
.brand__contact:hover{
  color:rgba(34,197,94,.9);
  opacity:.9;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border:none;cursor:pointer;text-decoration:none;
  padding:12px 16px;border-radius:14px;
  font-weight:800;letter-spacing:.2px;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}
.btn--ghost:hover{border-color:rgba(11,18,32,.24); box-shadow:0 10px 30px rgba(15,23,42,.10)}
.btn--primary{
  color:#ffffff;
  background:linear-gradient(135deg, #00b04a, #2ae878);
  box-shadow:0 16px 40px rgba(34,197,94,.22);
}
.btn--primary:hover{transform:translateY(-1px); box-shadow:0 20px 54px rgba(34,197,94,.28)}
.btn--soft{
  color:var(--text);
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
}
.btn--soft:hover{background:rgba(11,18,32,.06)}
.btn--cta{
  width:100%;
  padding:18px 18px;
  font-size:20px;
  border-radius:16px;
  color:#08110a;
  background:
    radial-gradient(120px 40px at 12% 18%, rgba(255,255,255,.60), transparent 58%),
    linear-gradient(135deg, #22c55e, #a3e635);
  box-shadow:0 22px 60px rgba(34,197,94,.22);
}
.btn--cta:hover{transform:translateY(-1px); box-shadow:0 26px 70px rgba(34,197,94,.26)}

.btn--wa{
  width:100%;
  margin-top:10px;
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(135deg, #1dbf57, #25D366);
  color:#08110a;
  font-size:16px;
  box-shadow:0 18px 54px rgba(29,191,87,.18);
}
.btn--wa:hover{transform:translateY(-1px);box-shadow:0 22px 64px rgba(29,191,87,.22)}

.hero{
  padding:4px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:26px;
  align-items:start;
  justify-items:center;
}
@media (min-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
    align-items:center;
    justify-items:center;
  }
}

.hero__left{
  text-align:center;
  max-width:1100px;
  margin:0 auto;
  width:100%;
}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
  color:var(--text);
  font-size:26px;
  letter-spacing:.6px;
}
.badge--clickable{
  text-decoration:none;
  cursor:pointer;
  transition:all .3s ease;
  background:
    radial-gradient(120px 60px at 50% 50%, rgba(255,77,109,.15), transparent 70%),
    linear-gradient(135deg, rgba(255,77,109,.12), rgba(255,157,42,.08));
  border:2px solid rgba(255,77,109,.3);
  box-shadow:0 8px 32px rgba(255,77,109,.2);
  padding:14px 20px;
  font-weight:900;
  animation:pulse-badge 2s ease-in-out infinite;
}
.badge--clickable:hover{
  transform:translateY(-3px) scale(1.05);
  border-color:rgba(255,77,109,.5);
  box-shadow:0 12px 48px rgba(255,77,109,.3);
  background:
    radial-gradient(140px 70px at 50% 50%, rgba(255,77,109,.25), transparent 70%),
    linear-gradient(135deg, rgba(255,77,109,.18), rgba(255,157,42,.12));
}
.badge__dot{
  width:26px;height:26px;border-radius:99px;
  background:var(--danger);
  box-shadow:0 0 0 6px rgba(255,77,109,.14);
  animation:pulse-dot 1.5s ease-in-out infinite;
}
.badge__arrow{
  font-size:20px;
  margin-left:4px;
  transition:transform .3s ease;
}
.badge--clickable:hover .badge__arrow{
  transform:translateX(4px);
}
@keyframes pulse-badge{
  0%, 100%{box-shadow:0 8px 32px rgba(255,77,109,.2)}
  50%{box-shadow:0 12px 40px rgba(255,77,109,.3)}
}
@keyframes pulse-dot{
  0%, 100%{box-shadow:0 0 0 6px rgba(255,77,109,.14), 0 0 0 0 rgba(255,77,109,.4)}
  50%{box-shadow:0 0 0 6px rgba(255,77,109,.14), 0 0 0 12px rgba(255,77,109,.0)}
}

.hero__title{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.grad{
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero__desc{
  margin:0;
  max-width:62ch;
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
}

.perks{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}
.perk{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--line);
  background:
    radial-gradient(220px 120px at 18% 18%, rgba(255,221,85,.14), transparent 62%),
    radial-gradient(260px 120px at 92% 30%, rgba(185,12,255,.14), transparent 62%),
    linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  box-shadow:var(--shadow2);
  transition:transform .18s ease, border-color .2s ease, box-shadow .2s ease;
}
.perk:hover{
  transform:translateY(-2px);
  border-color:rgba(11,18,32,.22);
  box-shadow:0 26px 70px rgba(15,23,42,.14);
}
.perk__icon{
  width:44px;height:44px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(135deg, rgba(255,221,85,.85), rgba(185,12,255,.55));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 14px 40px rgba(185,12,255,.18);
  font-size:18px;
  flex:0 0 auto;
}
.perk__title{font-weight:900;letter-spacing:.2px}
.perk__text{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.5}

/* Daily Campaign Banner */
.daily-campaign-banner{
  margin-top:24px;
  display:block;
  text-decoration:none;
  color:#ffffff;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  border-radius:20px;
  padding:32px 28px;
  width:100%;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  box-shadow:0 16px 48px rgba(34,197,94,.3);
  transition:all .3s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.daily-campaign-banner::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition:left .8s ease;
}
.daily-campaign-banner:hover::before{
  left:100%;
}
.daily-campaign-banner:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 64px rgba(34,197,94,.4);
  background:linear-gradient(135deg, #16a34a, #15803d);
}
.daily-campaign__header{
  text-align:center;
  margin-bottom:16px;
}
.daily-campaign__title{
  font-weight:900;
  font-size:28px;
  letter-spacing:.5px;
  margin-bottom:8px;
  text-shadow:0 2px 8px rgba(0,0,0,.2);
}
.daily-campaign__subtitle{
  font-weight:800;
  font-size:18px;
  opacity:.95;
  letter-spacing:.3px;
}
.daily-campaign__timer{
  text-align:center;
  margin:20px 0;
  font-weight:900;
  font-size:64px;
  letter-spacing:4px;
  text-shadow:0 4px 12px rgba(0,0,0,.3);
  line-height:1.2;
}
.daily-campaign__time{
  display:inline-block;
  min-width:80px;
  text-align:center;
}
.daily-campaign__separator{
  margin:0 8px;
  opacity:.9;
}
.daily-campaign__price{
  text-align:center;
  margin:20px 0 16px;
  font-size:22px;
  font-weight:800;
  letter-spacing:.5px;
}
.daily-campaign__old-price{
  text-decoration:line-through;
  opacity:.8;
  margin-right:12px;
  font-size:20px;
}
.daily-campaign__new-price{
  font-weight:900;
  font-size:24px;
  text-shadow:0 2px 6px rgba(0,0,0,.2);
}
.daily-campaign__legal{
  text-align:center;
  font-size:24px;
  line-height:1.5;
  opacity:.85;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.2);
}
.daily-campaign__legal strong{
  font-weight:900;
}

.countdown{
  margin-top:18px;
  display:flex;align-items:stretch;gap:10px;
  padding:14px 14px;
  width:fit-content;
  margin-left:auto;
  margin-right:auto;
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow2);
}
.countdown--clickable{
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:all .3s ease;
  background:
    radial-gradient(200px 100px at 50% 50%, rgba(255,221,85,.20), transparent 70%),
    radial-gradient(180px 90px at 50% 50%, rgba(185,12,255,.15), transparent 70%),
    linear-gradient(135deg, rgba(255,221,85,.12), rgba(185,12,255,.08));
  border:2px solid rgba(255,221,85,.4);
  box-shadow:0 12px 48px rgba(255,221,85,.25);
  padding:20px 24px;
  position:relative;
  overflow:hidden;
}
.countdown--clickable::before{
  content:'';
  position:absolute;
  top:0;left:-100%;
  width:100%;height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition:left .6s ease;
}
.countdown--clickable:hover::before{
  left:100%;
}
.countdown--clickable:hover{
  transform:translateY(-4px) scale(1.02);
  border-color:rgba(255,221,85,.6);
  box-shadow:0 16px 64px rgba(255,221,85,.35);
  background:
    radial-gradient(220px 110px at 50% 50%, rgba(255,221,85,.28), transparent 70%),
    radial-gradient(200px 100px at 50% 50%, rgba(185,12,255,.20), transparent 70%),
    linear-gradient(135deg, rgba(255,221,85,.18), rgba(185,12,255,.12));
}
.countdown__item{min-width:92px;text-align:center}
.countdown__value{
  font-weight:900;
  font-size:36px;
  letter-spacing:.8px;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 2px 8px rgba(255,221,85,.3);
}
.countdown--clickable .countdown__value{
  font-size:42px;
}
.countdown__label{
  margin-top:4px;
  font-size:11px;
  color:var(--muted);
  letter-spacing:1px;
  font-weight:800;
}
.countdown__sep{
  font-weight:900;
  font-size:30px;
  opacity:.6;
  margin-top:2px;
}
.countdown__cta{
  display:none;
  align-items:center;
  margin-left:16px;
  padding-left:16px;
  border-left:2px solid var(--line);
  font-weight:900;
  font-size:16px;
  color:var(--brand2);
  white-space:nowrap;
}
.countdown--clickable .countdown__cta{
  display:flex;
}
.countdown--clickable:hover .countdown__cta{
  color:var(--brand1);
  transform:translateX(4px);
  transition:all .3s ease;
}

.hero__stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.stat{
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
}
.stat__label{font-size:12px;color:var(--muted)}
.stat__value{margin-top:6px;font-weight:900;letter-spacing:.2px;color:var(--text)}

.hero__cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.hero__right{
  display:flex;
  justify-content:center;
}

.product-grid{
  display:grid;
  gap:14px;
  max-width:1100px;
  margin:0 auto;
  grid-template-columns:1fr;
}

.product-card{
  display:block;
  background:
    radial-gradient(360px 160px at 16% 10%, rgba(255,221,85,.18), transparent 58%),
    radial-gradient(340px 170px at 92% 24%, rgba(185,12,255,.18), transparent 58%),
    linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.012));
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow2);
  cursor:pointer;
  transition:transform .18s ease, border-color .2s ease, box-shadow .22s ease;
  position:relative;
}
.product-card:hover{transform:translateY(-2px);border-color:rgba(11,18,32,.22);box-shadow:0 26px 70px rgba(15,23,42,.14)}
.product-card__radio{position:absolute;opacity:0;pointer-events:none}
.product-card__media{
  position:relative;
  background:rgba(11,18,32,.04);
  padding:14px;
}
.product-card__media img{
  width:100%;
  height:380px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 18px 26px rgba(15,23,42,.18));
}
.product-card__shine{
  position:absolute;inset:-60px -80px auto auto;
  width:220px;height:220px;
  background:radial-gradient(circle at 40% 40%, rgba(255,255,255,.35), transparent 62%);
  transform:rotate(22deg);
  pointer-events:none;
}
.product-card__body{padding:14px 14px 16px}
.product-card__title{font-weight:900;letter-spacing:.2px}
.product-card__sub{margin-top:4px;color:var(--muted);font-size:13px}
.price{margin-top:10px;display:flex;align-items:baseline;gap:10px}
.price__old{color:rgba(11,18,32,.45);text-decoration:line-through;font-weight:700}
.price__now{font-size:22px;font-weight:900}
.product-card__pick{
  margin-top:12px;
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
  font-weight:800;
  font-size:12px;
}
.product-card__benefit{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.price__old{color:rgba(11,18,32,.45)}

.product-card__actions{margin-top:12px}
.product-card__cta{
  width:100%;
  justify-content:center;
  padding:12px 14px;
  border-radius:16px;
}

.product-card.is-selected{
  border-color:rgba(255,221,85,.55);
  box-shadow:
    0 22px 70px rgba(15,23,42,.18),
    0 0 0 1px rgba(255,221,85,.22),
    0 0 0 6px rgba(255,221,85,.10);
}

@media (min-width: 980px){
  .product-grid{grid-template-columns:repeat(3, 1fr); gap:18px}
  .product-card__media img{height:420px}
}

/* Order qty: product thumbnails */
.qty-visuals{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.qty-visual{
  text-decoration:none;
  color:inherit;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.012));
  padding:16px;
  min-height:400px;
  box-shadow:var(--shadow2);
  transition:transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.qty-visual:hover{transform:translateY(-2px);border-color:rgba(11,18,32,.22);box-shadow:0 18px 50px rgba(15,23,42,.12)}
.qty-visual img{width:100%;height:300px;min-height:360px;object-fit:contain;display:block}
.qty-visual__label{margin-top:6px;font-weight:900;font-size:12px;text-align:center;opacity:.9}
.qty-visual.is-selected{
  border-color:rgba(255,221,85,.70);
  box-shadow:0 18px 56px rgba(255,221,85,.18);
}
.qty-visual-container{
  margin-top:20px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.qty-visual-wrapper{
  width:100%;
  max-width:400px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.qty-visual-wrapper img{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  transition:opacity .3s ease;
}
.product-selection-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:start;
}
.product-selection-side{
  display:flex;
  flex-direction:column;
}

/* Ürün + adet tek blok: görsel sol, adet + ürün seçimi sağ */
.form__section--product-qty .product-selection-grid{
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.product-selection-grid__visual{
  position:relative;
}
.product-selection-grid__visual .qty-visual-wrapper{
  width:100%;
  max-width:100%;
}
.product-selection-grid__visual img{
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  display:block;
}
.product-selection-grid__side{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.order-qty-block .form__title{margin-bottom:8px}
.price-campaign-info--compact{font-size:13px;margin-bottom:10px;color:var(--muted)}
.qty-free-shipping{
  margin:8px 0 12px;
  padding:8px 12px;
  background:linear-gradient(135deg, rgba(34,197,94,.15), rgba(34,197,94,.08));
  border:1px solid rgba(34,197,94,.25);
  border-radius:10px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:#15803d;
  letter-spacing:.2px;
}
.qty--compact{display:flex;flex-wrap:wrap;gap:8px;margin-top:0}
.qty--compact .chip{padding:8px 12px;font-size:13px}
.order-product-block .form__title{margin-bottom:10px}

@media (max-width: 768px){
  .form__section--product-qty .product-selection-grid{grid-template-columns:1fr}
  .product-selection-grid__visual img{max-height:320px}
}

.note{
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
  padding:10px 12px;
  border:1px dashed var(--line);
  border-radius:14px;
  background:rgba(11,18,32,.02);
}
code{
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:12px;
  padding:2px 6px;
  border-radius:10px;
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
  color:var(--text);
}

.order{padding:20px 0 70px}
.order__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:start;
}
.order__heading-wrap{
  margin-top:2px;
}
.order__heading{
  margin:0;
  text-align:center;
  font-size:26px;
  letter-spacing:-.4px;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.order__heading-arrows{
  font-size:20px;
  color:rgba(34,197,94,.7);
  font-weight:900;
  letter-spacing:4px;
}
.order__heading-arrows--left{
  animation:slide-down 2s ease-in-out infinite;
}
.order__heading-arrows--right{
  animation:slide-down 2s ease-in-out infinite;
}
@keyframes slide-down{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(6px)}
}
.order .panel{
  position:relative;
  top:auto;
}

.section{
  padding:24px 0 10px;
}
.section--tight{padding-top:10px}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.section-title{
  margin:0;
  font-size:22px;
  letter-spacing:-.2px;
  color:var(--text);
}
.section-title--clickable{
  text-decoration:none;
  color:var(--text);
  display:inline-block;
  transition:all .3s ease;
  cursor:pointer;
  position:relative;
}
.section-title--clickable:hover{
  color:var(--brand2);
  transform:translateX(4px);
}
.section-title--clickable::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:2px;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  transition:width .3s ease;
}
.section-title--clickable:hover::after{
  width:100%;
}
.section-desc{
  margin:0;
  color:var(--text);  
  max-width:62ch;
  font-size:13px;
  line-height:1.5;
}

/* Product promo images */
#product-promo-images{
  padding:24px 0;
}
.promo-images-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  max-width:720px;
  margin:0 auto;
}
.promo-image-link{
  display:block;
  width:100%;
  border-radius:20px;
  overflow:hidden;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 18px 60px rgba(15,23,42,.12);
}
.promo-image-link:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 80px rgba(15,23,42,.16);
}
.promo-image-link img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* Highlights section: bigger, centered intro + larger feature cards */
#highlights .section-head{
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
  margin-bottom:18px;
}
#highlights .section-desc{
  max-width:56ch;
  font-size:18px;
  line-height:1.35;
  color:var(--text);
  font-weight:800;
  letter-spacing:-.2px;
  text-shadow:none;
  padding:10px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:
    radial-gradient(240px 90px at 18% 40%, rgba(255,221,85,.16), transparent 60%),
    radial-gradient(240px 90px at 86% 42%, rgba(185,12,255,.10), transparent 62%),
    rgba(11,18,32,.02);
}
#highlights .feature-grid{
  margin-top:14px;
  gap:16px;
}
#highlights .feature{
  padding:18px;
}
#highlights .feature__icon{
  width:46px;height:46px;
  border-radius:16px;
  font-size:20px;
}
#highlights .feature__title{
  font-size:16px;
  letter-spacing:-.2px;
}
#highlights .feature__text{
  font-size:14px;
  line-height:1.6;
}

@media (min-width: 1024px){
  #highlights .section-desc{font-size:20px}
  #highlights .feature{padding:20px}
  #highlights .feature__title{font-size:17px}
  #highlights .feature__text{font-size:14.5px}
}

.cta-strip{padding:14px 0 8px}
.cta-strip__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.cta-banner{
  position:relative;
  display:block;
  text-decoration:none;
  border-radius:28px;
  padding:26px 22px 26px;
  border:1px solid rgba(11,18,32,.14);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.cta-banner:hover{transform:translateY(-2px);border-color:rgba(11,18,32,.22);box-shadow:0 26px 70px rgba(15,23,42,.14)}
.cta-banner__small{
  font-weight:900;
  letter-spacing:.2px;
  color:rgba(255,255,255,.90);
  font-size:16px;
  text-align:center;
}
.cta-banner__big{
  margin-top:6px;
  font-weight:900;
  letter-spacing:.6px;
  text-align:center;
  font-size:44px;
  line-height:1.02;
  color:#ffffff;
  text-transform:uppercase;
}
.cta-banner__contact{
  margin-top:10px;
  text-align:center;
  font-size:14px;
  font-weight:700;
  color:rgba(255,255,255,.95);
  letter-spacing:.2px;
}
.cta-banner__cursor{
  position:absolute;
  right:16px;
  top:16px;
  width:62px;
  height:62px;
  background:
    radial-gradient(22px 22px at 30% 30%, rgba(255,255,255,.80), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  clip-path:polygon(10% 6%, 88% 52%, 58% 54%, 76% 88%, 54% 92%, 42% 60%, 16% 78%);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  opacity:.9;
}
.cta-banner--green{
  background:
    radial-gradient(220px 80px at 20% 24%, rgba(255,255,255,.26), transparent 60%),
    linear-gradient(135deg, #00b04a, #2ae878);
}
.cta-banner--amber{
  background:
    radial-gradient(220px 80px at 20% 24%, rgba(255,255,255,.24), transparent 60%),
    linear-gradient(135deg, #ffb020, #ff6b2d);
}

.feature-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.feature{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow2);
  padding:14px;
}
.feature__icon{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  font-size:18px;
}
.feature__title{margin-top:10px;font-weight:900}
.feature__text{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.55}
.cta-inline{margin-top:14px}

.wa-float{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  background:linear-gradient(135deg, #1dbf57, #25D366);
  color:#06130b;
  font-weight:900;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 22px 70px rgba(0,0,0,.55);
  transition:transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover{transform:translateY(-1px);box-shadow:0 26px 80px rgba(0,0,0,.60)}
.wa-float:active{transform:translateY(1px)}
.wa-float__icon{
  width:36px;height:36px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.22);
}
.wa-float__text{color:#08110a}

.live-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:stretch;
}

/* Extra GIF under live order stream */
.live-extra-gif{margin-top:14px;min-height:120px}
.live-extra-gif__link{
  display:block;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.live-extra-gif__link:hover{
  transform:translateY(-2px);
}
.live-extra-gif__img{
  width:100% !important;
  height:auto;
  display:block;
  border-radius:24px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  transition:box-shadow .2s ease;
}
.live-extra-gif__link:hover .live-extra-gif__img{
  box-shadow:0 24px 70px rgba(15,23,42,.16);
  border-color:rgba(11,18,32,.22);
}

/* Image under "SİPARİŞİ TAMAMLA" */
.order-complete-img{margin-top:14px;min-height:120px}
.order-complete-img__img{
  width:100% !important;
  max-width:100%;
  height:auto;
  display:block;
  border-radius:24px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.map-card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:14px;
}
.map-card__top{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.map-card__title{font-weight:900;color:var(--text)}
.map-card__sub{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:12px;font-weight:800}
.dot-live{
  width:8px;height:8px;border-radius:99px;
  background:var(--danger);
  box-shadow:0 0 0 6px rgba(255,77,109,.14);
}
.map-wrap{width:100%}
.tr-map{width:100%;height:auto;display:block}
.map-meta{margin-top:10px;padding:10px 12px;border-radius:16px;background:rgba(11,18,32,.04);border:1px solid var(--line)}
.map-meta__title{font-weight:900;color:var(--text)}
.map-meta__sub{margin-top:4px;color:var(--muted);font-size:12px;line-height:1.45}

.live-card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:14px;
}
.live-card__title{font-weight:900;color:var(--text)}
.live-row{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  border-radius:16px;
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
}
.avatar{
  width:42px;height:42px;border-radius:999px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.55), transparent 70%),
    linear-gradient(135deg, rgba(255,221,85,.9), rgba(185,12,255,.8));
}
.live-row__text{min-width:0}
.live-row__name{font-weight:900;color:var(--text)}
.live-row__sub{margin-top:3px;color:var(--muted);font-size:12px}
.live-row__right{text-align:right;margin-left:auto}
.live-row__qty{font-weight:900;color:var(--text)}
.live-row__pill{
  margin-top:6px;
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.26);
  color:rgba(163,230,53,.95);
}
.live-list{margin-top:10px;display:grid;gap:8px}
.live-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(11,18,32,.02);
}
.live-item__name{font-weight:900;font-size:13px;color:var(--text)}
.live-item__sub{margin-top:3px;color:var(--muted);font-size:12px}
.live-item__right{font-weight:900;color:rgba(11,18,32,.85);font-size:12px;text-align:right}

.review-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
@media (max-width: 980px){
  .review-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .review-grid{grid-template-columns:1fr}
}
.review-card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow2);
  padding:14px;
}
.review-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.stars{color:#ffb020;font-size:14px;letter-spacing:1px}
.verified{color:rgba(163,230,53,.95);font-weight:900;font-size:12px}
.review-meta{margin-top:8px;color:var(--muted);font-size:12px}
.review-text{margin:10px 0 0;color:rgba(11,18,32,.88);font-size:13px;line-height:1.55}

.panel{
  position:sticky;
  top:88px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:16px;
}
.panel__title{font-weight:900;font-size:18px;color:var(--text)}
.panel__desc{margin-top:6px;color:var(--muted);font-size:13px;line-height:1.5}
.summary{margin-top:14px;padding:12px;border-radius:16px;background:rgba(11,18,32,.04);border:1px solid var(--line)}
.summary__row{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px solid var(--line)}
.summary__row:last-child{border-bottom:none}
.summary__label{color:var(--muted);font-size:12px}
.summary__value{font-weight:800}
.muted{color:rgba(11,18,32,.45);text-decoration:line-through;margin-right:8px}
.trust{margin-top:14px;display:grid;gap:8px}
.trust__item{font-size:13px;color:rgba(11,18,32,.78)}

.form{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,18,32,.03), rgba(11,18,32,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:16px;
}
.form__section{padding:10px 0 16px}
.form__section + .form__section{border-top:1px solid var(--line)}

/* Sipariş hata kutusu - belirgin uyarı */
.order-error-box{
  background:linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  border:2px solid #dc2626;
  border-radius:var(--radius);
  padding:24px;
  margin-bottom:20px;
  box-shadow:0 10px 40px rgba(220,38,38,.35);
}
.order-error-box__title{
  font-size:18px;
  font-weight:900;
  color:#fff;
  margin:0 0 12px;
  letter-spacing:.5px;
}
.order-error-box__text{
  color:rgba(255,255,255,.95);
  margin:0;
  line-height:1.6;
  font-size:15px;
}
.order-error-box__list{
  margin:10px 0 0;
  padding-left:20px;
  color:#fecaca;
  font-weight:700;
  line-height:1.8;
  font-size:14px;
}
.order-error-box__list li{
  margin-bottom:4px;
}

.form__title{
  font-weight:900;
  letter-spacing:.8px;
  font-size:12px;
  color:var(--text);
}
.hint{margin-top:8px;color:rgba(11,18,32,.52);font-size:12px}

.price-campaign-info{
  margin:8px 0 14px;
  padding:12px 16px;
  background:linear-gradient(135deg, rgba(34,197,94,.12) 0%, rgba(34,197,94,.06) 100%);
  border:1px solid rgba(34,197,94,.35);
  border-radius:12px;
  font-size:13px;
  line-height:1.5;
  color:var(--text);
}
.price-campaign-info strong{color:#15803d;}

.qty{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.chip{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(11,18,32,.03);
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease;
  cursor:pointer;
  touch-action:manipulation;
}
.chip input{accent-color:var(--brand1)}
.chip span{font-weight:800}
.chip:has(input:checked){
  border-color:rgba(34,197,94,.5);
  background:rgba(34,197,94,.08);
  box-shadow:0 0 0 1px rgba(34,197,94,.2);
}

.radio-list{display:grid;gap:10px;margin-top:10px}
.radio-card{
  display:flex;align-items:center;gap:12px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(11,18,32,.03);
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
  touch-action:manipulation;
}
.radio-card:hover{border-color:rgba(11,18,32,.22);background:rgba(11,18,32,.05)}
.radio-card:has(input:checked){
  border-color:rgba(34,197,94,.5);
  background:rgba(34,197,94,.08);
  box-shadow:0 0 0 1px rgba(34,197,94,.2);
}
.radio-card input{accent-color:var(--brand2)}
.radio-card__main{display:flex;justify-content:space-between;align-items:baseline;gap:12px;width:100%}
.radio-card__title{font-weight:900}
.radio-card__sub{color:rgba(11,18,32,.68);font-weight:800}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.field{margin-top:14px}
.field__label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:rgba(11,18,32,.85);
  margin:0 0 8px;
  letter-spacing:.1px;
}
.field__input{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:2px solid var(--line);
  background:#ffffff;
  font-size:15px;
  font-weight:500;
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 2px 4px rgba(11,18,32,.04);
}
.field__input:focus{
  border-color:rgba(34,197,94,.5);
  box-shadow:0 0 0 4px rgba(34,197,94,.1), 0 2px 8px rgba(11,18,32,.08);
  background:#ffffff;
}
.field__input::placeholder{
  color:rgba(11,18,32,.45);
  font-weight:400;
}
.field__textarea{
  resize:vertical;
  min-height:110px;
  padding:14px 16px;
}

.form__actions{margin-top:14px}
.fineprint{margin-top:10px;color:rgba(11,18,32,.62);font-size:12px;line-height:1.45}

/* Hero top GIF */
.hero-gif{padding:0}
.hero-gif__cta-wrap{
  margin-top:12px;
  margin-bottom:12px;
  display:flex;
  justify-content:center;
}
.hero-gif__cta-banner{
  width:min(760px, 100%);
}
.hero-gif__frame{
  border-radius:24px;
  overflow:hidden;
  border:none;
  background:transparent;
  box-shadow:none;
  transition:transform .2s ease;
  max-width:1200px;
  margin:0 auto;
}
.hero-gif__frame:hover{
  transform:translateY(-2px);
}
.hero-gif__frame img,
.hero-gif__frame video{
  width:100%;
  max-width:100%;
  height:680px;
  min-height:200px;
  object-fit:contain;
  display:block;
  transition:transform .2s ease;
}
.hero-gif__frame:hover img,
.hero-gif__frame:hover video{
  transform:scale(1.01);
}
@media (max-width: 980px){
  .hero-gif__frame img,
  .hero-gif__frame video{height:500px;min-height:180px}
  .hero-gif__frame{max-width:100%}
}
@media (max-width: 520px){
  .hero-gif{padding-top:4px}
  .hero-gif__frame{border-radius:18px}
  .hero-gif__frame img,
  .hero-gif__frame video{height:auto;min-height:220px;max-height:360px}
  .brand__logo,
  .brand__logo-img{height:40px}
  .footer__logo,
  .footer__logo-img{height:56px}
}

/* (Removed) toast popup styles: new sipariş akışı artık harita alanında gösteriliyor. */

@media (max-width: 980px){
  .order__grid{grid-template-columns:1fr}
  .panel{position:relative;top:auto}
  .hero__title{font-size:36px}
  .product-card__media img{height:320px}
  .qty-visual{min-height:350px}
  .qty-visual img{min-height:310px}
  .live-grid{grid-template-columns:1fr}
  .review-grid{grid-template-columns:repeat(2,1fr)}
  .cta-strip__grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .perks{grid-template-columns:1fr}
  .countdown--clickable .countdown__value{font-size:36px}
  .countdown--clickable .countdown__cta{font-size:14px;margin-left:12px;padding-left:12px}
  .badge--clickable{font-size:22px}
  .daily-campaign__timer{font-size:56px}
  .daily-campaign__title{font-size:24px}
}
@media (max-width: 520px){
  .countdown{width:100%;justify-content:space-between}
  .countdown__item{min-width:auto;flex:1}
  .countdown--clickable .countdown__value{font-size:32px}
  .countdown--clickable .countdown__cta{display:none}
  .badge--clickable{font-size:20px;padding:12px 16px}
  .badge__arrow{font-size:16px}
  .daily-campaign-banner{padding:24px 18px}
  .daily-campaign__title{font-size:22px}
  .daily-campaign__subtitle{font-size:16px}
  .daily-campaign__timer{font-size:48px;letter-spacing:2px}
  .daily-campaign__time{min-width:60px}
  .daily-campaign__price{font-size:18px}
  .daily-campaign__old-price{font-size:16px}
  .daily-campaign__new-price{font-size:20px}
  .daily-campaign__legal{font-size:10px}
  .grid2{grid-template-columns:1fr}
  .hero__title{font-size:32px}
  .section-head{flex-direction:column;align-items:flex-start}
  .review-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .cta-banner__big{font-size:28px}
  .wa-float__text{display:none}
  .topbar__inner{height:auto;min-height:56px;padding:8px 18px}
  .topbar__cta{width:100%;margin-top:8px}
  .topbar__cta .btn{flex:1;font-size:13px;padding:10px 12px}
  .brand__title{font-size:14px}
  .brand__sub{font-size:10px;margin-top:1px}
  .brand__contact{font-size:9px;margin-top:2px}
  .brand__contact-icon{font-size:12px}
  .brand__contact:hover{color:rgba(34,197,94,.9)}
  .brand__logo,
  .brand__logo-img{height:32px}
  body{padding-top:120px}
}

/* Bigger, easier taps on small screens - görsellerin mobilde kesilmemesi */
@media (max-width: 520px){
  .qty-visual{min-height:280px;padding:14px}
  .qty-visual img{width:100%;height:auto;min-height:240px;object-fit:contain}
  .product-card__media{padding:16px}
  .product-card__media img{max-width:100%;height:auto}
  .product-card__body{padding:16px 16px 18px}
  .product-card__cta{padding:14px 16px}
  .product-selection-grid{grid-template-columns:1fr;gap:20px}
  .qty-visual-wrapper img,
  #productImage{max-width:100%;height:auto;min-height:180px}
  .promo-image-link img,
  .order-complete-img__img{max-width:100%;height:auto;display:block}
}

/* Trust icons */
.trust-icons{
  margin-top:18px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.trust-icon{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:16px;
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
}
.trust-icon__icon{font-size:20px}
.trust-icon__text{font-weight:800;font-size:13px;color:var(--text)}

/* Hero product showcase */
.hero-product-showcase{
  margin-bottom:24px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.hero-product-main{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  padding:20px;
}
.hero-product-main img{
  width:100%;
  height:auto;
  max-height:500px;
  object-fit:contain;
  display:block;
}
.hero-product-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.hero-product-detail{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow2);
  padding:14px;
}
.hero-product-detail img{
  width:100%;
  height:auto;
  max-height:200px;
  object-fit:contain;
  display:block;
}

/* Product filters */
.product-filters{
  margin-bottom:20px;
  padding:16px;
  border-radius:18px;
  background:rgba(11,18,32,.02);
  border:1px solid var(--line);
  display:grid;
  gap:14px;
}
.filter-group{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.filter-label{
  font-weight:800;
  font-size:13px;
  color:var(--text);
  min-width:80px;
}
.filter-options{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.filter-chip{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(11,18,32,.03);
  font-weight:800;
  font-size:12px;
  cursor:pointer;
  transition:all .2s ease;
  color:var(--text);
}
.filter-chip:hover{
  border-color:rgba(11,18,32,.24);
  background:rgba(11,18,32,.06);
}
.filter-chip.active{
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  border-color:transparent;
  color:#0b0f1a;
}

/* Review rating */
.review-rating{
  margin-bottom:20px;
  padding:16px;
  border-radius:18px;
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.review-rating__stars{
  font-size:24px;
  color:#ffb020;
  letter-spacing:2px;
}
.review-rating__score{
  font-weight:900;
  font-size:20px;
  color:var(--text);
}
.review-rating__count{
  color:var(--muted);
  font-size:14px;
}

/* Technical specs */
.specs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:20px;
}
.specs-visual{
  border-radius:18px;
  background:rgba(11,18,32,.02);
  border:1px solid var(--line);
  padding:20px;
}
.specs-drawing__main{
  text-align:center;
  margin-bottom:20px;
  display:block;
  text-decoration:none;
  cursor:pointer;
  transition:transform .2s ease, opacity .2s ease;
}
.specs-drawing__main:hover{
  transform:scale(1.02);
  opacity:0.9;
}
.specs-drawing__main img{
  max-width:100%;
  width:100%;
  height:auto;
  min-height:180px;
  max-height:400px;
  object-fit:contain;
  display:block;
}
.specs-measurements{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.measurement{
  padding:12px;
  border-radius:14px;
  background:rgba(11,18,32,.04);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:4px;
}
.measurement__label{
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}
.measurement__value{
  font-size:18px;
  font-weight:900;
  color:var(--text);
}
.specs-list{
  display:grid;
  gap:12px;
}
.spec-item{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.spec-item__label{
  font-weight:800;
  color:var(--muted);
  font-size:14px;
}
.spec-item__value{
  font-weight:900;
  color:var(--text);
  font-size:15px;
}

/* Lifestyle cards */
.lifestyle-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lifestyle-card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow2);
  transition:transform .18s ease, box-shadow .2s ease;
}
.lifestyle-card:hover{
  transform:translateY(-2px);
  box-shadow:0 26px 70px rgba(15,23,42,.14);
}
.lifestyle-card__image{
  width:100%;
  height:240px;
  overflow:hidden;
  background:rgba(11,18,32,.04);
}
.lifestyle-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.lifestyle-card__content{
  padding:16px;
}
.lifestyle-card__title{
  margin:0 0 8px;
  font-weight:900;
  font-size:18px;
  color:var(--text);
}
.lifestyle-card__text{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

/* Campaign banner */
.campaign-banner{
  padding:24px 0;
  background:
    radial-gradient(400px 200px at 50% 50%, rgba(255,221,85,.20), transparent 70%),
    linear-gradient(135deg, rgba(255,221,85,.12), rgba(185,12,255,.08));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.campaign-banner__content{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  text-align:center;
}
.campaign-banner__icon{
  font-size:48px;
}
.campaign-banner__text{
  flex:1;
  min-width:200px;
}
.campaign-banner__title{
  font-weight:900;
  font-size:24px;
  color:var(--text);
  margin-bottom:4px;
}
.campaign-banner__sub{
  color:var(--muted);
  font-size:14px;
}
.campaign-banner__cta{
  white-space:nowrap;
}

/* FAQ */
.faq-list{
  margin-top:20px;
  display:grid;
  gap:12px;
}
.faq-item{
  border-radius:16px;
  background:rgba(11,18,32,.03);
  border:1px solid var(--line);
  overflow:hidden;
}
.faq-item__question{
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:800;
  color:var(--text);
  transition:background .2s ease;
}
.faq-item__question:hover{
  background:rgba(11,18,32,.05);
}
.faq-item__icon{
  font-size:24px;
  font-weight:900;
  color:var(--brand2);
  transition:transform .2s ease;
}
.faq-item.active .faq-item__icon{
  transform:rotate(45deg);
}
.faq-item__answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease, padding-top .3s ease, padding-bottom .3s ease;
  padding:0 18px;
}
.faq-item.active .faq-item__answer{
  max-height:1000px;
  padding:0 18px 16px;
}
.faq-item__answer p{
  margin:0;
  padding-top:12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* Footer */
.footer{
  margin-top:60px;
  padding:40px 0 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(11,18,32,.04), transparent 70%),
    rgba(11,18,32,.02);
  border-top:1px solid var(--line);
}
.footer__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
  margin-bottom:32px;
}
.footer__title{
  margin:0 0 14px;
  font-weight:900;
  font-size:16px;
  color:var(--text);
}
.footer__content{
  display:grid;
  gap:10px;
}
.footer__text{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.footer__link{
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
  transition:color .2s ease;
  display:block;
}
.footer__link:hover{
  color:var(--text);
}
.footer__wa-btn{
  width:100%;
  margin-top:8px;
}
.footer__bottom{
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer__logo{
  display:block;
  height:64px;
  width:auto;
  margin-bottom:12px;
}
.footer__logo-img{
  height:64px;
  width:auto;
  display:block;
  object-fit:contain;
}
.footer__company-name{
  margin:0 0 4px;
  font-weight:900;
  color:var(--text);
}
.footer__company-info{
  margin:0;
  color:var(--muted);
  font-size:12px;
}
.footer__legal{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer__sep{
  color:var(--muted);
  font-size:12px;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .hero-product-showcase{grid-template-columns:1fr;margin-bottom:20px}
  .hero-product-details{grid-template-columns:repeat(2,1fr)}
  .specs-grid{grid-template-columns:1fr}
  .lifestyle-grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
  .footer__bottom{flex-direction:column;text-align:center}
}
@media (max-width: 520px){
  .trust-icons{flex-direction:column;align-items:stretch}
  .hero-product-details{grid-template-columns:1fr}
  .filter-group{flex-direction:column;align-items:flex-start}
  .filter-label{min-width:auto}
  .specs-measurements{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .campaign-banner__content{flex-direction:column}
}
