:root {
  /* SMS design system 2026: emerald accent · ink structure · airy light surfaces.
     Tek tutarlı sistem — eski mavi aksan tamamen kaldırıldı, kırmızı yalnız logo görselinde. */
  --accent: #0ba884;          /* zümrüt yeşili — birincil aksan (CTA, vurgu, hover) */
  --accent-dark: #08876a;
  --accent-darker: #066750;
  --accent-tint: #e6f8f2;     /* çok açık yeşil zemin */
  --accent-tint-2: #f0fbf7;
  --accent-tint-border: #c4ecdf;
  --accent-ring: rgba(11, 168, 132, 0.22);

  /* Geriye dönük isimler — hepsi artık zümrüt aksana bağlı (eski kırmızı/mavi kalıntıları nötralize) */
  --red: var(--accent);
  --red-dark: var(--accent-dark);
  --brand: var(--accent);
  --brand-dark: var(--accent-dark);
  --brand-tint: var(--accent-tint);
  --brand-tint-border: var(--accent-tint-border);
  --green: var(--accent);
  --blue: #14161c;            /* koyu yapısal ton (aksan değil) */
  --blue-dark: #0b0c10;
  --blue-tint: #f2f7f4;       /* yeşile çalan çok açık nötr yüzey (eski mavi tint yerine) */
  --blue-soft: var(--accent);

  /* Danger yalnız gerçek hata/uyarı (form, başarısız sipariş) — markadan bağımsız semantik kırmızı */
  --danger: #e5484d;
  --danger-dark: #c93b40;
  --danger-bg: #fff1f1;

  /* Nötr iskele — açık & minimal */
  --ink: #0e0f11;             /* ana metin / yapı rengi */
  --ink-2: #3c4046;           /* ikincil koyu */
  --black: #0e0f11;
  --carbon: #16171a;
  --soft-black: #232529;
  --white: #ffffff;
  --off-white: #f7f8f7;
  --surface: #f2f4f3;
  --border: #ebedec;          /* ince hairline (daha açık) */
  --line: #f0f1f0;            /* en açık ayraç */
  --text: #6a7079;            /* muted gövde metni */
  --muted: #9aa0a7;

  --shadow: 0 24px 60px rgba(14, 15, 17, 0.10);
  --shadow-sm: 0 6px 22px rgba(14, 15, 17, 0.06);
  --shadow-accent: 0 14px 30px rgba(11, 168, 132, 0.24);

  --container: 1200px; /* geniş ekranda içerik dağılmasın — kompakt premium çerçeve */
  --pad: 48px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 26px;
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.container {
  width: min(100% - calc(var(--pad) * 2), var(--container));
  margin-inline: auto;
}

.section-pad { padding: 72px 0; }
/* Sayfanın ilk bölümü header'a çok yakın olsun (kategori sayfasıyla aynı üst aralık). */
#main > .section-pad:first-child,
#main > .contact-hero:first-child { padding-top: 26px; }
.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: 0;
  line-height: 1.04;
}
h1 { max-width: 760px; font-size: clamp(34px, 5vw, 64px); font-weight: 900; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; }
h3 { font-size: 24px; font-weight: 800; }
p { margin: 0; color: var(--text); }
.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: var(--white); border-color: var(--border); color: var(--black); }
.btn-outline:hover { background: var(--off-white); border-color: var(--black); }
.btn-outline.dark { background: transparent; border-color: rgba(255,255,255,0.24); color: var(--white); }
.btn-outline.dark:hover { background: var(--white); color: var(--black); }
.btn-small { min-height: 40px; padding: 0 13px; font-size: 13px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  isolation: isolate;
}

.campaign-bar {
  min-height: 46px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  transition: background 0.4s ease, color 0.4s ease;
}
/* Preset tonlar — admin "custom" seçmezse bunlar kullanılır. Custom seçilirse master.blade
   inline background basar (bu sınıflar override edilir), yani 1-2 renk tamamen dinamiktir. */
.campaign-bar.tone-black {
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(11,168,132,0.30), transparent 55%),
    linear-gradient(90deg, #0b0c10 0%, #14161c 58%, #0d1512 100%);
}
.campaign-bar.tone-red {
  background: linear-gradient(90deg, #0ba884 0%, #08876a 52%, #066750 100%);
}
.campaign-bar.tone-carbon {
  background: linear-gradient(90deg, #16171a 0%, #232529 52%, #0e0f11 100%);
}
.campaign-bar.tone-light {
  background: linear-gradient(90deg, #f0fbf7 0%, #ffffff 50%, #e6f8f2 100%);
  color: var(--ink);
}
.campaign-shell {
  min-height: 46px;
  display: grid;
  /* Son kolon `auto` (sabit rezerve YOK): sayaç/dots yoksa kolon çöker,
     esnek track (1fr) sayacı her durumda sağ kenara iter. */
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}
/* Rozet gizliyken (slide başlığıyla mükerrer) ilk kolon düşer — track yine 1fr, sayaç sağda */
.campaign-shell--no-badge {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
.campaign-label {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.campaign-bar.tone-light .campaign-label {
  border-color: rgba(14,15,17,0.14);
  background: rgba(14,15,17,0.05);
  color: rgba(14,15,17,0.72);
}
.campaign-track {
  position: relative;
  min-height: 46px;
  overflow: hidden;
}
.campaign-slide {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(.2,.8,.2,1), transform 0.4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.campaign-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.campaign-slide.is-leaving { opacity: 0; transform: translateY(-10px); }
.campaign-slide strong { font-weight: 800; letter-spacing: -0.01em; }
.campaign-slide span { color: rgba(255,255,255,0.60); font-weight: 500; }
.campaign-slide.is-active strong {
  animation: campaignTextIn 0.5s cubic-bezier(.2,.8,.2,1) both;
}
.campaign-slide.is-active span {
  animation: campaignTextIn 0.5s cubic-bezier(.2,.8,.2,1) 0.07s both;
}
.campaign-slide[data-tone="red"],
.campaign-slide[data-tone="carbon"],
.campaign-slide[data-tone="light"] { background: transparent; }
.campaign-slide strong { color: #fff; }
.campaign-bar.tone-light .campaign-slide span { color: rgba(14,15,17,0.58); }
.campaign-bar.tone-light .campaign-slide strong { color: var(--ink); }
.campaign-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.campaign-dots { display: flex; gap: 5px; }
.campaign-dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,0.42);
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}
.campaign-dots button.is-active { width: 18px; background: #fff; }
.campaign-bar.tone-light .campaign-dots button { background: rgba(14,15,17,0.22); }
.campaign-bar.tone-light .campaign-dots button.is-active { background: var(--accent); }
.campaign-countdown {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 9px;
  padding: 3px 5px 3px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
  white-space: nowrap;
}
.countdown-label {
  color: rgba(255,255,255,0.66);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.campaign-countdown strong {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.campaign-countdown strong span {
  min-width: 17px;
  text-align: center;
}
.campaign-countdown small {
  color: rgba(255,255,255,0.52);
  font-size: 10px;
  font-weight: 700;
}
.campaign-countdown i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  opacity: 0.9;
}
.campaign-bar.tone-light .campaign-countdown {
  border-color: rgba(14,15,17,0.12);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.campaign-bar.tone-light .countdown-label { color: rgba(14,15,17,0.56); }
.campaign-bar.tone-light .campaign-countdown strong { background: rgba(14,15,17,0.07); color: var(--ink); }
.campaign-bar.tone-light .campaign-countdown small { color: rgba(14,15,17,0.46); }
.campaign-bar.tone-light .campaign-countdown i { background: var(--accent); }

@keyframes campaignTextIn {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-header {
  position: relative;
  z-index: 40;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.header-grid {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}
/* Logo PNG'si gerçek içerik oranında (772x370 ≈ 2.09) kırpıldı — width:auto ile
   kutu görsele eşit olur, sabit en/boy dayatması yok (eski 158x54 kutu logoyu küçük gösteriyordu). */
.brand img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 5px 5px 5px 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-form:focus-within {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--accent-ring);
}
.search-icon { width: 20px; margin-left: 12px; color: var(--muted); flex: 0 0 auto; }
.search-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  min-width: 120px;
}
.search-submit {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.search-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}
.search-submit svg { width: 20px; }
.search-form input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 80;
}
.header-tools a, .menu-toggle {
  min-height: 46px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.header-tools a:hover, .menu-toggle:hover {
  border-color: var(--accent-tint-border);
  background: var(--accent-tint);
  color: var(--accent-dark);
  transform: translateY(-1px);
}
.header-tools svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-tools a > span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}
.header-tools small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  transition: color 0.2s ease;
}
.header-tools a:hover small { color: var(--accent-dark); }
.cart-link { position: relative; gap: 8px; }
.cart-link b {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.menu-toggle { display: none; width: 46px; padding: 0; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }

.nav-bar {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: none;
}
.nav-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: visible;
  overflow-y: visible;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar {
  display: none;
}
.nav-item { position: static; margin-inline: 0; }
.nav-item.has-mini { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s ease, background 0.18s ease;
}
/* Temiz alt-çizgi hover — eski clunky mavi kutu/zıplama kaldırıldı */
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.24s cubic-bezier(.2,.8,.2,1), opacity 0.24s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--accent-dark); background: transparent; }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); opacity: 1; }
.nav-link:hover .nav-icon { color: var(--accent); }
/* Çapa "Tüm Ürünler" = dolu ink pill, hover'da zümrüte döner (temiz, premium). */
.nav-trigger {
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  padding: 0 16px;
  border-radius: 11px;
  box-shadow: none;
}
.nav-trigger::after { display: none; }
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  background: var(--accent);
  color: var(--white);
}
.nav-trigger:hover .nav-icon,
.nav-item:hover > .nav-trigger .nav-icon { color: #fff; }
.nav-trigger .nav-chevron { transition: transform 0.24s ease; }
.nav-item:hover > .nav-trigger .nav-chevron { transform: rotate(180deg); }
.nav-link .nav-icon { color: var(--muted); transition: color 0.18s ease; }
.nav-trigger .nav-icon { color: rgba(255,255,255,0.9); }
.nav-link svg { width: 14px; height: 14px; }
.nav-link svg.nav-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-link svg.nav-chevron {
  width: 13px;
  height: 13px;
  margin-left: 2px;
  opacity: 0.85;
}
.push-right { margin-left: auto; }
.nav-cta {
  justify-content: center;
  padding: 0 16px;
}
.nav-cta.sale {
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
  border: none;
}
.nav-cta.sale::after { display: none; }
.nav-cta.sale:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-cta.sale:hover .nav-icon { color: #fff; }
.nav-cta.trend {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
  border: none;
}
.nav-cta.trend::after { display: none; }
.nav-cta.trend:hover {
  background: var(--soft-black);
  color: var(--white);
  transform: translateY(-1px);
}
.mini-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 30;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(9,9,11,0.14);
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.has-mini:hover .mini-menu,
.has-mini:focus-within .mini-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mini-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 10px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}
.mini-menu a .nav-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--red);
}
.mini-menu a:hover {
  background: var(--off-white);
  color: var(--red);
}
.nav-sale { margin-left: auto; color: var(--red); }
.nav-trend { color: var(--black); }
.nav-sale::before { content: "↗"; font-weight: 900; }
.nav-trend::before { content: "★"; color: var(--red); font-size: 12px; }
.nav-trigger svg { width: 16px; }
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.995);
  transform-origin: top center;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 32px 70px -20px rgba(14,15,17,0.20);
  transition: opacity 0.24s cubic-bezier(.2,.8,.2,1), transform 0.24s cubic-bezier(.2,.8,.2,1), visibility 0.24s ease;
}
.mega-menu.is-open,
.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mega-panel {
  display: grid;
  grid-template-columns: 1.05fr repeat(5, 1fr);
  gap: 14px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.mega-feature {
  min-height: 392px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  border-radius: 18px;
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(11,168,132,0.42), transparent 55%),
    linear-gradient(160deg, #0f1613 0%, #0b0c10 100%);
  color: var(--white);
}
.mega-feature small {
  color: #6ee7b7;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mega-feature strong { max-width: 250px; font-family: var(--font-head); font-size: 26px; font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
.mega-feature p { color: rgba(255,255,255,0.64); font-size: 13.5px; font-weight: 500; }
.mega-feature a {
  width: max-content;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.18s ease;
}
.mega-feature a:hover { background: var(--accent-dark); transform: translateY(-1px); }
.mega-column h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mega-column a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 60px;
  padding: 9px;
  border-radius: 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.mega-column a:hover {
  background: var(--accent-tint-2);
  transform: translateX(2px);
}
.mega-column a > span:last-child {
  min-width: 0;
}
.mega-column b {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.22;
}
.mega-column a:hover b { color: var(--accent-dark); }
.mega-column small {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 11.7px;
  font-weight: 500;
  line-height: 1.35;
}
.mega-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-2);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.mega-icon-svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mega-column a:hover .mega-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.mega-icon.sale {
  border-color: var(--accent-tint-border);
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.mega-icon.hot {
  border-color: var(--accent-tint-border);
  background: var(--accent-tint);
  color: var(--accent-dark);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  background: rgba(7, 17, 31, 0.64);
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(10px);
}
.mobile-drawer.is-open { visibility: visible; opacity: 1; }
.drawer-panel {
  width: min(92vw, 430px);
  height: 100%;
  margin-left: auto;
  padding: 16px;
  background:
    radial-gradient(circle at 86% 0%, rgba(96,165,250,0.2), transparent 30%),
    linear-gradient(180deg, rgba(239,246,255,0.96), rgba(255,255,255,0.98) 210px),
    var(--white);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  box-shadow: -24px 0 70px rgba(7,17,31,0.24);
}
.mobile-drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(37,99,235,0.08);
  backdrop-filter: blur(16px);
}
.drawer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.drawer-brand img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.drawer-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: #fff;
  color: var(--black);
  box-shadow: 0 10px 24px rgba(9,9,11,0.06);
}
.drawer-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
}
.drawer-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.drawer-action-row a {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 12px;
  border: 1px solid #dce5f2;
  border-radius: 16px;
  background: #fff;
  color: var(--black);
  box-shadow: 0 12px 26px rgba(9,9,11,0.045);
}
.drawer-action-row .nav-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-dark);
}
.drawer-action-row small,
.drawer-action-row strong {
  display: block;
  line-height: 1.15;
}
.drawer-action-row small {
  margin-bottom: 3px;
  color: #7a8494;
  font-size: 11px;
  font-weight: 900;
}
.drawer-action-row strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 950;
}
.drawer-nav {
  display: grid;
  gap: 9px;
}
.drawer-link {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(9,9,11,0.035);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.drawer-link:hover {
  transform: translateX(-2px);
  border-color: rgba(37,99,235,0.24);
  background: #fff;
  box-shadow: 0 14px 28px rgba(37,99,235,0.08);
}
.drawer-link-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 13px;
  background: var(--blue-tint);
  color: var(--blue-dark);
}
.drawer-link-icon .nav-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.drawer-link strong {
  min-width: 0;
  color: var(--black);
  font-size: 15.5px;
  font-weight: 950;
  line-height: 1.18;
}
.drawer-link-arrow {
  width: 20px;
  height: 20px;
  color: #9aa3af;
}
.drawer-link--sale .drawer-link-icon {
  border-color: rgba(5,150,105,0.16);
  background: var(--brand-tint);
  color: var(--brand-dark);
}
.drawer-link--sale .drawer-link-arrow {
  color: var(--brand-dark);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 640px;
  padding: 78px 0 86px;
  background:
    radial-gradient(circle at 82% 16%, rgba(5, 150, 105,0.34), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,0.1), transparent 32%),
    linear-gradient(116deg, #060607 0%, #101116 38%, #190407 72%, #32080f 100%);
}
.hero-slide[data-tone="carbon"] {
  background:
    radial-gradient(circle at 77% 18%, rgba(5, 150, 105,0.25), transparent 23%),
    radial-gradient(circle at 85% 78%, rgba(255,255,255,0.1), transparent 28%),
    linear-gradient(116deg, #060607 0%, #111318 40%, #14161c 68%, #240509 100%);
}
.hero-slide[data-tone="light"] {
  background:
    radial-gradient(circle at 80% 16%, rgba(247,247,248,0.18), transparent 23%),
    radial-gradient(circle at 75% 78%, rgba(5, 150, 105,0.24), transparent 29%),
    linear-gradient(116deg, #060607 0%, #101116 38%, #24262b 70%, #3b3b3f 100%);
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: -18% -10% -18% 43%;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255,255,255,0.09) 22.2% 22.55%, transparent 22.8% 100%),
    linear-gradient(70deg, transparent 0 42%, rgba(255,255,255,0.065) 42.2% 42.55%, transparent 42.8% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 9px);
  opacity: 0.5;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
  pointer-events: none;
  animation: heroLinesDrift 12s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 52%, rgba(0,0,0,0.25), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.28), transparent 54%);
  pointer-events: none;
  z-index: 0;
}
.hero-slide.is-active { display: block; }
.hero-slide.is-active .hero-copy {
  animation: heroTextIn 0.62s cubic-bezier(.2,.8,.2,1) both;
}
.hero-slide.is-active .hero-visual {
  animation: heroVisualIn 0.72s cubic-bezier(.2,.8,.2,1) both;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(560px, 1.12fr);
  gap: 42px;
  align-items: center;
}
.hero-copy h1 span {
  display: inline-block;
  padding-bottom: 0.08em;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 38%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy h1 {
  max-width: 720px;
  overflow: visible;
  padding-bottom: 0.06em;
  line-height: 1.06;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-visual {
  position: relative;
  min-height: 510px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  transform-style: preserve-3d;
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 34px;
  height: 150px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0)),
    radial-gradient(ellipse at center, rgba(5, 150, 105,0.28) 0%, rgba(5, 150, 105,0.1) 42%, transparent 72%);
  z-index: 0;
  pointer-events: none;
  transform: perspective(700px) rotateX(62deg);
  filter: blur(0.2px);
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 12%;
  bottom: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), rgba(5, 150, 105,0.52), transparent);
  z-index: 1;
  pointer-events: none;
}
.auto-scene, .pro-scene { background: transparent; }
.floating-chip {
  position: absolute;
  z-index: 10;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(9,9,11,0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.chip-top { top: 34px; right: 34px; }
.bottle {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 34px 16px;
  border-radius: 30px 30px 18px 18px;
  background: linear-gradient(105deg, #ffffff 0%, #e8e8e8 15%, #ffffff 30%, #cdcdcd 100%);
  color: var(--black);
  box-shadow: inset 10px 0 20px rgba(255,255,255,1), inset -10px 0 20px rgba(0,0,0,0.15), 0 40px 60px rgba(0,0,0,0.5);
  z-index: 2;
  border: 0;
}
.bottle::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 34px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-bottom: 2px solid rgba(5, 150, 105,0.4);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.8);
  z-index: -1;
  pointer-events: none;
}
.bottle::before {
  content: "";
  position: absolute;
  top: -30px;
  width: 42px;
  height: 32px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(90deg, #1a1a1a, #333 30%, #1a1a1a 70%, #000);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 4px 8px rgba(0,0,0,0.3);
}
.bottle span { color: var(--red); font-weight: 900; letter-spacing: 0.15em; font-size: 12px; margin-bottom: 6px; text-transform: uppercase; }
.bottle b { font-size: 16px; text-align: center; line-height: 1.2; max-width: 120px; font-weight: 800; }
.bottle-large { left: 16%; bottom: 54px; width: 170px; height: 330px; }
.bottle-small { right: 12%; top: 118px; width: 130px; height: 240px; background: linear-gradient(135deg, #34d399 0%, #059669 50%, #065f46 100%); box-shadow: inset -10px -10px 20px rgba(0,0,0,0.2), inset 10px 10px 20px rgba(255,255,255,0.3), 0 30px 60px rgba(5, 150, 105,0.5); color: var(--white); border: 1px solid rgba(255,255,255,0.2); animation: floatProduct 5s ease-in-out infinite; }
.solo-product {
  left: 39%;
  bottom: 96px;
  width: 220px;
  height: 370px;
  transform: translateX(-50%);
}
.product-can.solo-product {
  width: 200px;
  height: 280px;
  border-radius: 12px 32px 12px 12px;
}
.product-can.solo-product::before {
  width: 60px;
  height: 34px;
  top: -30px;
  right: 28px;
}
.product-can.solo-product .product-can-text {
  font-size: 34px;
  top: 45px;
}
.auto-scene .hero-review {
  left: auto;
  right: 4%;
  top: 88px;
}
.auto-scene .week-card {
  right: 4%;
  bottom: 112px;
}
.pro-scene .hero-review {
  left: auto;
  right: 4%;
  top: 88px;
}
.pro-scene .week-card {
  right: 4%;
  bottom: 112px;
}
.product-left {
  left: 14%;
  bottom: 66px;
}
.product-main {
  left: 39%;
  bottom: 96px;
}
.product-main.solo-product {
  left: 39%;
  bottom: 96px;
}
.product-right {
  right: 9%;
  top: auto;
  bottom: 66px;
  width: 168px;
  height: 300px;
}
.bottle-large, .hero-can { animation: floatProduct 6s ease-in-out infinite; }
.bottle.black { background: linear-gradient(105deg, #2a2a2e 0%, #1a1a1d 15%, #2a2a2e 30%, #09090b 100%); box-shadow: inset 10px 0 20px rgba(255,255,255,0.08), inset -10px 0 20px rgba(0,0,0,0.8), 0 40px 60px rgba(0,0,0,0.6); color: var(--white); border: 0; }
.bottle.red { background: linear-gradient(105deg, #34d399 0%, #059669 15%, #34d399 30%, #065f46 100%); box-shadow: inset 10px 0 20px rgba(255,255,255,0.3), inset -10px 0 20px rgba(0,0,0,0.4), 0 40px 60px rgba(5, 150, 105,0.5); color: var(--white); border: 0; }
.bottle.white { background: linear-gradient(105deg, #ffffff 0%, #e8e8e8 15%, #ffffff 30%, #cdcdcd 100%); color: var(--black); border: 0; }
.bottle-small::before { background: linear-gradient(90deg, #e0e0e0, #fff 30%, #e0e0e0 70%, #aaa); }
.product-can { position: absolute; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 30px 16px; border-radius: 12px 24px 12px 12px; background: linear-gradient(135deg, #059669 0%, #047857 100%); color: var(--white); box-shadow: inset -15px -15px 30px rgba(0,0,0,0.3), inset 15px 15px 30px rgba(255,255,255,0.2), 0 40px 80px rgba(0,0,0,0.5); z-index: 2; border: 0; }
.product-can::before { content: ""; position: absolute; top: -24px; right: 20px; width: 44px; height: 26px; border-radius: 4px 4px 0 0; background: linear-gradient(90deg, #1a1a1a, #333 30%, #1a1a1a 70%, #000); box-shadow: inset 0 2px 4px rgba(255,255,255,0.2); }
.product-can-text { position: absolute; top: 35px; left: 50%; transform: translateX(-50%); font-weight: 900; font-size: 26px; letter-spacing: 0.1em; opacity: 0.25; }
.product-can::after { content: ""; position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); width: 140%; height: 34px; background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%); border-bottom: 2px solid rgba(5, 150, 105,0.4); border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.8); z-index: -1; pointer-events: none; }
.hero-can {
  position: absolute;
  left: 7%;
  bottom: 64px;
  z-index: 2;
  width: 170px;
  height: 260px;
}
.week-card {
  position: absolute;
  right: 4%;
  bottom: 112px;
  width: 246px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(9,9,11,0.86);
  backdrop-filter: blur(14px);
  z-index: 10;
}
.week-card small { color: var(--red); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.week-card strong { display: block; margin-top: 8px; font-size: 19px; }
.week-card span { display: block; margin-top: 6px; color: rgba(255,255,255,0.68); font-size: 13px; }
.hero-review {
  position: absolute;
  left: auto;
  right: 4%;
  top: 88px;
  z-index: 10;
  display: grid;
  gap: 3px;
  max-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(9,9,11,0.62);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.hero-review span {
  color: #ffcf33;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-review strong {
  font-size: 22px;
  line-height: 1;
}
.hero-review small {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.35;
}
.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  color: #1a1a22;
  padding: 0;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(9,9,11,0.1);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero-controls button:hover {
  transform: translateY(-2px);
  border-color: #09090B;
}
.hero-controls button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.hero-arrows {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  pointer-events: none;
}
.hero-arrows button {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(9,9,11,0.56);
  color: var(--white);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
/* Okları ürün görselinin iki yanına al (sol metinle çakışmasın). */
.hero-arrows button:first-child {
  left: 56%;
  right: auto;
}
.hero-arrows button:last-child {
  right: 12%;
  left: auto;
}
.hero-arrows button:hover {
  transform: translateY(-2px);
  background: var(--red);
  border-color: var(--red);
}
.hero-arrows svg {
  width: 20px;
  height: 20px;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(28px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}
@keyframes heroLinesDrift {
  from { transform: translate3d(0, 0, 0); opacity: 0.42; }
  to { transform: translate3d(26px, -18px, 0); opacity: 0.62; }
}
@keyframes floatProduct {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes floatSpark {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-10px); opacity: 1; }
}

.quick-strip { border-bottom: 1px solid var(--border); background: var(--off-white); }
.quick-list {
  min-height: 68px;
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
}
.quick-list a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}
.quick-list a:hover { border-color: var(--black); }

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

/* Kategori vitrini — 4 kart, 2 kolon x 2 satır; tüm kartlar aynı boy/oran. */
.home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-showcase-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: var(--off-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-showcase-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(9,9,11,0.1);
}
.home-showcase-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Anasayfa blog vitrini */
.blog-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.blog-home-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.blog-home-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: 0 18px 40px rgba(9,9,11,0.08);
}
.blog-home-card__media {
  aspect-ratio: 16 / 10;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-home-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-home-card__ph { color: #cdd2dc; }
.blog-home-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px;
}
.blog-home-card__date {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--red);
  text-transform: uppercase;
}
.blog-home-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  line-height: 1.25;
  color: var(--black);
}
.blog-home-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--text); }
.blog-home-card__more { margin-top: 4px; font-size: 13px; font-weight: 900; color: var(--black); }

.products { background: var(--off-white); }
.product-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.filter-panel {
  position: sticky;
  top: 178px;
  display: grid;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
/* Bölüm başlıkları → küçük, sessiz, uppercase etiket (heading gibi değil) */
.filter-panel > strong {
  display: block;
  margin: 0 0 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #98a0ac;
}
/* Kategori butonları → kompakt, düz liste; yalnızca aktif olan dolu */
.filter-btn {
  min-height: 35px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  padding: 0 11px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  transition: background 0.14s ease, color 0.14s ease;
}
.filter-btn:hover { background: var(--off-white); }
.filter-btn.is-active { background: var(--black); color: var(--white); }
.filter-choice-grid {
  display: grid;
  gap: 3px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
[data-home-products].home-product-grid {
  padding-top: 6px;
}
/* Favoriler — dar hesap kolonunda kartlar sıkışmasın: daha az/geniş kart */
[data-favorites-grid].home-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--black); box-shadow: 0 16px 38px rgba(9,9,11,0.08); }
.product-card.is-hidden { display: none; }
.product-media {
  position: relative;
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--off-white));
}
.product-media:hover .product-bottle,
.product-media:hover .product-can,
.product-media:hover .product-set { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}
.badge.black { background: var(--black); }
.badge.gray { background: var(--soft-black); }
.product-bottle, .product-can, .product-set {
  width: 94px;
  height: 158px;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(180deg, #fff, #d8dde5);
  box-shadow: 0 18px 35px rgba(9,9,11,0.16);
  transition: transform 0.25s ease;
}
.product-card:hover .product-bottle,
.product-card:hover .product-can,
.product-card:hover .product-set { transform: scale(1.05); }
.product-bottle::before {
  content: "";
  display: block;
  width: 42px;
  height: 30px;
  margin: -24px auto 0;
  border-radius: 8px 8px 3px 3px;
  background: var(--black);
}
.product-bottle.red { background: linear-gradient(180deg, #fff, #a7f3d0); }
.product-bottle.black { background: linear-gradient(180deg, #2a2c31, #09090b); }
.product-bottle.white { background: linear-gradient(180deg, #fff, #eef0f2); }
.product-bottle.clear { background: linear-gradient(180deg, #fff, #cde9ff); }
.product-can { width: 130px; border-radius: 14px; background: linear-gradient(180deg, #22242a, #059669); }
.product-set { width: 150px; border-radius: 18px; background: linear-gradient(135deg, #09090b 0 35%, #059669 35% 62%, #fff 62%); }
.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.product-body small { color: var(--text); font-weight: 900; }
.product-body h3 { margin-top: 5px; font-size: 22px; line-height: 1.08; }
.product-body p { min-height: 52px; margin-top: 9px; font-size: 14px; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.product-rating span {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.product-rating small {
  color: var(--text);
  font-size: 12px;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chips span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
/* Listeleme kartlarında (anasayfa, benzer ürünler, ürün listesi, favoriler) etiketler gizli.
   Ürün DETAY sayfasındaki chips (.product-card dışında) etkilenmez. */
.product-card .chips { display: none; }
.product-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}
.product-bottom strong { font-size: 20px; white-space: nowrap; }

.page-hero {
  padding: 54px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.listing-head {
  padding: 24px 0 26px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumbs a:hover { color: var(--black); }
.breadcrumbs strong { color: var(--black); }
.listing-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.listing-head-row h1 { font-size: clamp(32px, 4vw, 50px); }
.listing-head-row p:not(.eyebrow) { max-width: 720px; margin-top: 10px; }
.listing-head-meta {
  min-width: 170px;
  display: grid;
  gap: 3px;
  justify-items: end;
}
.listing-head-meta span {
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
}
.listing-head-meta small {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 28px;
  align-items: end;
}
.page-hero p:not(.eyebrow) { max-width: 680px; margin-top: 16px; }
.page-hero-note {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}
.page-hero-note strong,
.page-hero-note span {
  display: block;
}
.page-hero-note strong {
  color: var(--black);
  font-size: 15px;
}
.page-hero-note span {
  margin-top: 6px;
  font-size: 14px;
}
.listing-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.listing-intro span {
  display: block;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.listing-intro p {
  max-width: 660px;
  margin-top: 7px;
  font-size: 14px;
}
.listing-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.listing-chips a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off-white);
  font-size: 12px;
  font-weight: 900;
}
.listing-chips a:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.listing-toolbar span { color: var(--text); font-weight: 900; }
.listing-toolbar select {
  -webkit-appearance: none;  /* iOS Safari native select görünümünü kapat */
  -moz-appearance: none;
  appearance: none;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2309090b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding: 0 34px 0 12px;  /* sağda ok için yer */
  font-weight: 800;
  color: var(--black);
}
.filter-divider {
  height: 1px;
  margin: 10px 0;
  background: var(--border);
}
.filter-search {
  display: grid;
  gap: 7px;
}
.filter-search label,
.price-filter label {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}
.filter-search input,
.price-filter input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--off-white);
  padding: 0 11px;
  outline: 0;
}
.filter-search input:focus,
.price-filter input:focus {
  border-color: var(--black);
  background: var(--white);
}
.price-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price-filter label {
  display: grid;
  gap: 6px;
}
.rating-filter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.rating-filter button {
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.rating-filter button:hover,
.rating-filter button.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.filter-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.filter-link:hover {
  border-color: var(--red);
  background: rgba(5, 150, 105,0.08);
  color: var(--red);
  transform: translateY(-1px);
}
.listing-empty {
  margin-top: 18px;
}
.listing-banner {
  padding: 0 0 72px;
  background: var(--off-white);
}
.listing-seo {
  padding: 0 0 28px;
  background: var(--off-white);
}
.listing-seo-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid #dde1e7;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(5, 150, 105,0.06), transparent 34%),
    var(--white);
  box-shadow: 0 18px 42px rgba(9,9,11,0.05);
}
.listing-seo-head {
  position: sticky;
  top: 168px;
  align-self: start;
}
.listing-seo-head h2 {
  max-width: 360px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}
.listing-seo-scroll {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 14px;
  color: #505866;
  font-size: 14px;
  line-height: 1.72;
  scrollbar-width: thin;
  scrollbar-color: #059669 #eef0f3;
}
.listing-seo-scroll::-webkit-scrollbar {
  width: 8px;
}
.listing-seo-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #eef0f3;
}
.listing-seo-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--red);
}
.listing-seo-scroll p + p {
  margin-top: 12px;
}
/* Kategori açıklaması — panel (TinyMCE) editöründeki formatı yansıtır */
.listing-seo-scroll > *:first-child {
  margin-top: 0;
}
.listing-seo-scroll h2 {
  margin: 22px 0 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--black);
}
.listing-seo-scroll h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
}
.listing-seo-scroll p {
  margin: 0 0 12px;
}
.listing-seo-scroll ul,
.listing-seo-scroll ol {
  margin: 0 0 12px;
  padding-left: 20px;
}
.listing-seo-scroll li {
  margin: 0 0 6px;
}
.listing-seo-scroll blockquote {
  margin: 16px 0;
  padding: 4px 14px;
  border-left: 3px solid var(--red);
  color: #4b5563;
  font-style: italic;
}
.listing-seo-scroll strong,
.listing-seo-scroll b {
  font-weight: 800;
  color: var(--black);
}
.listing-seo-faq {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.listing-seo-faq h3 {
  margin: 0 0 2px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 950;
}
.listing-seo-faq details {
  border: 1px solid #e1e4e9;
  border-radius: 12px;
  background: #f8f9fb;
  overflow: hidden;
}
.listing-seo-faq summary {
  position: relative;
  padding: 12px 42px 12px 14px;
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.listing-seo-faq summary::-webkit-details-marker {
  display: none;
}
.listing-seo-faq summary::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 20px;
}
.listing-seo-faq details[open] summary::after {
  content: "-";
}
.listing-seo-faq details p {
  margin: 0;
  padding: 0 14px 14px;
  color: #5c6470;
  font-size: 13.5px;
}
.listing-banner-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(5, 150, 105,0.08), transparent 42%),
    var(--white);
}
.listing-banner-panel h2 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 40px);
}
.listing-banner-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1fr;
  gap: 42px;
  align-items: center;
}
.detail-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--off-white));
}
.detail-media .product-bottle { width: 150px; height: 250px; }
.detail-media .product-can { width: 190px; height: 250px; }
.detail-media .product-set { width: 220px; height: 220px; }
.detail-copy > p:not(.eyebrow) { margin-top: 18px; max-width: 680px; font-size: 18px; }
.detail-price { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; }
.detail-price strong { font-size: 34px; font-weight: 900; }
.detail-price span { color: var(--text); text-decoration: line-through; font-weight: 800; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.detail-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.detail-info div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.detail-info b { display: block; font-size: 13px; }
.detail-info span { display: block; margin-top: 4px; color: var(--text); font-size: 13px; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
.cart-list { display: grid; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.cart-thumb {
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--off-white);
  overflow: hidden;
}
.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.cart-item-info strong a {
  color: var(--black);
}
.cart-line {
  color: var(--black);
  white-space: nowrap;
}
.cart-thumb .product-bottle { width: 42px; height: 72px; }
.cart-thumb .product-can, .cart-thumb .product-set { width: 58px; height: 72px; }
.cart-item strong, .cart-item span, .cart-item small { display: block; }
.cart-item span { color: var(--text); }
.cart-item small { margin-top: 5px; font-weight: 900; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-control button { width: 34px; height: 34px; border: 0; background: var(--off-white); font-weight: 900; }
.qty-control span { min-width: 34px; text-align: center; color: var(--black); font-weight: 900; }
.remove-btn { border: 0; background: transparent; color: var(--red); font-weight: 900; }
.cart-summary {
  position: sticky;
  top: 164px;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.cart-summary h2 { font-family: var(--font-body); font-size: 20px; }
.cart-summary div { display: flex; justify-content: space-between; gap: 12px; color: var(--text); }
.cart-summary strong { color: var(--black); }
.coupon-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e1e4e9;
  border-radius: 14px;
  background: #f8f9fb;
}
.coupon-box label {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.coupon-box > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.coupon-box input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  padding: 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  outline: 0;
}
.coupon-box input:focus {
  border-color: var(--black);
}
.coupon-box button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  padding: 0 13px;
  font-weight: 900;
}
.coupon-box small {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.coupon-box small.is-error {
  color: var(--danger);
}
.cart-discount strong {
  color: var(--red);
}
.cart-total { padding-top: 14px; border-top: 1px solid var(--border); font-size: 18px; }
.empty-state {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.empty-state p { margin: 10px 0 20px; }
.account-page { background: var(--off-white); }
.account-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 38px;
  align-items: center;
}
.account-copy p:not(.eyebrow) { margin-top: 16px; max-width: 560px; }
.auth-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.auth-tabs button {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  font-weight: 900;
}
.auth-tabs button.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.auth-form { display: none; gap: 14px; }
.auth-form.is-active { display: grid; }
.auth-form label { display: grid; gap: 6px; font-weight: 900; }
.auth-form input {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
}

.pro-banner { padding-top: 0; background: var(--off-white); }
.pro-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
}
.pro-panel p:not(.eyebrow) { margin-top: 16px; max-width: 620px; color: rgba(255,255,255,0.68); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-grid div {
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}
.stat-grid strong { font-size: 36px; line-height: 1; }
.stat-grid span { margin-top: 8px; color: rgba(255,255,255,0.62); font-size: 13px; }

.set-grid, .guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.set-grid article, .guide-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.set-grid small { color: var(--red); font-weight: 900; }
.set-grid h3 { margin-top: 12px; }
.set-grid p { margin-top: 10px; }

/* FAQ Styles */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 840px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--white); overflow: hidden; transition: all 0.2s ease; }
.faq-item[open] { border-color: var(--black); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.faq-item summary { padding: 22px 24px; font-size: 18px; font-weight: 800; color: var(--black); cursor: pointer; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--text); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: "−"; color: var(--red); }
.faq-content { padding: 0 24px 24px; font-size: 15px; color: var(--text); line-height: 1.6; }
.set-grid a { display: inline-block; margin-top: 20px; font-weight: 900; color: var(--red); }

.finder { background: var(--black); color: var(--white); }
.finder-panel {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: center;
}
.finder-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.finder-actions button {
  min-height: 58px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 900;
}
.finder-actions button:hover { background: var(--red); }

.trust-bar { border-block: 1px solid var(--border); background: var(--off-white); }
.trust-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
}
.trust-grid span { font-weight: 900; }

.newsletter-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter input {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
}

.site-footer {
  padding: 64px 0 64px;
  background: linear-gradient(180deg, #09090b 0%, #000 100%);
  color: var(--white);
  overflow: hidden;
}
.footer-top {
  display: block;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 400px;
}
.footer-logo {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(5, 150, 105,0.18));
}
.footer-brand p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.footer-badges span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 900;
}
.footer-subscribe {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
}
.footer-subscribe small {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-subscribe strong {
  display: block;
  max-width: 540px;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.2;
}
.footer-subscribe-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.footer-subscribe input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--white);
  color: var(--black);
  outline: 0;
}
.footer-subscribe button,
.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.footer-contact-card {
  display: block;
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--white);
}
.footer-contact-card small,
.footer-contact-card span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}
.footer-contact-card strong {
  display: block;
  margin: 7px 0;
  font-size: 17px;
}
.footer-contact-card:hover {
  border-color: rgba(5, 150, 105,0.52);
  background: rgba(5, 150, 105,0.1);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.site-footer h2 {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.94);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.site-footer .footer-logo,
.site-footer .footer-contact-card {
  margin-top: 0;
}
.site-footer a:hover {
  color: var(--white);
  transform: translateX(2px);
}
.footer-social p {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.socials a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  font-weight: 900;
}
.socials a:hover {
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-bottom a { display: inline; margin: 0; font-size: 13px; }

.contact-hero {
  padding: 60px 0 34px;
  background: var(--off-white);
}
.contact-hero-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 28px;
  align-items: end;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(5, 150, 105,0.08), transparent 40%),
    var(--white);
}
.contact-hero h1 {
  max-width: 720px;
}
.contact-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
}
.contact-fast {
  display: grid;
  gap: 10px;
}
.contact-fast a,
.contact-fast div {
  display: block;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}
.contact-fast small {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-fast strong {
  display: block;
  margin-top: 5px;
  color: var(--black);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.contact-form-card,
.contact-side-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
}
.contact-form-card {
  padding: 40px;
  box-shadow: 0 30px 60px rgba(9,9,11,0.06);
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--black) 100%);
}
.contact-form-card .eyebrow { margin-bottom: 8px; }
.contact-form-card h2 { margin-bottom: 24px; }
.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  background: var(--white);
  border-color: var(--black);
  box-shadow: 0 4px 12px rgba(9,9,11,0.05);
  outline: none;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}
.contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  transition: all 0.2s ease;
  margin-top: 8px;
  cursor: pointer;
}
.contact-form button[type="submit"]:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 150, 105,0.2);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}
.contact-side {
  display: grid;
  gap: 14px;
}
.contact-side-card {
  padding: 20px;
}
.contact-side-card h2 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-side-card p,
.contact-side-card li {
  color: var(--text);
  font-size: 14px;
}
.contact-side-card ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}
.contact-map {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(9,9,11,0.85), rgba(5, 150, 105,0.22)),
    var(--black);
  color: var(--white);
  text-align: center;
}
.contact-map strong {
  display: block;
  font-size: 22px;
}
.contact-map span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.66);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.mobile-sticky-cta a,
.mobile-sticky-cta button {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
.mobile-sticky-cta a:first-child,
.mobile-sticky-cta button:first-child { background: var(--red); }
/* "Sonraki adım" barı (sepet akışı) — buton sayısına otomatik uyum:
   1 buton tam genişlik, 2 buton 50/50 (örn. misafir: Giriş yap + Üye ol). */
.mobile-sticky-cta--single {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
/* Sticky CTA gizlenen sayfalar (örn. PayTR ödeme ekranı) */
.front-no-sticky .mobile-sticky-cta { display: none !important; }
/* Varsayılan "Sepete git" barı — sepet boşken gizli (JS .has-items ekler).
   !important: media-query'lerdeki display:grid'i ezmek için. */
.mobile-sticky-cta--cart:not(.has-items) { display: none !important; }

@media (max-width: 1100px) {
  :root { --pad: 28px; }
  .campaign-shell { grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; }
  .campaign-label { display: none; }
  .header-grid { grid-template-columns: auto 1fr auto; gap: 16px; }
  .brand img { height: 48px; width: auto; }
  .header-tools > a:not(.cart-link),
  .header-tools > .header-tool-dropdown:not(.cart-dropdown-wrapper) { display: none; }
  .header-tool-dropdown::after,
  .header-dropdown-menu {
    display: none !important;
  }
  .mega-panel { grid-template-columns: repeat(2, 1fr); }
  .mega-feature { min-height: 220px; }
  .home-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-slide { min-height: auto; padding: 58px 0 76px; }
  .hero-grid, .pro-panel, .newsletter-panel { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-copy h1 { max-width: 840px; }
  .hero-visual { min-height: 430px; }
  .solo-product { width: 190px; height: 320px; }
  .product-main { left: 38%; }
  .product-right { right: 5%; width: 138px; height: 250px; }
  .hero-review { left: 0; top: 30px; }
  .hero-arrows { display: none; }
  .product-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: flex; flex-wrap: wrap; }
  .filter-panel strong { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .page-hero-grid, .product-detail, .cart-layout, .account-grid { grid-template-columns: 1fr; }
  .listing-head-row, .listing-banner-panel { display: block; }
  .listing-head-meta { justify-items: start; margin-top: 16px; }
  .listing-banner-panel .btn { margin-top: 20px; }
  .listing-seo-panel {
    grid-template-columns: 1fr;
  }
  .listing-seo-head {
    position: static;
  }
  .listing-intro { display: block; }
  .listing-chips { justify-content: flex-start; margin-top: 14px; }
  .cart-summary { position: static; }
  .footer-top,
  .footer-contact-grid,
  .footer-grid,
  .contact-hero-panel,
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; }
  body { padding-bottom: 76px; }
  .section-pad { padding: 48px 0; }
  .campaign-bar { min-height: 60px; }
  .campaign-shell { min-height: 60px; grid-template-columns: 1fr auto; }
  .campaign-track { min-height: 60px; }
  .campaign-slide { text-align: left; font-size: 13px; }
  .campaign-slide span { display: none; }
  .campaign-actions { display: none; }
  .campaign-countdown { min-height: 30px; padding: 2px 4px; }
  .countdown-label { display: none; }
  .campaign-countdown strong { min-height: 24px; padding: 0 7px; gap: 3px; }
  .campaign-countdown strong span { min-width: 16px; }
  .header-grid {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .brand img { height: 42px; width: auto; }
  .search-form { grid-column: 1 / -1; min-height: 50px; order: 3; border-radius: 14px; }
  .search-submit { width: 38px; height: 38px; border-radius: 10px; }
  .header-tools { justify-content: flex-end; }
  .cart-link { min-height: 50px; width: 52px; padding: 0; }
  .cart-link span { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-bar { display: none; }
  .mega-panel { grid-template-columns: 1fr; }
  .hero-slide { padding: 46px 0 74px; }
  .hero-grid { gap: 28px; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 46px); line-height: 1.08; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 360px; }
  .bottle-large { left: 8%; bottom: 42px; width: 142px; height: 252px; }
  .bottle-small { right: 8%; top: 98px; width: 104px; height: 178px; }
  .solo-product { left: 50%; width: 150px; height: 260px; }
  .product-left { left: 4%; }
  .product-main { left: 34%; width: 130px; height: 230px; }
  .product-right { right: 2%; width: 104px; height: 178px; bottom: 42px; }
  .hero-can { width: 120px; height: 200px; left: 2%; }
  .floating-chip { display: none; }
  .hero-review { display: none; }
  .week-card { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .hero-arrows { display: none; }
  .hero-controls { bottom: 20px; }
  .hero-controls button { width: 38px; height: 38px; border-radius: 12px; }
  .section-head.split { display: block; }
  .section-head.split .btn { margin-top: 18px; }
  /* NOT: ürün grid'leri (product-grid/home-product-grid) BURADA DEĞİL — kanonik responsive
     kuralları dosya sonundaki "grid responsive" bölümünde (mobil 2'li, tablet 3'lü). */
  .home-showcase-grid, .set-grid, .guide-grid, .trust-grid, .finder-panel, .finder-actions { grid-template-columns: 1fr; }
  .detail-info { grid-template-columns: 1fr; }
  .detail-media { min-height: 360px; }
  .cart-item { grid-template-columns: 76px 1fr; }
  .listing-toolbar { align-items: stretch; flex-direction: column; }
  .listing-toolbar select { width: 100%; }
  .price-filter { grid-template-columns: 1fr; }
  .rating-filter { grid-template-columns: repeat(4, 1fr); }
  .qty-control, .remove-btn { justify-self: start; }
  .product-bottom { grid-template-columns: 1fr 1fr; }
  .product-bottom strong { grid-column: 1 / -1; }
  .stat-grid { grid-template-columns: 1fr; }
  .pro-panel, .newsletter-panel { padding: 24px; }
  .newsletter form { grid-template-columns: 1fr; }
  .footer-top,
  .footer-contact-grid,
  .footer-grid,
  .contact-hero-panel,
  .contact-layout,
  .contact-form-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-subscribe,
  .contact-form-card { padding: 22px; }
  .footer-subscribe-row { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom nav { margin-top: 14px; }
  .mobile-sticky-cta { display: grid; }
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.auth-split-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 73px);
}
@media (max-width: 900px) {
  .auth-split-layout {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none !important;
  }
}

/* Frontend revision overrides */
.hero-slider {
  background: #08090c;
  color: var(--white);
}
.hero-slide,
.hero-slide[data-tone="carbon"],
.hero-slide[data-tone="light"] {
  background:
    linear-gradient(90deg, rgba(8,9,12,0.98) 0%, rgba(12,13,17,0.94) 42%, rgba(12,13,17,0.72) 100%),
    radial-gradient(circle at 70% 22%, rgba(5, 150, 105,0.42), transparent 28%),
    radial-gradient(circle at 86% 70%, rgba(255,255,255,0.16), transparent 34%),
    #08090c;
  color: var(--white);
}
.hero-slide::before {
  display: block;
  content: "";
  position: absolute;
  inset: -18% -8% -18% 42%;
  background:
    linear-gradient(112deg, transparent 0 22%, rgba(255,255,255,0.12) 22.2% 22.55%, transparent 22.8% 100%),
    linear-gradient(70deg, transparent 0 42%, rgba(255,255,255,0.075) 42.2% 42.55%, transparent 42.8% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 9px);
  opacity: 0.52;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 88%, transparent 100%);
  pointer-events: none;
  animation: heroLinesDrift 12s ease-in-out infinite alternate;
}
.hero-slide::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent 58%);
  pointer-events: none;
}
.hero-copy h1 span {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: inherit;
}
.hero-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,0.74);
}
.btn-outline.dark {
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-outline.dark:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.hero-grid {
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1fr);
}
.hero-showcase {
  min-height: 500px;
}
.hero-showcase::before {
  display: block;
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 26px;
  height: 150px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0)),
    radial-gradient(ellipse at center, rgba(5, 150, 105,0.38) 0%, rgba(5, 150, 105,0.13) 44%, transparent 74%);
  z-index: 0;
  pointer-events: none;
  transform: perspective(760px) rotateX(62deg);
}
.hero-showcase::after {
  display: block;
  content: "";
  position: absolute;
  left: 10%;
  right: 6%;
  bottom: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.48), rgba(5, 150, 105,0.7), transparent);
  z-index: 1;
  pointer-events: none;
}
.showcase-stage {
  position: absolute;
  inset: 18px 0 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 62% 18%, rgba(5, 150, 105,0.35), transparent 26%),
    radial-gradient(circle at 36% 72%, rgba(255,255,255,0.13), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 34px 100px rgba(0,0,0,0.44);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.showcase-stage::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 58px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.58), transparent 68%);
  transform: perspective(700px) rotateX(62deg);
}
.showcase-stage::after {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background:
    linear-gradient(115deg, transparent 0 40%, rgba(255,255,255,0.11) 40.2% 40.7%, transparent 41% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 64px);
  opacity: 0.72;
  animation: heroLinesDrift 13s ease-in-out infinite alternate;
}
.hero-product {
  position: absolute;
  z-index: 2;
  bottom: 94px;
  animation: floatProduct 6s ease-in-out infinite;
}
.hero-product-main {
  left: 38%;
  width: 128px;
  height: 218px;
}
.hero-product-side {
  left: 18%;
  width: 92px;
  height: 158px;
  opacity: 0.86;
  animation-delay: -1.5s;
}
.hero-product-can {
  right: 18%;
  width: 142px;
  height: 190px;
  animation-delay: -2.3s;
}
.hero-product-accent {
  right: 20%;
  width: 88px;
  height: 148px;
  animation-delay: -2.3s;
}
.showcase-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(9,9,11,0.68);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}
.showcase-rating {
  right: 20px;
  top: 64px;
  display: grid;
  gap: 2px;
  width: 210px;
  padding: 14px;
}
.showcase-rating span {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.showcase-rating strong {
  font-size: 26px;
  line-height: 1;
}
.showcase-rating small,
.showcase-promo span {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.35;
}
.showcase-promo {
  right: 20px;
  bottom: 70px;
  width: 260px;
  padding: 16px;
}
.showcase-promo small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.showcase-promo strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}
.showcase-promo span {
  display: block;
  margin-top: 5px;
}
.hero-controls button {
  border-color: var(--border);
  background: rgba(255,255,255,0.92);
  color: #1a1a22;
}
.hero-arrows button {
  border-color: rgba(255,255,255,0.18);
  background: rgba(9,9,11,0.56);
  color: var(--white);
}
.mega-panel {
  grid-template-columns: minmax(260px, 0.9fr) repeat(2, minmax(260px, 1fr));
  gap: 18px;
}
.mega-feature {
  min-height: 268px;
}
.mega-column a {
  min-height: 72px;
  padding: 12px;
}
.nav-cta {
  min-width: auto;
}
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-card {
  border-radius: 12px;
}
.product-media {
  height: auto;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}
.product-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.gallery-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(10px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.gallery-frame.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.gallery-zones {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.gallery-dots {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 4;
  display: flex;
  gap: 5px;
  justify-content: center;
}
.gallery-dots span {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(9,9,11,0.14);
}
.gallery-dots span.is-active {
  background: var(--red);
}
/* Gerçek ürün fotoğrafı (product.image / product.images) — CSS'de hiç tanımlanmadığı için
   img doğal boyutuyla render oluyor ve overflow:hidden konteynerlerde her yerde kırpılıyordu
   (kart, listing, vitrin, ürün detay, bundle). object-fit:contain ile kırpma olmadan sığdırıyoruz. */
.product-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Görsel kart içinde kenarlara yapışmasın — beyaz zeminde daha küçük ve dengeli dursun. */
  padding: 14%;
  box-sizing: border-box;
}
.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-thumbs .product-photo,
.bundle-thumb .product-photo {
  padding: 6px;
}
/* Ürün DETAY büyük görsel + benzer/vitrin kartlarındaki galeri fotoğrafı kenarlara yapışmasın */
.detail-media .product-photo { padding: 6%; }
/* Ürün videosu (YouTube/Vimeo) — galeri karesi: kapak görseli + ortada oynat düğmesi. */
.product-video-frame {
  position: relative;
  background: var(--off-white);
}
.product-video-frame img {
  filter: brightness(0.82);
}
.gallery-video-play {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
}
.gallery-video-play svg {
  width: 52px;
  height: 52px;
  padding: 4px 0 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(9,9,11,0.28);
  transition: transform 0.18s ease;
}
.gallery-video-play:hover svg {
  transform: scale(1.08);
}
.detail-thumbs .gallery-video-play svg {
  width: 28px;
  height: 28px;
  padding: 2px 0 0 3px;
}
.product-media .product-bottle,
.product-media .product-can,
.product-media .product-set {
  position: relative;
  width: 82px;
  height: 148px;
}
.product-media .product-can {
  width: 112px;
  height: 148px;
}
.product-media .product-set {
  width: 126px;
  height: 126px;
}
.product-body {
  padding: 14px;
}
.product-body h3 {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.28;
}
.product-body p {
  min-height: 42px;
  font-size: 13px;
}
.product-bottom {
  grid-template-columns: 1fr;
}
.product-bottom .btn {
  width: 100%;
}
.product-bottom strong {
  font-size: 20px;
}
.product-detail {
  display: block;
}
.detail-breadcrumbs {
  margin-bottom: 20px;
}
.detail-shell {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}
.detail-media-wrap {
  position: sticky;
  top: 174px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.detail-thumbs {
  display: grid;
  gap: 10px;
}
.detail-thumbs button {
  position: relative;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}
.detail-thumbs button.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(5, 150, 105,0.08);
}
.detail-thumbs .product-bottle,
.detail-thumbs .product-can,
.detail-thumbs .product-set {
  position: relative;
  width: 32px;
  height: 56px;
  padding: 0;
  box-shadow: 0 8px 18px rgba(9,9,11,0.14);
  transform: none;
}
.detail-thumbs .product-can {
  width: 44px;
}
.detail-thumbs .product-set {
  width: 50px;
  height: 50px;
}
.detail-thumbs .product-bottle::before {
  width: 18px;
  height: 12px;
  margin-top: -10px;
  border-radius: 4px 4px 2px 2px;
}
.detail-thumbs .product-can::before,
.detail-thumbs .product-can::after,
.detail-thumbs .product-set::before,
.detail-thumbs .product-set::after {
  display: none;
}
.detail-media {
  position: relative;
  min-height: 560px;
  aspect-ratio: 4 / 5;
  background: #f6f7f9;
  overflow: hidden;
}
.detail-gallery {
  inset: 0;
}
.detail-gallery .gallery-frame {
  inset: 0;
  overflow: hidden;
}
.detail-gallery .product-bottle,
.detail-gallery .product-can,
.detail-gallery .product-set,
.info-thumb .product-bottle,
.info-thumb .product-can,
.info-thumb .product-set {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  display: block;
  padding: 0;
  color: inherit;
  transform: none;
}
.detail-media .product-bottle {
  position: relative;
  width: 132px;
  height: 236px;
}
.detail-media .product-can {
  position: relative;
  width: 184px;
  height: 236px;
  border-radius: 18px;
  background: linear-gradient(180deg, #22242a 0%, #059669 72%, #f0f1f3 72%);
}
.detail-media .product-set {
  position: relative;
  width: 210px;
  height: 210px;
}
.detail-media .product-can::before {
  top: -24px;
  right: 40px;
  width: 54px;
  height: 28px;
}
.detail-media .product-can::after,
.info-thumb .product-can::after {
  display: none;
}
.detail-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 6;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}
.detail-copy {
  min-width: 0;
}
.detail-copy h1 {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}
.detail-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.detail-rating span {
  color: #f59e0b;
  font-weight: 900;
}
.detail-rating small,
.detail-rating b {
  color: var(--text);
  font-size: 13px;
}
.detail-price strong {
  color: var(--red);
}
.detail-delivery {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 12px;
  background: rgba(22,163,74,0.08);
}
.detail-delivery span {
  color: var(--text);
  font-size: 13px;
}
.sticky-buy-box {
  position: sticky;
  top: 170px;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 38px rgba(9,9,11,0.08);
  backdrop-filter: blur(14px);
}
.detail-sections {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}
.detail-section {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.detail-section h2 {
  font-family: var(--font-body);
  font-size: 21px;
}
/* "Ürün Bilgileri" başlığı ile içerik arasına boşluk + ayraç çizgisi */
.description-section h2 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 14px;
  background: #fff8e9;
}
.review-summary strong {
  grid-row: span 2;
  color: var(--black);
  font-size: 34px;
  line-height: 1;
}
.review-summary span {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.review-summary small {
  color: #7c5200;
  font-size: 13px;
  font-weight: 800;
}
.review-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.review-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fafbfc;
}
.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
}
.review-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.review-head strong {
  color: var(--black);
}
.review-head span {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.review-head small {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
.review-card p {
  margin-top: 7px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}
.info-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin-top: 16px;
  align-items: center;
}
.info-thumb {
  min-height: 128px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--off-white);
}
.info-thumb .product-bottle,
.info-thumb .product-can,
.info-thumb .product-set {
  width: 54px;
  height: 92px;
  padding: 0;
  box-shadow: 0 12px 24px rgba(9,9,11,0.12);
}
.info-thumb .product-can {
  width: 72px;
}
.info-thumb .product-set {
  width: 82px;
  height: 82px;
}
.info-thumb .product-bottle::before {
  width: 24px;
  height: 16px;
  margin-top: -13px;
}
.info-thumb .product-can::before {
  top: -14px;
  right: 14px;
  width: 24px;
  height: 14px;
}
.detail-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
}
.description-section h3 {
  margin: 22px 0 8px;
  font-family: var(--font-body);
  font-size: 16px;
}
.description-section p {
  margin-top: 10px;
}
/* Açıklama gövdesi — panel (TinyMCE) editöründeki formatı birebir yansıtır */
.description-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.description-body > *:first-child {
  margin-top: 0;
}
.description-body h2 {
  margin: 30px 0 12px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--black);
}
.description-body h3 {
  margin: 24px 0 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}
.description-body p {
  margin: 0 0 16px;
  line-height: 1.75;
}
.description-body ul,
.description-body ol {
  display: block;
  gap: 0;
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text);
}
.description-body li {
  margin: 0 0 7px;
}
.description-body blockquote {
  margin: 22px 0;
  padding: 6px 18px;
  border-left: 4px solid var(--red);
  color: #4b5563;
  font-style: italic;
}
.description-body strong,
.description-body b {
  font-weight: 800;
  color: var(--black);
}
.site-footer {
  padding-top: 54px;
  background: #101114;
}
.footer-grid {
  grid-template-columns: repeat(4, 1fr) 1.2fr;
}
.product-detail-page .mobile-sticky-cta {
  display: none;
}

/* Product card refresh */
.product-card {
  position: relative;
  border-color: #d9dde4;
  box-shadow: 0 10px 28px rgba(9,9,11,0.055);
}
.product-card:hover {
  border-color: rgba(5, 150, 105,0.28);
  box-shadow: 0 22px 48px rgba(9,9,11,0.12);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}
/* Ürün görseli zemini — sade, temiz beyaz (tüm kategoriler için tek tip). */
.product-media,
.product-card[data-category="oto"] .product-media,
.product-card[data-category="pro"] .product-media,
.product-card[data-category="aksesuar"] .product-media,
.product-card[data-category="set"] .product-media {
  isolation: isolate;
  background: #ffffff;
}
/* Eski dekoratif gölge + çizgi katmanları kaldırıldı (temiz beyaz zemin). */
.product-media::before,
.product-media::after {
  content: none;
  display: none;
}
.badge {
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 22px rgba(9,9,11,0.18);
}
.discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  min-width: 42px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(9,9,11,0.2);
}
.product-media .product-bottle,
.product-media .product-can,
.product-media .product-set {
  filter: drop-shadow(0 18px 22px rgba(9,9,11,0.16));
}
.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/* Uzun kategori adı ("Endüstriyel Temizlik Ürünleri") kartta 2-3 satıra taşmasın — tek satır + ellipsis */
.product-card-head small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-card-head span {
  flex: 0 0 auto;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(5, 150, 105,0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.product-body h3 a {
  transition: color 0.18s ease;
}
.product-card:hover .product-body h3 a {
  color: var(--red);
}
.product-rating span {
  color: #f59e0b;
}
.chips span {
  background: #f3f4f6;
  color: #4b5563;
}
.product-bottom {
  gap: 10px;
  padding-top: 18px;
}
.product-bottom strong {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--red);
}
.product-bottom strong small {
  color: #8a909b;
  font-size: 13px;
  font-weight: 900;
  text-decoration: line-through;
}
.product-bottom .btn-outline {
  border-width: 2px;
}
.product-bottom .btn-red {
  min-height: 46px;
  box-shadow: 0 12px 22px rgba(5, 150, 105,0.2);
}
/* Ürün kartı buton alanı — toparlandı: fiyat üstte, Detay + Sepete ekle YAN YANA.
   .product-card ile yüksek özgüllük → önceki çakışan .product-bottom kurallarını ezer. */
.product-card .product-bottom {
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  align-items: stretch;
}
.product-card .product-bottom strong {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}
.product-card .product-bottom .btn {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  font-size: 13px;
  white-space: nowrap;
}
.product-card .product-bottom .btn-red {
  min-height: 44px;
  box-shadow: 0 8px 18px rgba(5, 150, 105,0.18);
}

/* SEO rich footer */
.seo-footer.site-footer {
  padding: 0;
  background: #f5f6f8;
  color: #2f3a47;
}
.footer-assurance {
  padding: 34px 0 20px;
  background: var(--white);
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.assurance-grid div {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  background: #eef0f2;
  color: var(--black);
  font-weight: 900;
}
.assurance-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.assurance-grid svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-brand-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 36px 0 28px;
  text-align: center;
}
.seo-footer .footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.footer-brand-panel p {
  max-width: 860px;
  color: #30343b;
  font-size: 17px;
  line-height: 1.7;
}
.footer-brand-panel strong {
  color: var(--black);
}
.footer-seo-cloud {
  columns: 6 150px;
  column-gap: 46px;
  padding: 28px 0 34px;
  border-top: 1px solid #e2e4e8;
  border-bottom: 1px solid #e2e4e8;
}
.seo-footer .footer-seo-cloud a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  color: #30343b;
  font-size: 15px;
  font-weight: 800;
}
.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 34px;
  padding: 42px 0 44px;
}
.seo-footer h2 {
  margin: 0 0 20px;
  color: #314255;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.seo-footer .footer-nav a {
  display: block;
  margin: 0 0 12px;
  color: #555b65;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.seo-footer a:hover {
  color: var(--red);
  transform: none;
}
.footer-service-row {
  display: flex;
  justify-content: center;
  gap: 38px;
  padding: 14px 0 30px;
  border-top: 1px solid #e2e4e8;
}
.footer-service-row a {
  display: grid;
  grid-template-columns: 38px auto;
  gap: 2px 12px;
  align-items: center;
  margin: 0;
  color: #2f3a47;
}
.footer-service-row span {
  grid-row: span 2;
  color: var(--blue);
}
.footer-service-row a:nth-child(2) span,
.footer-service-row a:nth-child(2) strong {
  color: #2f9a48;
}
.footer-service-row svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-service-row strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}
.footer-service-row small {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-action-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.35fr;
  gap: 38px;
  align-items: end;
  padding: 34px 0 34px;
  border-top: 1px solid #e2e4e8;
}
.seo-footer .footer-social p {
  color: #667085;
}
.seo-footer .socials a,
.footer-apps a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #e9ebee;
  color: #4b5563;
  font-size: 13px;
  font-weight: 900;
}
.seo-footer .socials a:hover,
.footer-apps a:hover {
  background: var(--black);
  color: var(--white);
}
.footer-apps div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-newsletter {
  display: grid;
  gap: 14px;
}
.footer-newsletter label {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e5e8;
}
.footer-newsletter input {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: transparent;
  padding: 0 22px;
  color: var(--black);
  outline: 0;
}
.footer-newsletter button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--blue);
}
.footer-newsletter svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.seo-footer .footer-bottom {
  margin: 0;
  padding: 20px 0 24px;
  border-top: 1px solid #e2e4e8;
  color: #667085;
}
.seo-footer .footer-bottom a {
  color: #667085;
}
.seo-footer .footer-bottom a:hover {
  color: var(--red);
}

/* SMS footer refinement */
.seo-footer.site-footer {
  background: #f4f5f7;
}
.footer-assurance {
  padding: 42px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}
.assurance-grid {
  gap: 12px;
}
.assurance-grid div {
  min-height: 64px;
  border: 1px solid rgba(9,9,11,0.06);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(9,9,11,0.045);
}
.assurance-grid span {
  color: var(--red);
}
.footer-brand-panel {
  width: min(100% - calc(var(--pad) * 2), var(--container));
  margin: 28px auto 0;
  padding: 34px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 24%, rgba(96,165,250,0.26), transparent 28%),
    radial-gradient(circle at 16% 86%, rgba(5, 150, 105,0.24), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 58%, #063b3a 100%);
  color: var(--white);
  text-align: left;
  justify-items: start;
  box-shadow: 0 28px 70px rgba(9,9,11,0.18);
}
.footer-brand-panel p {
  max-width: 900px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}
.footer-brand-panel strong {
  color: var(--white);
}
.seo-footer .footer-logo img {
  filter: brightness(0) invert(1);
}
.footer-seo-cloud {
  margin-top: 34px;
  padding: 28px 0;
  columns: 4 210px;
  border-top: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
}
.seo-footer .footer-seo-cloud a {
  width: auto;
  margin-bottom: 9px;
  color: #3e4652;
  font-size: 14px;
  font-weight: 800;
}
.footer-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 36px;
}
.seo-footer .footer-nav {
  min-height: 100%;
  padding: 22px;
  border: 1px solid #e0e3e8;
  border-radius: 16px;
  background: var(--white);
}
.seo-footer h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.seo-footer .footer-nav a {
  margin-bottom: 9px;
  color: #5b6470;
  font-size: 13.5px;
  font-weight: 750;
}
.footer-service-row {
  justify-content: flex-start;
  gap: 14px;
  padding: 24px 0;
}
.footer-service-row a {
  min-width: 280px;
  padding: 16px 18px;
  border: 1px solid #e0e3e8;
  border-radius: 16px;
  background: var(--white);
}
.footer-service-row span,
.footer-service-row strong,
.footer-service-row a:nth-child(2) span,
.footer-service-row a:nth-child(2) strong {
  color: var(--red);
}
.footer-action-row {
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  align-items: start;
  gap: 22px;
  padding: 28px 0 34px;
}
.seo-footer .footer-social,
.footer-newsletter {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #e0e3e8;
  border-radius: 18px;
  background: var(--white);
}
.seo-footer .socials a {
  min-height: 38px;
  background: #f0f2f5;
}
.footer-newsletter {
  align-content: center;
}
.footer-newsletter label {
  background: #f0f2f5;
  border: 1px solid #e0e3e8;
}
.footer-newsletter button {
  color: var(--red);
}
.seo-footer .footer-bottom {
  padding: 20px 0 26px;
}

/* Complete SMS footer rebuild */
.sms-footer.site-footer {
  padding: 0;
  background: #f6f8fb;
  color: var(--black);
  overflow: hidden;
}
.sms-footer-hero {
  position: relative;
  padding: 52px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(96,165,250,0.3), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(5,150,105,0.24), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1f3a 56%, #063b3a 100%);
  color: var(--white);
}
.sms-footer-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% -20% 36%;
  background:
    linear-gradient(112deg, transparent 0 24%, rgba(255,255,255,0.09) 24.2% 24.55%, transparent 24.8% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 10px);
  opacity: 0.52;
  pointer-events: none;
}
.sms-footer-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: stretch;
}
/* İletişim (telefon/WhatsApp) ayarları boşsa orta kutu render edilmez → 2 kolon */
.sms-footer-hero-grid--no-contact {
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
}
.sms-footer-brand,
.sms-footer-newsletter,
.sms-footer-contact {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.sms-footer-brand {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 26px;
}
.sms-footer .footer-logo {
  display: inline-flex;
  margin: 0;
}
.sms-footer .footer-logo img {
  width: 136px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.sms-footer-brand p {
  max-width: 440px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
}
.sms-footer-contact {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.sms-footer-contact a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 74px;
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.sms-footer-contact span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(96,165,250,0.14);
  color: var(--blue-soft);
}
.sms-footer-contact a:nth-child(even) span {
  background: rgba(52,211,153,0.14);
  color: #34d399;
}
.sms-footer-contact svg,
.sms-footer-newsletter svg,
.sms-footer-trust svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sms-footer-contact strong {
  font-size: 18px;
  line-height: 1;
}
.sms-footer-contact small {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sms-footer-newsletter {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
}
.sms-footer-newsletter h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.sms-footer-newsletter p {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
}
.sms-footer-newsletter label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 6px;
}
.sms-footer-newsletter input {
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--black);
  padding: 0 16px;
  outline: 0;
}
.sms-footer-newsletter button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 0 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(37,99,235,0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sms-footer-newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(37,99,235,0.3);
}
.sms-footer-directory {
  padding: 36px 0 42px;
  background: #f6f8fb;
}
.sms-footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.sms-footer-trust div {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(9,9,11,0.05);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sms-footer-trust div::after {
  content: "";
  position: absolute;
  inset: auto -28px -38px auto;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(37,99,235,0.05);
}
.sms-footer-trust div:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 24px 56px rgba(9,9,11,0.1);
}
.sms-footer-trust span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 15px;
  background: var(--blue-tint);
  color: var(--blue-dark);
  flex: 0 0 auto;
}
/* Kartlar arası küçük renk ritmi: 2. ve 4. kart yeşil ikonlu (mavi-yeşil denge) */
.sms-footer-trust div:nth-child(even) span {
  border-color: rgba(5,150,105,0.16);
  background: var(--brand-tint);
  color: var(--red-dark);
}
.sms-footer-trust strong {
  align-self: end;
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.1;
}
.sms-footer-trust small {
  align-self: start;
  position: relative;
  z-index: 1;
  color: #717987;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sms-footer-popular {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid #e0e3e8;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(9,9,11,0.03), transparent 38%),
    var(--white);
  box-shadow: 0 16px 34px rgba(9,9,11,0.045);
}
.sms-footer-popular-head {
  display: grid;
  gap: 5px;
  padding-right: 18px;
  border-right: 1px solid #e4e7ec;
}
.sms-footer-popular-head small {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sms-footer-popular-head strong {
  max-width: 220px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.12;
}
.sms-footer-popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.sms-footer-popular a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin: 0;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #f1f2f4;
  color: #4b5563;
  font-size: 13px;
  font-weight: 900;
}
.sms-footer-popular a:hover {
  border-color: rgba(5, 150, 105,0.22);
  background: rgba(5, 150, 105,0.08);
}
.sms-footer-links {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}
.sms-footer-links > div {
  padding: 22px;
  border: 1px solid #e0e3e8;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(9,9,11,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sms-footer-links h2 {
  margin: 0 0 15px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sms-footer-links a {
  display: block;
  margin: 0 0 9px;
  color: #5c6470;
  font-size: 13.5px;
  font-weight: 760;
  line-height: 1.35;
}
.sms-footer a:hover {
  color: var(--blue-dark);
  transform: none;
}
.sms-footer-bottom {
  background: #07111f;
  color: rgba(255,255,255,0.68);
}
.sms-footer-bottom-grid {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.sms-footer-social,
.sms-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.sms-footer-social {
  justify-content: flex-start;
}
.sms-footer-bottom-grid > span {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}
.sms-footer-social a,
.sms-footer-bottom a {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  font-weight: 800;
}
.sms-footer-bottom nav {
  justify-content: flex-end;
}
/* Ödeme yöntemi logoları — koyu footer'da net görünmesi için beyaz çip üstünde */
.sms-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.sms-footer-payments img {
  width: auto;
  display: block;
}
/* Optik denge — her logonun oranı farklı olduğu için yükseklikler ayrı ayarlanır */
.sms-footer-payments .pay-visa { height: 18px; }
.sms-footer-payments .pay-mc   { height: 24px; }
.sms-footer-payments .pay-troy { height: 27px; }
/* Koyu logolar (Visa lacivert, Troy koyu) şeffaf zeminde görünsün → beyaza çevir.
   Mastercard renkli daireleri olduğu gibi kalır. */
.sms-footer-payments img.pay-mono {
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .sms-footer-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sms-footer-newsletter {
    grid-column: 1 / -1;
  }
  .sms-footer-trust {
    grid-template-columns: repeat(2, 1fr);
  }
  .sms-footer-popular {
    grid-template-columns: 1fr;
  }
  .sms-footer-popular-head {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid #e4e7ec;
  }
  .sms-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .sms-footer-bottom-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
    justify-items: start;
  }
  .sms-footer-bottom-grid > span {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }
  .sms-footer-bottom nav,
  .sms-footer-payments {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .sms-footer-hero {
    padding: 34px 0;
  }
  .sms-footer-hero-grid,
  .sms-footer-trust,
  .sms-footer-links {
    grid-template-columns: 1fr;
  }
  .sms-footer-trust div {
    min-height: 92px;
  }
  .sms-footer-newsletter h2 {
    font-size: 25px;
  }
  .sms-footer-newsletter label {
    grid-template-columns: 1fr;
  }
  .sms-footer-newsletter button {
    justify-content: center;
  }
  .sms-footer-directory {
    padding-bottom: 92px;
  }
  .sms-footer-popular {
    max-height: none;
  }
}

@media (max-width: 1100px) {
  .mega-panel,
  .detail-shell {
    grid-template-columns: 1fr;
  }
  .detail-media-wrap {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-action-row {
    grid-template-columns: 1fr;
  }
  .footer-service-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .hero-slider {
    color: var(--black);
  }
  .hero-showcase {
    min-height: 380px;
  }
  .showcase-stage {
    inset: 0;
  }
  .showcase-card {
    display: none;
  }
  .hero-product-main {
    left: 42%;
    width: 98px;
    height: 176px;
  }
  .hero-product-side {
    left: 14%;
    width: 70px;
    height: 120px;
  }
  .hero-product-can,
  .hero-product-accent {
    right: 14%;
    width: 104px;
    height: 140px;
  }
  .home-showcase-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .detail-media-wrap {
    grid-template-columns: 1fr;
  }
  .detail-thumbs {
    grid-template-columns: repeat(4, 1fr);
    order: 2;
  }
  .detail-media {
    min-height: 390px;
  }
  .sticky-buy-box {
    position: fixed;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }
  .info-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-assurance {
    padding-top: 22px;
  }
  .assurance-grid,
  .footer-link-grid {
    grid-template-columns: 1fr;
  }
  .assurance-grid div {
    min-height: 58px;
    justify-content: flex-start;
    padding: 0 18px;
  }
  .footer-brand-panel {
    padding: 28px 0 24px;
    text-align: left;
    justify-items: start;
  }
  .footer-brand-panel {
    width: min(100% - calc(var(--pad) * 2), var(--container));
    padding: 24px;
  }
  .footer-seo-cloud {
    columns: 2 130px;
    column-gap: 24px;
  }
  .footer-link-grid {
    gap: 24px;
    padding: 32px 0;
    grid-template-columns: 1fr;
  }
  .footer-service-row {
    justify-content: flex-start;
    gap: 20px;
  }
  .footer-service-row a {
    min-width: 0;
    width: 100%;
  }
  .footer-action-row {
    gap: 26px;
    padding-bottom: 92px;
    grid-template-columns: 1fr;
  }
  .footer-newsletter label {
    grid-template-columns: 1fr 48px;
  }
  .seo-footer .footer-bottom {
    display: block;
  }
}

/* Footer alignment refinements */
.seo-footer .footer-bottom {
  width: min(100% - calc(var(--pad) * 2), var(--container));
  margin-inline: auto;
}
.seo-footer .footer-bottom nav {
  justify-content: flex-end;
}
.footer-service-row {
  justify-content: flex-start;
}
.footer-action-row {
  align-items: stretch;
}
.footer-action-row > * {
  min-width: 0;
}

/* Campaign offer popup */
.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9,9,11,0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.offer-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.offer-popup-card {
  position: relative;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0,0,0,0.36);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.18s ease;
}
.offer-popup.is-open .offer-popup-card {
  transform: translateY(0) scale(1);
}
.offer-popup-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(9,9,11,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
}
.offer-popup-visual {
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 70% 22%, rgba(5, 150, 105,0.45), transparent 32%),
    linear-gradient(135deg, #09090b 0%, #17181c 58%, #2a070c 100%);
  color: var(--white);
}
.offer-popup-visual span {
  color: #a7f3d0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.offer-popup-visual strong {
  font-family: var(--font-head);
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.9;
}
.offer-popup-visual small {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-weight: 900;
}
.offer-popup-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px;
}
.offer-popup-copy h2 {
  max-width: 430px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.offer-popup-copy > p:not(.eyebrow) {
  color: var(--text);
  line-height: 1.6;
}
.offer-popup-copy > p strong {
  color: var(--black);
}
.offer-popup-copy form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 4px;
}
.offer-popup-copy input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  padding: 0 14px;
  outline: 0;
}
.offer-popup-copy input:focus {
  border-color: var(--black);
  background: var(--white);
}
.offer-terms {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}
.offer-terms input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--red);
}
.offer-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px dashed rgba(5, 150, 105,0.34);
  border-radius: 14px;
  background: rgba(5, 150, 105,0.06);
}
.offer-code span {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.offer-code button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  padding: 0 16px;
  font-weight: 950;
  letter-spacing: 0.05em;
}
.offer-popup-copy a {
  width: max-content;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(5, 150, 105,0.36);
  text-underline-offset: 4px;
}
.offer-form-msg {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #1a7f37;
}

/* Ürün videosu lightbox — .offer-popup ile aynı overlay deseni */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.78);
}
.video-lightbox-frame {
  position: relative;
  width: min(100%, 900px);
}
.video-lightbox-close {
  position: absolute;
  right: 0;
  top: -46px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}
.video-lightbox-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 34px 90px rgba(0,0,0,0.5);
}
.video-lightbox-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 760px) {
  .video-lightbox-close {
    top: -42px;
    width: 34px;
    height: 34px;
  }
}
.offer-form-msg.is-error {
  color: var(--danger);
}

@media (max-width: 760px) {
  .offer-popup {
    padding: 14px;
  }
  .offer-popup-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }
  .offer-popup-visual {
    min-height: 210px;
    padding: 28px;
  }
  .offer-popup-copy {
    padding: 28px;
  }
  .offer-popup-copy form {
    grid-template-columns: 1fr;
  }
  .offer-popup-copy .btn {
    width: 100%;
  }
}

.auth-visual {
  background: var(--black);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-visual-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.auth-visual h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.auth-visual h2 span {
  color: var(--red);
}
.auth-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 400px;
  line-height: 1.6;
}
.visual-decor {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(5, 150, 105,0.15), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05), transparent 40%);
  z-index: 1;
}
.auth-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--white);
}
.auth-box {
  width: 100%;
  max-width: 420px;
}
.auth-header {
  margin-bottom: 32px;
}
.auth-header h1 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 8px;
}
.auth-header p {
  color: var(--text);
  font-size: 15px;
}
.auth-form-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group-modern {
  position: relative;
}
.form-group-modern input {
  width: 100%;
  height: 54px;
  padding: 20px 16px 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(9,9,11,0.02);
}
.form-group-modern label {
  position: absolute;
  left: 16px;
  top: 17px;
  color: var(--text);
  font-size: 15px;
  pointer-events: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.form-group-modern input:focus,
.form-group-modern input:not(:placeholder-shown) {
  border-color: var(--black);
  box-shadow: 0 4px 12px rgba(9,9,11,0.05);
  outline: none;
}
.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--black);
}
.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  font-weight: 600;
}
.custom-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}
.auth-actions a {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
}
.auth-actions a:hover {
  text-decoration: underline;
}
.btn-auth-submit {
  min-height: 54px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.auth-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--text);
}
.auth-footer a {
  font-weight: 800;
  color: var(--black);
  margin-left: 4px;
}
.auth-footer a:hover {
  color: var(--red);
}

/* Auth — durum / hata mesajları */
.auth-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.auth-alert--error {
  background: var(--danger-bg);
  border: 1px solid #f4c7cc;
  color: var(--danger-dark);
}
.auth-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}
.auth-alert ul {
  margin: 0;
  padding-left: 18px;
}
.field-error {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--danger);
}

/* Auth — "veya" ayırıcı + Google butonu */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.btn-google {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 2px 6px rgba(9,9,11,0.03);
}
.btn-google:hover {
  border-color: var(--black);
  background: var(--off-white);
  box-shadow: 0 4px 12px rgba(9,9,11,0.06);
}
.btn-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Header Dropdowns */
.header-tool-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header-tool-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 330px;
  height: 14px;
  display: none;
}
.header-tool-dropdown:hover::after,
.header-tool-dropdown:focus-within::after {
  display: block;
}
.header-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(9,9,11,0.1);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 120;
}
.header-tool-dropdown:hover .header-dropdown-menu,
.header-tool-dropdown:focus-within .header-dropdown-menu,
.header-tool-dropdown.is-open .header-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header-tools .header-dropdown-menu a {
  width: auto;
  min-height: auto;
  border: none;
  background: transparent;
  color: var(--black);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: none;
  justify-content: flex-start;
}
.header-tools .header-dropdown-menu a .nav-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--red);
}
.header-tools .header-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--red);
  transform: none;
  border: none;
}
.header-tools .header-dropdown-menu a > span {
  display: inline;
}
/* Çıkış formu — dropdown linkleriyle aynı görünüm */
.header-tools .header-dropdown-menu .auth-logout-form {
  margin: 4px 0 0;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.header-tools .header-dropdown-menu .auth-logout-form button {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--black);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: inherit;
}
.header-tools .header-dropdown-menu .auth-logout-form button .nav-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--red);
}
.header-tools .header-dropdown-menu .auth-logout-form button:hover {
  background: var(--off-white);
  color: var(--red);
}

/* Mini Cart */
.mini-cart-menu {
  width: 320px;
  padding: 0;
  overflow: hidden;
}

/* Mobil "sepete eklendi" bildirimi — alttan açılan sheet */
.cart-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}
.cart-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}
.cart-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-sheet.is-open .cart-sheet__backdrop {
  opacity: 1;
}
.cart-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 14px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 16px 16px calc(18px + env(safe-area-inset-bottom));
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 40px rgba(9, 9, 11, 0.2);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-sheet.is-open .cart-sheet__panel {
  transform: translateY(0);
}
.cart-sheet__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cart-sheet__head strong {
  font-size: 17px;
}
.cart-sheet__head [data-cart-count-mini] {
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}
.cart-sheet__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}
.cart-sheet__go {
  width: 100%;
  justify-content: center;
  gap: 8px;
}
/* Sheet içindeki mini-cart parçaları (dropdown'a scope'lu thumb stilini burada da ver) */
.cart-sheet .mini-cart-items {
  padding: 0;
  max-height: none;
  overflow: visible;
}
.cart-sheet .mini-cart-thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 10px;
  background: var(--off-white);
  overflow: hidden;
  flex: none;
}
.cart-sheet .mini-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
body.cart-sheet-open {
  overflow: hidden;
}
.mini-cart-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-cart-header strong {
  font-size: 15px;
  color: var(--black);
}
.mini-cart-header span {
  font-size: 12px;
  color: var(--text);
  font-weight: 800;
}
.mini-cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 20px;
}
.mini-cart-empty {
  display: grid;
  gap: 6px;
  text-align: center;
  color: var(--text);
  font-size: 14px;
  padding: 16px 0;
}
.mini-cart-empty a {
  color: var(--red);
  font-weight: 800;
}
.mini-cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mini-cart-item:last-child {
  border-bottom: 0;
}
/* Yüksek özgüllük — header'ın genel `.header-dropdown-menu a` kuralını ez. */
.header-tools .mini-cart-menu .mini-cart-thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  min-height: 0;
  padding: 0;
  border-radius: 10px;
  background: var(--off-white);
  overflow: hidden;
  flex: none;
}
.header-tools .mini-cart-menu .mini-cart-thumb:hover {
  background: var(--off-white);
  transform: none;
}
.header-tools .mini-cart-menu .mini-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.mini-cart-info strong {
  display: block;
  font-size: 13px;
  color: var(--black);
  line-height: 1.3;
}
.mini-cart-info span {
  font-size: 12px;
  color: var(--text);
}
.mini-cart-remove {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.mini-cart-remove:hover {
  background: var(--off-white);
  color: var(--red);
}
.mini-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.header-tools .mini-cart-footer a.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--red);
  color: var(--white);
  padding: 0 20px;
  width: 100%;
  height: 48px;
  min-height: 48px;
}
.header-tools .mini-cart-footer a.btn .nav-icon {
  color: var(--white);
}
.header-tools .mini-cart-footer a.btn:hover {
  background: var(--red-dark);
  color: var(--white);
}

.mobile-filter-toggle,
.mobile-filter-head {
  display: none;
}

/* ============================================================
 |  Tipografi ölçeği — sakin, dengeli başlıklar (site geneli)
 |  Önceki "kocaman" başlıklar (52-64px) yerine mütevazı bir skala.
 ===========================================================*/
h1 { font-size: clamp(26px, 3vw, 38px); }
h2 { font-size: clamp(21px, 2.3vw, 30px); }
h3 { font-size: 20px; }

/* İç sayfa / panel / sonuç başlıkları — en mütevazı grup
   (hesap, sepet, ödeme/adres, sipariş detayı, ödeme sonucu, giriş/kayıt) */
.panel-title h1,
.account-panel-main h1,
.order-detail-title h1,
.result-panel h1,
.auth-header h1 {
  font-size: clamp(22px, 2.1vw, 27px);
  margin-bottom: 6px;
}

/* Ürün detay adı + listeleme başlığı — orta boy */
.detail-copy h1 { font-size: clamp(22px, 2.6vw, 30px); }
.listing-head-row h1 { font-size: clamp(24px, 2.8vw, 34px); }

/* Anasayfa hero — sitenin en büyük başlığı ama yine ölçülü */
.hero-copy h1 { font-size: clamp(32px, 4.2vw, 46px); }

.section-head h2,
.panel-title h1,
.detail-copy h1,
.listing-head-row h1,
.order-detail-title h1,
.result-panel h1,
.auth-header h1 {
  line-height: 1.14;
}

.main-header {
  padding: 8px 0 10px;
}
.nav-bar {
  margin-top: 10px;
}
.hero-slider {
  margin-top: 10px;
}
.hero-slide,
.hero-slide[data-tone="carbon"],
.hero-slide[data-tone="light"] {
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,0.72), transparent 19%),
    radial-gradient(circle at 82% 58%, rgba(5, 150, 105,0.18), transparent 24%),
    linear-gradient(118deg, #f7f8fb 0%, #ffffff 34%, #eef2f7 64%, #f9eef0 100%);
  color: var(--black);
}
.hero-slide::before {
  background:
    linear-gradient(112deg, transparent 0 24%, rgba(5, 150, 105,0.12) 24.2% 24.55%, transparent 24.8% 100%),
    repeating-linear-gradient(0deg, rgba(9,9,11,0.035) 0 1px, transparent 1px 10px);
  opacity: 0.42;
}
.hero-slide::after {
  background:
    radial-gradient(circle at 12% 40%, rgba(5, 150, 105,0.08), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,0.86), transparent 58%);
}
.hero-copy > p:not(.eyebrow) {
  color: #4d5664;
  font-size: 16px;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 56px);
}
.hero-actions .btn-outline.dark {
  border-color: rgba(9,9,11,0.18);
  color: var(--black);
}
.hero-actions .btn-outline.dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.hero-visual::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0)),
    radial-gradient(ellipse at center, rgba(5, 150, 105,0.16) 0%, rgba(5, 150, 105,0.08) 42%, transparent 72%);
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 0;
  line-height: 1;
  font-weight: 800;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--pad);
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.product-carousel .product-card {
  min-width: min(330px, 82vw);
  max-width: 330px;
  scroll-snap-align: start;
}
.product-carousel::-webkit-scrollbar {
  height: 8px;
}
.product-carousel::-webkit-scrollbar-thumb {
  background: #d7dbe3;
  border-radius: 999px;
}
.product-body h3 {
  font-size: 19px;
}
.product-bottom {
  grid-template-columns: 1fr;
}
.product-bottom .btn {
  width: 100%;
}

.cart-top {
  padding: 26px 0 18px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 28px;
}
.checkout-steps span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: #687080;
  font-size: 13px;
  font-weight: 900;
}
.checkout-steps span.is-active {
  border-color: var(--red);
  background: rgba(5, 150, 105,0.08);
  color: var(--red);
}
.checkout-steps span.is-done {
  border-color: #101828;
  background: #101828;
  color: var(--white);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.product-detail {
  display: block;
}
.detail-copy > p:not(.eyebrow) {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 620px;
}
.detail-price strong {
  font-size: 29px;
}
.detail-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-weight: 900;
}
.detail-qty input {
  width: 54px;
  height: 34px;
  border: 0;
  text-align: center;
  font-weight: 900;
  outline: 0;
}
.detail-mini-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.detail-mini-features span {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8f9fb;
  color: #475467;
  font-size: 12px;
  font-weight: 850;
}
.warning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.warning-grid article {
  padding: 16px;
  border: 1px solid #f0c9ce;
  border-radius: 14px;
  background: #fff7f8;
}
.warning-grid strong {
  display: block;
  color: var(--black);
  font-size: 14px;
}
.warning-grid p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475467;
}
.compact-info-card {
  display: block;
  margin-top: 12px;
}
.compact-info-card ul {
  padding-left: 18px;
}
.product-video-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #c7ced8;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #fff);
}
.product-video-placeholder span {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}
.product-video-placeholder p {
  margin-top: 8px;
  font-size: 14px;
}
.review-login-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8f9fb;
}
.review-login-box div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.review-login-box a {
  color: var(--red);
  font-weight: 900;
}
.bundle-box {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}
.bundle-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.bundle-products article {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
}
.bundle-thumb {
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--off-white);
  overflow: hidden;
}
.bundle-thumb .product-bottle { width: 54px; height: 88px; }
.bundle-thumb .product-can,
.bundle-thumb .product-set { width: 78px; height: 88px; }
.bundle-products strong {
  font-size: 13px;
  line-height: 1.25;
}
.bundle-products span {
  color: var(--red);
  font-weight: 900;
}
.bundle-products i {
  position: absolute;
  top: 52px;
  right: -14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}
.bundle-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: #101828;
  color: var(--white);
}
.bundle-summary small {
  color: rgba(255,255,255,0.65);
  font-weight: 850;
}
.bundle-summary strong {
  font-size: 24px;
}

.account-shell {
  background: var(--off-white);
}
.account-panel-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  align-items: start;
}
.account-side {
  position: sticky;
  top: 164px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}
.account-side a {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--black);
  font-weight: 900;
}
.account-side a.is-active,
.account-side a:hover {
  background: var(--black);
  color: var(--white);
}
.account-panel-main,
.checkout-form,
.result-panel {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}
.panel-title {
  margin-bottom: 22px;
}
.panel-title p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 10px;
}
.order-list {
  display: grid;
  gap: 12px;
}
.order-card {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.order-card span,
.order-card small {
  display: block;
  color: #667085;
  font-size: 13px;
}
.order-card b {
  color: var(--black);
}
.order-card.muted {
  opacity: 0.76;
}
.order-detail-grid {
  display: grid;
  gap: 14px;
}
.detail-section.compact {
  padding: 18px;
}
.detail-section.compact h2 {
  font-size: 20px;
}
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.profile-form,
.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.profile-form .panel-title,
.checkout-form .panel-title,
.profile-form .full,
.checkout-form .full {
  grid-column: 1 / -1;
}
.profile-form label,
.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}
.profile-form input,
.profile-form select,
.profile-form textarea,
.checkout-form input,
.checkout-form textarea {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 13px;
  font: inherit;
  outline: 0;
}
.profile-form textarea,
.checkout-form textarea {
  padding-top: 12px;
  resize: vertical;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}
.result-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 28px;
}
.result-panel code {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f2f4f7;
  color: #344054;
}

/* Hesap menüsü — çıkış butonu */
.account-side-logout {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.account-side-logout button {
  width: 100%;
  text-align: left;
  padding: 13px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.account-side-logout button:hover {
  background: var(--red);
  color: var(--white);
}

/* Ürün kartı — favori (kalp) butonu */
.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.fav-btn:hover {
  border-color: var(--red);
  transform: scale(1.06);
}
.fav-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #98a0ac;
  stroke-width: 1.8;
  transition: fill 0.15s, stroke 0.15s;
}
.fav-btn.is-active {
  border-color: var(--red);
  background: #fff;
}
.fav-btn.is-active svg {
  fill: var(--red);
  stroke: var(--red);
}

/* Adreslerim — kart listesi */
.account-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.address-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.address-card.is-default {
  border-color: var(--black);
  box-shadow: 0 0 0 1px var(--black);
}
.address-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-card__title {
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
}
.address-card__badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
}
.address-card__person {
  font-weight: 700;
  color: var(--black);
}
.address-card__body {
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}
.address-card__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  flex-wrap: wrap;
}
.address-card__actions a,
.address-card__actions button {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
}
.address-card__actions a:hover,
.address-card__actions button:hover {
  border-color: var(--black);
}
.address-card__actions .is-danger {
  color: var(--red);
}
.address-card__actions .is-danger:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.profile-form .check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.profile-form .check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--red);
  flex: none;
}
.field-hint {
  font-size: 12px;
  font-weight: 600;
  color: #98a0ac;
}

/* Checkout — giriş/adres yönlendirme paneli */
.checkout-main {
  min-width: 0;
}
.checkout-prompt {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  background: var(--off-white);
}
.checkout-prompt h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.checkout-prompt p {
  color: var(--text);
  margin-bottom: 18px;
  max-width: 460px;
}
.checkout-prompt__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Checkout — adres seçim kartları (radio) */
.checkout-address-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.checkout-address {
  position: relative;
  cursor: pointer;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.checkout-address input[type="radio"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex: none;
}
.checkout-address__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.checkout-address:has(input:checked) {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.checkout-add-address {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--black);
}
.checkout-add-address:hover {
  color: var(--red);
}
.checkout-cargo-hint {
  display: block;
  color: var(--text);
  font-size: 12px;
  margin: -4px 0 4px;
}

/* Buton loader (ödeme hazırlanırken çift tıklamayı önler) */
.btn-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  vertical-align: -2px;
  margin-right: 6px;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn.is-loading {
  opacity: 0.9;
  cursor: progress;
  pointer-events: none;
}
.checkout-address__lines {
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

/* Checkout — blok başlıkları, fatura toggle, sticky özet */
.checkout-block {
  margin-bottom: 24px;
}
.checkout-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.checkout-block__head h2 {
  font-size: 18px;
}
.checkout-block .checkout-add-address {
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.checkout-billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}
.checkout-billing-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}
.checkout-billing {
  margin-top: 16px;
}
.checkout-billing h2 {
  font-size: 18px;
  margin-bottom: 14px;
}
.checkout-submit {
  width: 100%;
  max-width: 320px;
}
.checkout-summary {
  position: sticky;
  top: 164px;
}

/* Genel modal (sms-modal) */
.sms-modal[hidden] {
  display: none;
}
.sms-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.sms-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.55);
  backdrop-filter: blur(2px);
}
.sms-modal__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(9, 9, 11, 0.35);
}
.sms-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.sms-modal__head h2 {
  font-size: 20px;
}
.sms-modal__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--off-white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}
.sms-modal__close:hover {
  background: var(--red);
  color: #fff;
}
.sms-modal__body {
  padding: 22px;
  overflow-y: auto;
}

/* Ödeme — PayTR iframe + sipariş özeti kalemleri */
.paytr-frame {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  min-height: 520px;
}
.paytr-frame iframe {
  display: block;
  min-height: 520px;
}
.checkout-summary .order-no {
  display: block;
  color: var(--text);
  font-size: 12px;
  margin: -6px 0 10px;
}
.order-summary-items {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #475467;
}
.order-summary-item strong {
  color: var(--black);
  white-space: nowrap;
}

/* Ödeme sonucu — ikon, sipariş kutusu, aksiyonlar */
.result-panel--success {
  border-top: 4px solid #059669;
}
.result-panel--failed,
.result-panel--error {
  border-top: 4px solid var(--red);
}
.result-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.result-icon svg {
  width: 40px;
  height: 40px;
}
.result-icon--success {
  background: #dcfce7;
  color: #059669;
}
.result-icon--failed,
.result-icon--error {
  background: #fee2e2;
  color: var(--red);
}
.result-panel .eyebrow {
  margin-bottom: 6px;
}
.result-panel h1 {
  margin-bottom: 4px;
}
.result-msg {
  max-width: 540px;
  margin: 8px auto 0;
  color: var(--text);
  line-height: 1.6;
}
.result-note {
  margin-top: 12px;
  font-weight: 800;
  color: #b45309;
}
.result-order {
  width: 100%;
  max-width: 440px;
  margin: 28px auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 20px;
  background: var(--off-white);
  text-align: left;
}
.result-order__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.result-order__row:last-child {
  border-bottom: 0;
}
.result-order__row span {
  color: var(--text);
}
.result-order__row strong {
  color: var(--black);
}
.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Sipariş durumu rozeti */
.order-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.order-status.is-paid { background: #dcfce7; color: #15803d; }
.order-status.is-pending { background: #fef3c7; color: #b45309; }
.order-status.is-failed { background: #fee2e2; color: var(--danger); }
.order-status.is-cancelled { background: #eef2f5; color: #566573; }

/* Siparişlerim — liste */
.orders-list {
  display: grid;
  gap: 14px;
}
.order-block {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.order-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.order-block__id strong {
  display: block;
  color: var(--black);
  font-size: 15px;
}
.order-block__id span {
  font-size: 12px;
  color: var(--text);
}
.order-block__items {
  padding: 12px 18px;
  display: grid;
  gap: 8px;
}
.order-block__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #475467;
}
.order-block__item strong { color: var(--black); white-space: nowrap; }
.order-block__item small { color: var(--text); }
.order-block__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.order-block__foot > span { font-size: 13px; color: var(--text); }
.order-block__foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-block__foot-right > strong { font-size: 17px; color: var(--black); }

/* Sipariş detayı */
.order-back {
  display: inline-block;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}
.order-back:hover { color: var(--red); }
.order-detail-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.order-detail-date { color: var(--text); font-size: 13px; }
/* Sipariş kargo bilgi kartı */
.order-cargo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
}
.order-cargo__brand {
  display: grid;
  place-items: center;
  min-width: 88px;
  height: 44px;
}
.order-cargo__brand img {
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
}
.order-cargo__name {
  font-weight: 900;
  color: var(--black);
}
.order-cargo__info {
  display: grid;
  gap: 2px;
}
.order-cargo__label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #059669;
}
.order-cargo__info strong {
  color: var(--black);
}
.order-cargo .btn {
  margin-left: auto;
}

.order-detail-products {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}
.order-product {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.order-product__thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--off-white);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.order-product__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.order-product__info strong { display: block; color: var(--black); }
.order-product__info span { font-size: 13px; color: var(--text); }
.order-product__info small { display: block; font-size: 13px; color: var(--text); margin-top: 2px; }
.order-product__total { color: var(--black); white-space: nowrap; }
.order-product__badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  background: #fee2e2;
  color: var(--red);
}
.order-product--inactive { opacity: 0.62; }
.order-product--inactive .order-product__total { text-decoration: line-through; }
.order-detail-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.order-address-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.order-address-card__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 8px;
}
.order-address-card strong { color: var(--black); }
.order-address-card span { font-size: 13px; color: var(--text); }
.order-address-card p { font-size: 14px; color: #667085; margin-top: 6px; line-height: 1.5; }
.order-address-card small { display: block; margin-top: 8px; font-size: 12px; color: var(--text); }
.order-detail-summary {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-left: auto;
}
.order-detail-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}
.order-detail-summary strong { color: var(--black); }
.order-detail-total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-size: 18px;
}
.order-detail-total strong { font-size: 20px; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-shell,
  .account-panel-layout,
  .checkout-layout,
  .bundle-box {
    grid-template-columns: 1fr;
  }
  .account-side {
    position: static;
    display: flex;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  h1 { font-size: clamp(28px, 8vw, 38px); }
  h2 { font-size: clamp(22px, 6vw, 30px); }
  .hero-copy h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .checkout-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .warning-grid,
  .bundle-products,
  .detail-mini-features,
  .profile-form,
  .checkout-form,
  .order-card,
  .address-grid,
  .checkout-address-list,
  .order-detail-addresses {
    grid-template-columns: 1fr;
  }
  .product-bottom {
    grid-template-columns: 1fr;
  }
  .bundle-products i {
    display: none;
  }
  .account-panel-main,
  .checkout-form,
  .result-panel {
    padding: 18px;
  }
}

/* Mobile listing/filter repair */
@media (max-width: 760px) {
  body.has-sticky-cta { padding-bottom: 68px; }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta--single {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
  .mobile-sticky-cta a,
  .mobile-sticky-cta button {
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }
  .mobile-sticky-cta a span {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    font-size: 12px;
    line-height: 1;
  }

  .products.section-pad {
    padding-top: 26px;
  }
  .product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .mobile-filter-toggle {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 8px 12px 8px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--black);
    text-align: left;
    box-shadow: 0 10px 28px rgba(9,9,11,0.05);
  }
  .mobile-filter-toggle span {
    font-size: 14px;
    font-weight: 900;
  }
  .mobile-filter-toggle small {
    justify-self: end;
    color: #667085;
    font-size: 11px;
    font-weight: 800;
  }
  .mobile-filter-toggle::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
  }
  .mobile-filter-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
  }

  .filter-panel {
    display: none;
    position: static;
    width: 100%;
    max-width: none;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(9,9,11,0.08);
  }
  .filter-panel.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mobile-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-filter-head strong {
    font-size: 16px;
    font-weight: 900;
  }
  .mobile-filter-head button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 26px;
    line-height: 1;
  }
  .filter-divider {
    margin: 2px 0;
  }
  .filter-panel strong {
    width: auto;
    margin: 0;
    font-size: 13px;
  }
  .filter-search {
    gap: 6px;
  }
  .filter-search input {
    min-height: 42px;
    font-size: 14px;
  }
  .filter-btn,
  .volume-filter button,
  .rating-filter button {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
  }
  .filter-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .filter-choice-grid .filter-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 8px 9px;
    white-space: normal;
  }
  .volume-filter,
  .rating-filter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .volume-filter__empty {
    grid-column: 1 / -1;
    padding: 8px 0;
    font-size: 12px;
  }
  .price-slider {
    padding: 4px 2px 0;
  }
  .price-slider__values {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
  }
  .price-slider__values span {
    min-width: 0;
    padding: 4px 7px;
    border-radius: 999px;
    background: #f2f4f7;
    white-space: nowrap;
  }
  .price-slider__track-wrap {
    height: 32px;
    padding: 0 10px;
  }
  .price-slider__track-wrap input[type=range] {
    top: 4px;
    height: 28px;
  }

  .listing-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  .listing-toolbar span {
    font-size: 13px;
  }
  .listing-toolbar select {
    min-height: 42px;
    font-size: 13px;
  }
  /* ── Ürün kartları: mobil 2'li e-ticaret düzeni (listeleme + anasayfa) ── */
  .product-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-media {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .product-photo { padding: 9%; }
  .product-body {
    padding: 10px 11px 12px;
  }
  .product-card-head small { font-size: 10.5px; letter-spacing: 0; }
  .product-card-head span {
    min-height: 22px;
    padding: 0 7px;
    font-size: 10px;
  }
  .product-body h3 {
    margin-top: 5px;
    font-size: 13.5px;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.56em;
  }
  /* Açıklama + puan mobil kompakt kartta gizli — daha temiz, e-ticaret standardı */
  .product-body p { display: none; }
  .product-rating { display: none; }
  .fav-btn { top: 8px; right: 8px; width: 32px; height: 32px; }
  .fav-btn svg { width: 16px; height: 16px; }
  .badge { top: 8px; left: 8px; padding: 4px 8px; font-size: 10px; }
  /* Fiyat üstte, tek işlem butonu tam genişlik; "Detay" gizli (kart görseli+adı zaten detaya linkli).
     Özgüllük .product-card .product-bottom (0,2,0) — desktop 1fr 1fr grid'ini ezmek için gerekli. */
  .product-card .product-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
  }
  .product-card .product-bottom strong { font-size: 17px; }
  .product-card .product-bottom strong small { font-size: 12px; }
  .product-card .product-bottom a.btn { display: none; }
  .product-card .product-bottom button.btn {
    width: 100%;
    min-height: 42px;
  }
}

/* ===== Blog yazısı (tek sayfa) + prose tipografi ===== */
.blog-post {
  max-width: 820px;
}
.blog-post__head {
  margin-bottom: 22px;
}
.blog-post__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-post__title {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--black);
}
.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}
.blog-post__dot {
  color: #d1d5db;
}
.blog-post__cover {
  margin: 0 0 26px;
  border-radius: 18px;
  overflow: hidden;
}
.blog-post__cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-post__excerpt {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: #374151;
}

/* prose — zengin içerik tipografisi (blog + statik sayfalar) */
.prose {
  font-size: 16px;
  line-height: 1.75;
  color: #27272a;
}
.prose > *:first-child { margin-top: 0; }
.prose p { margin: 0 0 18px; }
.prose h2 {
  margin: 36px 0 14px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--black);
}
.prose h3 {
  margin: 28px 0 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--black);
}
.prose ul,
.prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.prose li { margin: 0 0 8px; }
.prose a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 18px 0;
}
.prose blockquote {
  margin: 22px 0;
  padding: 6px 18px;
  border-left: 4px solid var(--red);
  color: #4b5563;
  font-style: italic;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.prose th,
.prose td {
  border: 1px solid #e5e7eb;
  padding: 9px 12px;
  text-align: left;
}
.prose th { background: #f9fafb; font-weight: 700; }

@media (max-width: 760px) {
  .blog-post__title { font-size: 28px; }
  .blog-post__excerpt { font-size: 16px; }
  .prose { font-size: 15px; }
  .prose h2 { font-size: 22px; }
  .prose h3 { font-size: 19px; }
}

/* ===== SSS (Sıkça Sorulan Sorular) public sayfası ===== */
.faq-page { max-width: 860px; }
.faq-group { margin-bottom: 34px; }
.faq-group__title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--black);
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f3;
}
.faq-empty {
  font-size: 15px;
  color: #6b7280;
}
.faq-empty a { color: var(--red); text-decoration: underline; }
.faq-cta {
  margin-top: 36px;
  padding: 24px;
  border-radius: 16px;
  background: #f7f7f9;
  text-align: center;
}
.faq-cta p {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

/* Footer adresi (panelden) */
.sms-footer-address {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.82;
}

/* ===== Ürün yorumları (değerlendirmeler) ===== */
.reviews-wrap { max-width: 880px; }
.reviews-summary { margin: 4px 0 18px; }
.reviews-score { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.reviews-score strong { font-size: 40px; font-weight: 950; line-height: 1; color: var(--black); }
.reviews-stars { color: #f1bc00; letter-spacing: 2px; font-size: 18px; }
.reviews-score small { color: #6b7280; font-weight: 600; }
.reviews-empty { color: #6b7280; font-size: 15px; }
.reviews-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 14px; }
.review { padding: 16px 18px; border: 1px solid #ececef; border-radius: 14px; background: #fff; }
.review-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.review-top strong { font-weight: 800; color: var(--black); }
.review-top small { color: #98a0ac; }
.review-top .reviews-stars { font-size: 15px; }
.review-title { margin: 2px 0 4px; font-weight: 700; color: var(--black); }
.review-comment { margin: 0; color: #374151; line-height: 1.6; }
.review-form-box { border-top: 1px dashed #e5e7eb; padding-top: 22px; }
.review-pending { color: #b76e00; background: #fff7e6; padding: 10px 14px; border-radius: 8px; font-size: 14px; }
.review-form { display: grid; gap: 14px; max-width: 520px; }
.review-form h3 { margin: 0; font-size: 18px; font-weight: 900; color: var(--black); }
.review-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: #374151; }
.review-form select, .review-form input, .review-form textarea {
  border: 1px solid #d8dadf; border-radius: 10px; padding: 10px 12px; font-size: 14px; font-family: inherit; width: 100%; box-sizing: border-box;
}
.review-form select:focus, .review-form input:focus, .review-form textarea:focus { border-color: var(--red); outline: none; }
.review-form .btn { width: max-content; }

/* ============================================================
   BAŞLIK DÜZENI (Title Case) — arayüz başlık/buton/bağlantı/etiketlerinde
   her kelimenin baş harfi büyük. text-transform:capitalize gerisini KÜÇÜLTMEZ,
   bu yüzden SMS / SSS / WhatsApp gibi markalar ve panelden gelen ürün/kategori
   adları bozulmaz. <html lang="tr"> sayesinde Türkçe büyütme (i→İ) doğru çalışır.
   Paragraflar ve zengin metin (ürün/kategori açıklaması, blog, sayfa) hariçtir.
   ============================================================ */
main :is(h1, h2, h3, h4, h5, h6),
.btn,
.filter-btn,
.btn-google,
.nav-link,
.account-side a,
main button,
form label {
  text-transform: capitalize;
}

/* Kullanıcının yazdığı metin (label input'u sardığında miras alır) büyümesin */
form input,
form select,
form textarea {
  text-transform: none;
}

/* Zengin metin / içerik gövdeleri panelde yazıldığı gibi kalsın */
.description-body, .description-body :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, a),
.listing-seo-scroll, .listing-seo-scroll :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, a),
.prose, .prose :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, a),
.blog-post__body, .blog-post__body :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, a),
main p {
  text-transform: none;
}

/* Hero arka plan görseli: metin aynı görselin üstünde render edilir. */
.hero-slide.hero-slide--image {
  min-height: 640px;
  padding: 0;
  background-color: #f4f6f8;
  background-image: var(--hero-bg-web, linear-gradient(118deg, #f7f8fb 0%, #ffffff 42%, #edf1f6 100%)) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.hero-slide.hero-slide--image::before {
  display: none !important;
}
.hero-slide.hero-slide--image::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-slide.hero-slide--text-dark {
  color: var(--black);
}
.hero-slide.hero-slide--text-dark::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.36) 62%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0) 46%, rgba(255,255,255,0.18) 100%);
}
.hero-slide.hero-slide--text-light {
  color: var(--white);
}
.hero-slide.hero-slide--text-light::after {
  background:
    linear-gradient(90deg, rgba(3,5,8,0.84) 0%, rgba(3,5,8,0.68) 38%, rgba(3,5,8,0.28) 66%, rgba(3,5,8,0) 100%),
    linear-gradient(180deg, rgba(3,5,8,0.42) 0%, rgba(3,5,8,0) 48%, rgba(3,5,8,0.22) 100%);
}
.hero-slide.hero-slide--image .hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
  gap: 0;
  padding-top: 74px;
  padding-bottom: 92px;
  position: relative;
  z-index: 1;
}
.hero-slide.hero-slide--image .hero-copy {
  max-width: 680px;
}
.hero-slide.hero-slide--image .hero-copy h1 {
  max-width: 680px;
  font-size: 3.5rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-slide.hero-slide--text-dark .hero-copy > p:not(.eyebrow) {
  color: #4d5664;
}
.hero-slide.hero-slide--text-light .hero-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,0.78);
}
.hero-slide.hero-slide--text-dark .hero-actions .btn-outline.dark {
  border-color: rgba(9,9,11,0.2);
  color: var(--black);
}
.hero-slide.hero-slide--text-dark .hero-actions .btn-outline.dark:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.hero-slide.hero-slide--text-light .hero-actions .btn-outline.dark {
  border-color: rgba(255,255,255,0.34);
  color: var(--white);
}
.hero-slide.hero-slide--text-light .hero-actions .btn-outline.dark:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.hero-slide.hero-slide--image .hero-visual {
  display: none;
}

@media (max-width: 900px) {
  .hero-slide.hero-slide--image {
    min-height: 600px;
    background-image: var(--hero-bg-mobile, var(--hero-bg-web, linear-gradient(118deg, #f7f8fb 0%, #ffffff 42%, #edf1f6 100%))) !important;
    background-position: center top !important;
  }
  .hero-slide.hero-slide--image .hero-grid {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    padding-top: 56px;
    padding-bottom: 96px;
  }
  .hero-slide.hero-slide--text-dark::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.34) 40%, rgba(255,255,255,0.96) 100%),
      linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.3) 100%);
  }
  .hero-slide.hero-slide--text-light::after {
    background:
      linear-gradient(180deg, rgba(3,5,8,0.58) 0%, rgba(3,5,8,0.18) 42%, rgba(3,5,8,0.86) 100%),
      linear-gradient(90deg, rgba(3,5,8,0.72) 0%, rgba(3,5,8,0.22) 100%);
  }
  .hero-slide.hero-slide--image .hero-copy {
    max-width: 100%;
  }
  .hero-slide.hero-slide--image .hero-copy h1 {
    max-width: 100%;
    font-size: 2.65rem;
  }
  .hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .hero-slide.hero-slide--image {
    min-height: 560px;
  }
  .hero-slide.hero-slide--image .hero-grid {
    min-height: 560px;
    padding-top: 42px;
    padding-bottom: 86px;
  }
  .hero-slide.hero-slide--image .hero-copy h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }
  .hero-slide.hero-slide--image .hero-actions {
    margin-top: 24px;
  }
}

/* Ürün görselleri: tüm kart, listeleme, detay ve küçük thumb alanları düz beyaz zemin kullanır. */
.product-media,
.product-card[data-category="oto"] .product-media,
.product-card[data-category="pro"] .product-media,
.product-card[data-category="aksesuar"] .product-media,
.product-card[data-category="set"] .product-media,
.detail-media,
.detail-thumbs button,
.info-thumb,
.cart-thumb,
.mini-cart-thumb,
.cart-sheet .mini-cart-thumb,
.header-tools .mini-cart-menu .mini-cart-thumb,
.bundle-thumb,
.order-product__thumb,
.product-video-frame {
  background: #fff !important;
  background-image: none !important;
}
.product-media::before,
.product-media::after {
  display: none !important;
}
.header-tools .mini-cart-menu .mini-cart-thumb:hover {
  background: #fff !important;
}

/* Product image integrity guard
   Catalog images must never render at natural size or crop inside cards. This late,
   high-specificity block intentionally wins over older card/gallery rules. */
.product-card .product-media {
  aspect-ratio: 1 / 1;
  min-height: 260px;
  overflow: hidden;
}
.product-card .product-gallery,
.product-card .gallery-frame,
.product-card .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.product-card .product-gallery {
  display: block;
}
.product-card .gallery-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .product-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 11%, 52px) clamp(34px, 13%, 64px) clamp(24px, 9%, 46px);
  box-sizing: border-box;
}
.product-card .product-photo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.product-card .gallery-frame.is-active {
  transform: translateX(0) scale(1);
}

@media (max-width: 760px) {
  /* min-height YOK — aspect-ratio 1/1 kare medyayı belirler, sabit yükseklik kareyi bozuyordu */
  .product-card .product-photo {
    padding: clamp(20px, 9%, 34px) clamp(22px, 10%, 38px) clamp(18px, 8%, 32px);
  }
}

/* Responsive stability guard: tablet widths must not keep desktop navigation. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
.site-header,
.campaign-bar,
.main-header,
.nav-bar,
.hero-slider,
main {
  width: 100%;
  max-width: 100%;
}
.campaign-shell,
.header-grid,
.nav-inner,
.hero-grid,
.product-grid,
.home-product-grid {
  min-width: 0;
}

/* ===== KANONİK GRID RESPONSIVE — dosyadaki eski dağınık kuralları ezen son söz =====
   Masaüstü 4 → tablet 3 → mobil 2. Mobilde ASLA tek kolona düşmez (e-ticaret standardı). */
@media (max-width: 1100px) {
  .product-grid,
  .home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .search-form {
    min-width: 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav-bar {
    display: none;
  }
  .hero-slide.hero-slide--image {
    min-height: 600px;
    background-position: center top !important;
  }
  .hero-slide.hero-slide--image .hero-grid {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 58px;
    padding-bottom: 86px;
  }
  .hero-slide.hero-slide--image .hero-copy {
    max-width: min(100%, 620px);
  }
  .hero-slide.hero-slide--image .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 5vw, 3rem);
    line-height: 1.07;
  }
  .hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 760px) {
  .product-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}
@media (max-width: 560px) {
  /* Küçük telefonda da 2'li kalır — sadece nefes boşluğu daralır */
  .product-grid,
  .home-product-grid {
    gap: 8px;
  }
}

/* ===== SMS premium visual system refresh ===== */
:root {
  /* Eski kırmızı token'lar artık zümrüt aksana bağlı — logo dışında kırmızı kalmadı */
  --sms-red: var(--accent);
  --sms-red-dark: var(--accent-dark);
  --sms-red-soft: var(--accent-tint);
  --sms-ink: #09090b;
  --sms-carbon: #15161a;
  --sms-muted: #6b7280;
  --sms-line: #e3e4e8;
  --sms-paper: #ffffff;
  --sms-canvas: #f5f6f8;
  --sms-panel: #fafafa;
  --sms-shadow-sm: 0 8px 22px rgba(9, 9, 11, 0.06);
  --sms-shadow-md: 0 18px 46px rgba(9, 9, 11, 0.1);
  --sms-shadow-lg: 0 28px 80px rgba(9, 9, 11, 0.16);
  --sms-radius-xs: 4px;
  --sms-radius-sm: 6px;
  --sms-radius: 8px;
  --sms-radius-lg: 12px;
  --red: var(--sms-red);
  --red-dark: var(--sms-red-dark);
  --brand: var(--sms-red);
  --brand-dark: var(--sms-red-dark);
  --brand-tint: var(--sms-red-soft);
  --brand-tint-border: #f3c7cd;
  --blue: var(--sms-ink);
  --blue-dark: var(--sms-ink);
  --blue-tint: #f2f3f5;
  --blue-soft: var(--sms-red);
  --black: var(--sms-ink);
  --carbon: var(--sms-carbon);
  --soft-black: #24252a;
  --off-white: var(--sms-canvas);
  --surface: #f0f1f3;
  --border: var(--sms-line);
  --text: var(--sms-muted);
  --green: var(--sms-red);
  --shadow: var(--sms-shadow-md);
  --radius-sm: var(--sms-radius-sm);
  --radius: var(--sms-radius);
  --radius-lg: var(--sms-radius-lg);
}

html {
  background: var(--sms-canvas);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 520px, var(--sms-canvas) 100%);
  color: var(--sms-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(200, 16, 46, 0.16);
  color: var(--sms-ink);
}

:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.24);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

p {
  color: var(--sms-muted);
}

.section-pad {
  padding: 76px 0;
}

.eyebrow {
  color: var(--sms-red);
  letter-spacing: 0.12em;
}

.btn {
  min-height: 46px;
  border-radius: var(--sms-radius);
  font-weight: 850;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  border-color: var(--sms-red);
  background: var(--sms-red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(200, 16, 46, 0.18);
}

.btn-red:hover {
  border-color: var(--sms-red-dark);
  background: var(--sms-red-dark);
  box-shadow: 0 16px 30px rgba(200, 16, 46, 0.22);
}

.btn-outline {
  border-color: #d8dbe2;
  background: var(--sms-paper);
  color: var(--sms-ink);
}

.btn-outline:hover {
  border-color: var(--sms-ink);
  background: var(--sms-ink);
  color: var(--white);
}

.btn-small {
  min-height: 38px;
  border-radius: var(--sms-radius-sm);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(9, 9, 11, 0.08);
  backdrop-filter: blur(18px);
}

.campaign-bar,
.campaign-bar.tone-black,
.campaign-bar.tone-carbon {
  min-height: 54px;
  background:
    linear-gradient(90deg, #09090b 0%, #14151a 54%, #2a070d 100%);
  color: var(--white);
}

.campaign-bar.tone-red {
  background:
    linear-gradient(90deg, #8f0e1b 0%, #c8102e 42%, #09090b 100%);
}

.campaign-bar.tone-light {
  background:
    linear-gradient(90deg, #ffffff 0%, #fff5f6 48%, #f2f3f5 100%);
  color: var(--sms-ink);
}

.campaign-shell,
.campaign-track {
  min-height: 54px;
}

.campaign-label {
  min-height: 24px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.campaign-slide[data-tone="red"] strong,
.campaign-slide[data-tone="carbon"] strong,
.campaign-slide[data-tone="light"] strong {
  color: inherit;
}

.campaign-dots button.is-active,
.campaign-countdown i {
  background: var(--sms-red);
}

.main-header {
  background: rgba(255, 255, 255, 0.96);
}

.header-grid {
  min-height: 78px;
  gap: 24px;
}

.brand img {
  height: 56px;
}

.search-form {
  min-height: 52px;
  border: 1px solid #dfe1e6;
  border-radius: var(--sms-radius);
  background: #f7f8fa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-form:focus-within {
  border-color: rgba(200, 16, 46, 0.42);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(9, 9, 11, 0.07);
}

.search-icon {
  color: #848a95;
}

.search-submit {
  border-radius: var(--sms-radius-sm);
  background: var(--sms-ink);
  box-shadow: none;
}

.search-submit:hover {
  background: var(--sms-red);
  box-shadow: 0 12px 22px rgba(200, 16, 46, 0.2);
}

.header-tools a,
.menu-toggle {
  min-height: 44px;
  border-color: #dfe1e6;
  border-radius: var(--sms-radius);
  background: #ffffff;
  color: var(--sms-ink);
  box-shadow: 0 6px 16px rgba(9, 9, 11, 0.035);
}

.header-tools a:hover,
.menu-toggle:hover {
  border-color: var(--sms-ink);
  background: var(--sms-ink);
  color: var(--white);
}

.header-tools a:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.cart-link b {
  background: var(--sms-red);
}

.header-dropdown-menu {
  border-radius: var(--sms-radius-lg);
  border-color: #dcdee4;
  box-shadow: var(--sms-shadow-lg);
}

.header-tools .header-dropdown-menu a .nav-icon,
.header-tools .header-dropdown-menu .auth-logout-form button .nav-icon {
  color: var(--sms-red);
}

.header-tools .header-dropdown-menu a:hover,
.header-tools .header-dropdown-menu .auth-logout-form button:hover {
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.mini-cart-footer {
  background: #f6f7f9;
}

.nav-bar {
  border-color: rgba(9, 9, 11, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(9, 9, 11, 0.05);
}

.nav-inner {
  min-height: 56px;
  gap: 10px;
}

.nav-link {
  min-height: 40px;
  border-radius: var(--sms-radius-sm);
  color: #17181d;
  font-weight: 850;
}

.nav-link:hover,
.nav-link.is-active {
  background: transparent;
  color: var(--accent-dark);
  box-shadow: none;
}

.nav-trigger,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger {
  background: var(--sms-ink);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(9, 9, 11, 0.16);
}

.nav-cta.sale,
.nav-cta.sale:hover {
  background: var(--sms-red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(200, 16, 46, 0.18);
}

.mini-menu,
.mega-menu {
  border-color: #dcdee4;
  box-shadow: var(--sms-shadow-lg);
}

.mini-menu a:hover {
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.mega-panel {
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.mega-feature {
  border-radius: var(--sms-radius-lg);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.32), transparent 44%),
    linear-gradient(145deg, #09090b 0%, #15161a 54%, #310811 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mega-feature small {
  color: #ffb5bf;
}

.mega-feature a {
  border-radius: var(--sms-radius-sm);
}

.mega-column a {
  border-radius: var(--sms-radius);
}

.mega-column a:hover {
  background: #f6f7f9;
  color: var(--sms-red-dark);
}

.mega-column a:hover .mega-icon,
.mega-icon.sale,
.mega-icon.hot {
  border-color: rgba(200, 16, 46, 0.24);
  background: var(--sms-red-soft);
  color: var(--sms-red);
}

.mobile-drawer {
  background: rgba(9, 9, 11, 0.62);
}

.drawer-panel {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: -28px 0 80px rgba(9, 9, 11, 0.28);
}

.drawer-head,
.drawer-action-row a,
.drawer-link {
  border-color: #dfe1e6;
  border-radius: var(--sms-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--sms-shadow-sm);
}

.drawer-action-row .nav-icon,
.drawer-link-icon,
.drawer-link--sale .drawer-link-icon {
  border-color: rgba(200, 16, 46, 0.18);
  background: var(--sms-red-soft);
  color: var(--sms-red);
}

.drawer-link:hover {
  border-color: rgba(200, 16, 46, 0.26);
  background: #ffffff;
  box-shadow: var(--sms-shadow-md);
}

.hero-slider {
  background: var(--sms-ink);
}

.hero-slide,
.hero-slide[data-tone="carbon"],
.hero-slide[data-tone="light"] {
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.98) 0%, rgba(16, 17, 21, 0.94) 50%, rgba(49, 8, 17, 0.92) 100%);
}

.hero-slide.hero-slide--image {
  min-height: 620px;
  background-color: #f5f6f8;
}

.hero-slide.hero-slide--text-dark::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.32) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
}

.hero-slide.hero-slide--text-light::after {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.9) 0%, rgba(8, 9, 12, 0.72) 42%, rgba(8, 9, 12, 0.24) 72%, rgba(8, 9, 12, 0) 100%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.32), rgba(3, 4, 7, 0.18));
}

.hero-slide.hero-slide--image .hero-grid {
  min-height: 620px;
  padding-top: 82px;
  padding-bottom: 96px;
}

.hero-slide.hero-slide--image .hero-copy h1 {
  max-width: 650px;
  font-size: clamp(2.25rem, 4.5vw, 3.55rem);
  line-height: 1.02;
}

.hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.68;
}

.hero-slide.hero-slide--text-dark .hero-copy > p:not(.eyebrow) {
  color: #4d5562;
}

.hero-actions {
  gap: 10px;
  margin-top: 28px;
}

.hero-controls button {
  width: 38px;
  height: 38px;
  border-radius: var(--sms-radius-sm);
  border-color: rgba(9, 9, 11, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(9, 9, 11, 0.12);
}

.hero-controls button.is-active,
.hero-arrows button:hover {
  border-color: var(--sms-red);
  background: var(--sms-red);
  color: var(--white);
}

.hero-arrows button {
  border-radius: var(--sms-radius);
  background: rgba(9, 9, 11, 0.66);
  border-color: rgba(255, 255, 255, 0.2);
}

.products {
  background: var(--sms-canvas);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  color: var(--sms-ink);
}

.home-showcase-grid {
  gap: 16px;
}

.home-showcase-link {
  position: relative;
  border-radius: var(--sms-radius);
  background: #ffffff;
  box-shadow: var(--sms-shadow-sm);
}

.home-showcase-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0) 48%, rgba(9, 9, 11, 0.22) 100%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.home-showcase-link:hover {
  box-shadow: var(--sms-shadow-md);
}

.blog-home-card,
.filter-panel,
.listing-intro,
.listing-seo-panel,
.listing-banner-panel,
.detail-section,
.cart-item,
.cart-summary,
.auth-card,
.contact-form-card,
.contact-side-card,
.empty-state,
.bundle-box,
.account-side,
.account-panel-main {
  border-color: #dedfe4;
  border-radius: var(--sms-radius);
  background: var(--sms-paper);
  box-shadow: var(--sms-shadow-sm);
}

.blog-home-card:hover,
.product-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow: var(--sms-shadow-md);
}

.blog-home-card__date,
.blog-home-card__more {
  color: var(--sms-red);
}

.product-grid,
.home-product-grid {
  gap: 18px;
}

.product-card {
  position: relative;
  border: 1px solid #dedfe4;
  border-radius: var(--sms-radius);
  background: var(--sms-paper);
  box-shadow: 0 8px 22px rgba(9, 9, 11, 0.045);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-card .product-media {
  min-height: 252px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
}

.product-card .product-photo {
  padding: clamp(26px, 10%, 48px) clamp(30px, 12%, 58px) clamp(24px, 9%, 44px);
}

.badge,
.detail-badge {
  border-radius: 999px;
  background: var(--sms-ink);
  color: var(--white);
}

.fav-btn {
  border: 1px solid rgba(9, 9, 11, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sms-ink);
  box-shadow: 0 10px 24px rgba(9, 9, 11, 0.08);
}

.fav-btn:hover,
.fav-btn.is-active {
  border-color: rgba(200, 16, 46, 0.24);
  background: var(--sms-red);
  color: var(--white);
}

.product-body {
  padding: 16px;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-body small,
.product-card-head small,
.product-card-head span {
  color: #7b828f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-top: 8px;
  color: var(--sms-ink);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 850;
}

.product-body p {
  color: #66707d;
  line-height: 1.5;
}

.product-rating span,
.reviews-stars,
.detail-rating span,
.review-head span {
  color: #b7791f;
}

.chips span {
  border: 1px solid #e3e4e8;
  background: #f7f8fa;
  color: #5f6875;
}

.product-bottom {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 16px;
}

.product-bottom strong {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  color: var(--sms-ink);
  font-size: 20px;
}

.product-bottom strong small {
  color: #9aa0aa;
  font-size: 13px;
  text-decoration: line-through;
}

.product-bottom .btn {
  width: 100%;
}

.product-bottom .btn-outline {
  background: #ffffff;
}

.product-bottom .btn-outline:hover {
  background: var(--sms-ink);
}

.gallery-dots span.is-active {
  background: var(--sms-red);
}

.product-bottle.red {
  background: linear-gradient(180deg, #ffffff 0%, #f4c3ca 100%);
}

.product-bottle.clear {
  background: linear-gradient(180deg, #ffffff 0%, #e7e9ee 100%);
}

.product-can {
  background: linear-gradient(180deg, #22242a 0%, #c8102e 76%, #f2f3f5 76%);
}

.product-set {
  background: linear-gradient(135deg, #09090b 0 36%, #c8102e 36% 62%, #ffffff 62%);
}

.listing-head {
  border-bottom-color: #e1e2e6;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.055), transparent 38%),
    #ffffff;
}

.listing-head-row h1 {
  color: var(--sms-ink);
}

.listing-head-meta span {
  color: var(--sms-red);
}

.filter-panel {
  padding: 18px;
}

.filter-btn {
  border-radius: var(--sms-radius-sm);
}

.filter-btn:hover {
  background: #f5f6f8;
}

.filter-btn.is-active,
.rating-filter button.is-active,
.rating-filter button:hover,
.volume-filter button.is-active,
.listing-pagination__btn.is-active {
  border-color: var(--sms-ink);
  background: var(--sms-ink);
  color: var(--white);
}

.filter-search input,
.price-filter input,
.listing-toolbar select,
.volume-filter button,
.listing-pagination__btn,
.auth-form input,
.form-group-modern input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.review-form input,
.review-form select,
.review-form textarea {
  border-color: #dfe1e6;
  border-radius: var(--sms-radius-sm);
  background: #ffffff;
}

.filter-search input:focus,
.price-filter input:focus,
.form-group-modern input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: rgba(200, 16, 46, 0.42);
  box-shadow: 0 10px 22px rgba(9, 9, 11, 0.06);
}

.price-slider__fill,
.price-slider__track-wrap input[type=range]::-webkit-slider-thumb,
.price-slider__track-wrap input[type=range]::-moz-range-thumb {
  background: var(--sms-red);
}

.listing-toolbar {
  padding: 12px 14px;
  border: 1px solid #dedfe4;
  border-radius: var(--sms-radius);
  background: #ffffff;
  box-shadow: var(--sms-shadow-sm);
}

.listing-toolbar span {
  color: #5f6875;
}

.listing-seo-panel,
.listing-banner-panel {
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.055), transparent 36%),
    #ffffff;
}

.listing-seo-scroll {
  scrollbar-color: var(--sms-red) #eef0f3;
}

.listing-seo-scroll::-webkit-scrollbar-thumb {
  background: var(--sms-red);
}

.filter-link:hover {
  border-color: rgba(200, 16, 46, 0.32);
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.detail-shell {
  gap: 40px;
}

.detail-media {
  border: 1px solid #dedfe4;
  border-radius: var(--sms-radius);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%) !important;
  box-shadow: var(--sms-shadow-sm);
}

.detail-thumbs button {
  border-radius: var(--sms-radius-sm);
}

.detail-thumbs button.is-active {
  border-color: var(--sms-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.detail-copy h1 {
  color: var(--sms-ink);
  font-weight: 850;
}

.detail-price strong,
.cart-discount strong,
.bundle-products span,
.auth-actions a,
.auth-footer a:hover,
.review-login-box a,
.reviews-card .review-gate a {
  color: var(--sms-red);
}

.detail-delivery {
  border-color: rgba(200, 16, 46, 0.16);
  background: var(--sms-red-soft);
}

.sticky-buy-box {
  border-color: #dedfe4;
  border-radius: var(--sms-radius);
  box-shadow: var(--sms-shadow-md);
}

.detail-mini-features span,
.review-login-box,
.coupon-box {
  border-color: #e0e1e6;
  border-radius: var(--sms-radius);
  background: #f7f8fa;
}

.review-summary {
  border-color: rgba(183, 121, 31, 0.22);
  background: #fff9ec;
}

.review,
.review-card {
  border-color: #e0e1e6;
  border-radius: var(--sms-radius);
  background: #ffffff;
}

.bundle-summary,
.checkout-steps span.is-done {
  background: var(--sms-ink);
}

.contact-hero,
.page-hero,
.account-page,
.account-shell {
  background: var(--sms-canvas);
}

.contact-hero-panel {
  border-color: #dedfe4;
  border-radius: var(--sms-radius);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.06), transparent 38%),
    #ffffff;
  box-shadow: var(--sms-shadow-sm);
}

.contact-form-card::before {
  background: linear-gradient(90deg, var(--sms-red), var(--sms-ink));
}

.contact-form button[type="submit"]:hover {
  box-shadow: 0 14px 26px rgba(200, 16, 46, 0.18);
}

.auth-alert--success {
  border-color: rgba(200, 16, 46, 0.2);
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.mobile-sticky-cta {
  border-top-color: #dfe1e6;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-sticky-cta a:first-child,
.mobile-sticky-cta button:first-child {
  background: var(--sms-red);
}

.sms-footer.site-footer {
  background: var(--sms-canvas);
}

.sms-footer-hero {
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.3), transparent 40%),
    linear-gradient(145deg, #09090b 0%, #15161a 58%, #320811 100%);
}

.sms-footer-hero::before {
  opacity: 0.38;
}

.sms-footer-brand,
.sms-footer-newsletter,
.sms-footer-contact {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--sms-radius-lg);
  background: rgba(255, 255, 255, 0.065);
}

.sms-footer .footer-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.sms-footer-contact span,
.sms-footer-contact a:nth-child(even) span,
.sms-footer-trust span,
.sms-footer-trust div:nth-child(even) span {
  border-color: rgba(200, 16, 46, 0.18);
  background: var(--sms-red-soft);
  color: var(--sms-red);
}

.sms-footer-contact a {
  background: rgba(255, 255, 255, 0.08);
}

.sms-footer-newsletter button,
.sms-footer-newsletter button:hover {
  background: var(--sms-red);
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.24);
}

.sms-footer-directory {
  background: var(--sms-canvas);
}

.sms-footer-trust div,
.sms-footer-links > div,
.sms-footer-popular {
  border-color: #dedfe4;
  border-radius: var(--sms-radius);
  background: #ffffff;
  box-shadow: var(--sms-shadow-sm);
}

.sms-footer-trust div::after {
  background: rgba(200, 16, 46, 0.055);
}

.sms-footer-trust div:hover {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: var(--sms-shadow-md);
}

.sms-footer-popular-head small,
.sms-footer a:hover,
.sms-footer-social a:hover,
.sms-footer-bottom a:hover {
  color: var(--sms-red);
}

.sms-footer-popular a:hover {
  border-color: rgba(200, 16, 46, 0.22);
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.sms-footer-bottom {
  background: #09090b;
}

.sms-footer-payments img.pay-mono {
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .mega-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 52px 0;
  }

  .campaign-bar,
  .campaign-shell,
  .campaign-track {
    min-height: 50px;
  }

  .header-grid {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    height: 42px;
  }

  .search-form {
    min-height: 48px;
  }

  .hero-slide.hero-slide--image,
  .hero-slide.hero-slide--image .hero-grid {
    min-height: 560px;
  }

  .hero-slide.hero-slide--image .hero-grid {
    padding-top: 44px;
    padding-bottom: 88px;
  }

  .hero-slide.hero-slide--image .hero-copy h1 {
    font-size: clamp(2.05rem, 9vw, 2.55rem);
  }

  .product-grid,
  .home-product-grid {
    gap: 10px;
  }

  .product-card .product-media {
    min-height: 0;
  }

  .product-body {
    padding: 12px;
  }

  .product-body h3 {
    font-size: 13.5px;
  }

  .product-body p {
    min-height: 38px;
    font-size: 12.5px;
  }

  .product-bottom {
    gap: 6px;
  }

  .product-bottom strong {
    font-size: 17px;
  }

  .product-bottom .btn {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .listing-toolbar {
    padding: 12px;
  }
}

.product-card .product-card-head span {
  border: 1px solid rgba(200, 16, 46, 0.16);
  background: var(--sms-red-soft);
  color: var(--sms-red-dark);
}

.product-bottom .btn-red,
.product-card .product-bottom .btn-red,
.header-tools .mini-cart-footer a.btn {
  background: var(--sms-red);
  border-color: var(--sms-red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(200, 16, 46, 0.18);
}

.product-bottom .btn-red:hover,
.product-card .product-bottom .btn-red:hover,
.header-tools .mini-cart-footer a.btn:hover {
  background: var(--sms-red-dark);
  border-color: var(--sms-red-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(200, 16, 46, 0.22);
}

.product-photo.is-missing {
  position: relative;
  background:
    linear-gradient(145deg, rgba(200, 16, 46, 0.06), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.product-photo.is-missing::before {
  content: "SMS";
  width: min(58%, 132px);
  aspect-ratio: 1 / 1.18;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 9, 11, 0.1);
  border-radius: var(--sms-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    linear-gradient(145deg, rgba(200, 16, 46, 0.16), rgba(9, 9, 11, 0.04));
  color: var(--sms-red);
  font-family: var(--font-head);
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 36px rgba(9, 9, 11, 0.1);
}

.product-card .product-photo.is-missing {
  padding: 0;
}

/* Product photos are mostly portrait around 249x374. Keep the card media portrait too
   so transparent PNGs do not look cropped inside a square stage. */
.product-card .product-media {
  aspect-ratio: 249 / 374;
  min-height: 0;
}

.product-card .product-gallery,
.product-card .gallery-frame,
.product-card .product-photo {
  overflow: visible;
}

.product-card .product-photo:not(.is-missing) {
  padding: clamp(14px, 5.5%, 24px) clamp(16px, 6.5%, 30px);
}

.product-photo img,
.detail-media .product-photo img,
.detail-thumbs .product-photo img,
.cart-thumb img,
.mini-cart-thumb img,
.bundle-thumb .product-photo img,
.order-product__thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Final brand cohesion pass: logo keeps red, UI actions use one premium petrol-green accent. */
:root {
  --sms-logo-red: #c8102e;      /* yalnız logo görseli için — UI'da kullanılmıyor */
  --sms-accent: var(--accent);  /* tüm site tek zümrüt aksanda birleşti */
  --sms-accent-dark: var(--accent-dark);
  --sms-accent-soft: var(--accent-tint);
  --sms-accent-line: var(--accent-tint-border);
  --sms-accent-glow: var(--accent-ring);
  --sms-hero-ink: #070b0d;
  --red: var(--sms-accent);
  --red-dark: var(--sms-accent-dark);
  --brand: var(--sms-accent);
  --brand-dark: var(--sms-accent-dark);
  --brand-tint: var(--sms-accent-soft);
  --brand-tint-border: var(--sms-accent-line);
  --blue: var(--sms-accent);
  --blue-dark: var(--sms-accent-dark);
  --blue-tint: var(--sms-accent-soft);
  --blue-soft: var(--sms-accent);
}

/* Admin dinamik rengi: bare `.campaign-bar` + `!important` KALDIRILDI.
   Custom tonda (admin renk/gradient seçince) JS'in inline background'u artık kazanır;
   presetler yalnız kendi tonuna uygulanır → 1-2 renk tamamen dinamik. */
.campaign-bar.tone-black,
.campaign-bar.tone-carbon {
  background:
    radial-gradient(120% 200% at 100% 0%, rgba(11, 168, 132, 0.30), transparent 55%),
    linear-gradient(90deg, #0b0c10 0%, #14161c 58%, #0d1512 100%);
}
.campaign-bar.tone-red {
  background: linear-gradient(90deg, #0ba884 0%, #08876a 55%, #066750 100%);
}

.campaign-label,
.campaign-countdown {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.campaign-dots button.is-active,
.campaign-countdown i {
  background: var(--sms-accent);
}

.search-icon {
  color: var(--sms-accent);
}

.search-submit,
.nav-trigger,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-cta.sale,
.nav-cta.sale:hover,
.btn-red,
.product-bottom .btn-red,
.product-card .product-bottom .btn-red,
.header-tools .mini-cart-footer a.btn,
.mobile-sticky-cta a:first-child,
.mobile-sticky-cta button:first-child,
.sms-footer-newsletter button,
.sms-footer-newsletter button:hover {
  border-color: var(--sms-accent);
  background: var(--sms-accent);
  color: var(--white);
  box-shadow: 0 14px 28px var(--sms-accent-glow);
}

.search-submit:hover,
.btn-red:hover,
.product-bottom .btn-red:hover,
.product-card .product-bottom .btn-red:hover,
.header-tools .mini-cart-footer a.btn:hover {
  border-color: var(--sms-accent-dark);
  background: var(--sms-accent-dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(8, 135, 106, 0.24);
}

.eyebrow,
.blog-home-card__date,
.blog-home-card__more,
.listing-head-meta span,
.detail-price strong,
.cart-discount strong,
.bundle-products span,
.auth-actions a,
.auth-footer a:hover,
.review-login-box a,
.reviews-card .review-gate a {
  color: var(--sms-accent);
}

.nav-link:hover,
.nav-link.is-active,
.mega-column a:hover,
.mini-menu a:hover,
.sms-footer-popular-head small,
.sms-footer a:hover,
.sms-footer-social a:hover,
.sms-footer-bottom a:hover {
  color: var(--sms-accent-dark);
}

.nav-link:hover,
.nav-link.is-active {
  background: transparent;
  box-shadow: none;
}

.header-tools {
  gap: 8px;
}

.header-tools > a,
.header-tools > .header-tool-dropdown > a,
.menu-toggle {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 14px;
}

.header-tools a > span,
.header-tools a small {
  display: none !important;
}

.header-tools svg {
  width: 23px;
  height: 23px;
}

.header-tools a:hover,
.menu-toggle:hover {
  border-color: var(--sms-accent-line);
  background: var(--sms-accent-soft);
  color: var(--sms-accent-dark);
  box-shadow: none;
  transform: translateY(-1px);
}

.cart-link {
  gap: 0;
}

.cart-link b {
  top: -8px;
  right: -8px;
  background: var(--sms-accent);
}

.header-tools .header-dropdown-menu a > span {
  display: inline !important;
}

.header-tools .header-dropdown-menu a,
.header-tools .header-dropdown-menu .auth-logout-form button {
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 10px;
}

.header-tools .header-dropdown-menu a .nav-icon,
.header-tools .header-dropdown-menu .auth-logout-form button .nav-icon {
  color: var(--sms-accent);
}

.header-tools .header-dropdown-menu a:hover,
.header-tools .header-dropdown-menu .auth-logout-form button:hover {
  background: var(--sms-accent-soft);
  color: var(--sms-accent-dark);
  box-shadow: none;
}

.search-form {
  border-color: #dfe6e4;
  background: #f8faf9;
}

.search-form:focus-within {
  border-color: rgba(11, 168, 132, 0.42);
  box-shadow: 0 16px 34px rgba(11, 168, 132, 0.1);
}

.mega-feature {
  background:
    radial-gradient(circle at 82% 18%, rgba(11, 168, 132, 0.22), transparent 32%),
    linear-gradient(145deg, #071012 0%, #0d171a 58%, #08564a 100%) !important;
}

.mega-feature small {
  color: #8edcc8;
}

.mega-feature a {
  background: var(--white);
  color: var(--sms-hero-ink);
}

.mega-column a:hover {
  background: var(--sms-accent-soft);
}

.mega-column a:hover .mega-icon,
.mega-icon.sale,
.mega-icon.hot,
.drawer-action-row .nav-icon,
.drawer-link-icon,
.drawer-link--sale .drawer-link-icon,
.sms-footer-contact span,
.sms-footer-contact a:nth-child(even) span,
.sms-footer-trust span,
.sms-footer-trust div:nth-child(even) span {
  border-color: rgba(11, 168, 132, 0.22);
  background: var(--sms-accent-soft);
  color: var(--sms-accent);
}

.product-card .product-card-head span,
.detail-delivery,
.auth-alert--success {
  border-color: rgba(11, 168, 132, 0.18);
  background: var(--sms-accent-soft);
  color: var(--sms-accent-dark);
}

.product-card:hover,
.blog-home-card:hover {
  border-color: rgba(11, 168, 132, 0.34);
}

.gallery-dots span.is-active,
.price-slider__fill,
.price-slider__track-wrap input[type=range]::-webkit-slider-thumb,
.price-slider__track-wrap input[type=range]::-moz-range-thumb {
  background: var(--sms-accent);
}

.filter-link:hover,
.sms-footer-popular a:hover {
  border-color: rgba(11, 168, 132, 0.24);
  background: var(--sms-accent-soft);
  color: var(--sms-accent-dark);
}

.sms-footer-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(11, 168, 132, 0.3), transparent 32%),
    linear-gradient(145deg, #070b0d 0%, #11161a 58%, #08564a 100%) !important;
}

.sms-footer-trust div::after {
  background: rgba(11, 168, 132, 0.055);
}

.sms-footer-trust div:hover {
  border-color: rgba(11, 168, 132, 0.28);
}

.product-photo.is-missing::before {
  color: var(--sms-logo-red);
}

@media (max-width: 760px) {
  .header-tools > a,
  .header-tools > .header-tool-dropdown > a,
  .menu-toggle,
  .cart-link {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    border-radius: 12px;
  }
}

/* Desktop layout inset: pull the storefront content further inward on wide screens. */
@media (min-width: 1200px) {
  :root {
    --container: 1200px;
    --pad: 56px;
  }
}

/* SEO guide / FAQ section */
.section-head--center {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-lead {
  max-width: 720px;
  margin: 14px auto 0;
  color: #5f6875;
  font-size: 16px;
  line-height: 1.7;
}

.sms-guide-section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}

.sms-guide-head {
  margin-bottom: 34px;
}

.sms-guide-head h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.sms-guide-faq {
  max-width: 920px;
}

.sms-guide-faq .faq-item {
  border-color: #dfe6e4;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(9, 9, 11, 0.04);
}

.sms-guide-faq .faq-item[open] {
  border-color: rgba(11, 168, 132, 0.42);
  box-shadow: 0 18px 44px rgba(8, 135, 106, 0.08);
}

.sms-guide-faq .faq-item summary {
  padding: 24px 30px;
}

.sms-guide-faq .faq-content {
  padding: 0 30px 26px;
}

.sms-guide-faq .faq-content :is(p, div, li) {
  color: #66707d;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .section-lead {
    font-size: 14.5px;
  }

  .sms-guide-faq .faq-item summary {
    padding: 20px 22px;
    font-size: 16px;
  }

  .sms-guide-faq .faq-content {
    padding: 0 22px 22px;
  }
}

/* Final product card layout: keep catalog cards compact even with local fake images. */
.product-grid,
.home-product-grid {
  align-items: stretch;
}

.product-card {
  min-width: 0;
}

@media (min-width: 761px) {
  .product-layout .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)) !important;
  }
}

.product-card .product-media {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  padding: 0 !important;
}

.product-card .product-gallery,
.product-card .gallery-frame,
.product-card .product-photo {
  overflow: hidden !important;
}

.product-card .product-photo {
  padding: clamp(18px, 6%, 30px) !important;
}

.product-card .product-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 82% !important;
  max-height: 82% !important;
  object-fit: contain !important;
}

.product-card .gallery-dots {
  bottom: 10px;
}

.product-card .product-body {
  padding: 12px 16px 14px;
}

.product-card .product-body h3 {
  min-height: 38px;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card .product-body p {
  min-height: 44px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-card .product-bottom {
  padding-top: 10px;
}

.product-card .product-bottom strong {
  margin-bottom: 0;
  font-size: 18px;
}

/* ============================================================
   HERO — açık & minimal polish (yetkili katman, dosya sonunda = kazanır).
   Full-bleed görsel + sol metin overlay (Outstock çizgisi) · zümrüt aksan · Plus Jakarta.
   ============================================================ */
.hero-slider { background: #fff; }

.hero-slide.hero-slide--image {
  min-height: 620px;
  background-color: #eef2f0;
}
.hero-slide.hero-slide--image .hero-grid {
  min-height: 620px;
  grid-template-columns: minmax(0, 640px);
  padding-top: 76px;
  padding-bottom: 100px;
}

/* Okunabilirlik overlay'i — sol yumuşak geçiş, görsel sağda nefes alır */
.hero-slide.hero-slide--text-dark::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 32%, rgba(255,255,255,0.55) 56%, rgba(255,255,255,0.10) 76%, rgba(255,255,255,0) 92%),
    linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0.12) 100%);
}
.hero-slide.hero-slide--text-light::after {
  background:
    linear-gradient(90deg, rgba(8,11,10,0.86) 0%, rgba(8,11,10,0.66) 38%, rgba(8,11,10,0.30) 62%, rgba(8,11,10,0) 86%),
    linear-gradient(180deg, rgba(8,11,10,0.34) 0%, rgba(8,11,10,0) 46%, rgba(8,11,10,0.22) 100%);
}

/* Eyebrow → premium pill rozet (nokta + zümrüt tint) */
.hero-slide.hero-slide--image .hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-tint-border);
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-slide.hero-slide--image .hero-copy .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.hero-slide.hero-slide--text-light .hero-copy .eyebrow {
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-slide.hero-slide--text-light .hero-copy .eyebrow::before {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.22);
}

/* Başlık + gövde metni */
.hero-slide.hero-slide--image .hero-copy h1 {
  max-width: 580px;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.62;
}
.hero-slide.hero-slide--text-dark .hero-copy > p:not(.eyebrow) { color: #49515b; }

/* CTA'lar — daha iri, premium */
.hero-actions { gap: 12px; margin-top: 32px; }
.hero-actions .btn {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
}
.hero-actions .btn-red { box-shadow: 0 16px 32px var(--accent-ring); }
.hero-actions .btn-red:hover { box-shadow: 0 20px 40px rgba(11,168,132,0.28); }

/* Dots → ince bar (sol-alt, içerikle hizalı) — beyaz+gölge her zeminde okunur */
.hero-controls {
  left: 0;
  right: 0;
  bottom: 30px;
  transform: none;
  justify-content: flex-start;
  gap: 8px;
  pointer-events: none;
}
.hero-controls button {
  pointer-events: auto;
  width: 30px;
  height: 5px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 0;
  font-size: 0;
  color: transparent;
  background: rgba(255,255,255,0.60);
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  backdrop-filter: none;
  transition: width 0.28s cubic-bezier(.2,.8,.2,1), background 0.28s ease;
}
.hero-controls button:hover {
  width: 36px;
  background: rgba(255,255,255,0.88);
  border: 0;
  transform: none;
}
.hero-controls button.is-active {
  width: 48px;
  background: var(--accent);
  border: 0;
  color: transparent;
  box-shadow: 0 2px 8px var(--accent-ring);
}

/* Oklar → sağ-alt köşe, temiz cam pill */
.hero-arrows {
  top: auto;
  bottom: 26px;
  transform: none;
}
.hero-arrows button {
  top: auto;
  bottom: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(14,15,17,0.10);
  border-radius: 13px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.hero-arrows button:first-child { left: auto; right: 70px; }
.hero-arrows button:last-child { left: auto; right: 12px; }
.hero-arrows button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .hero-slide.hero-slide--image .hero-copy h1 { font-size: clamp(1.6rem, 6.8vw, 2.05rem); }
  .hero-controls { bottom: 22px; }
  .hero-arrows { bottom: 20px; }
  .hero-arrows button { width: 42px; height: 42px; }
  .hero-arrows button:first-child { right: 62px; }
}

/* ============================================================
   IMMERSIVE HEADER + TAM EKRAN HERO  (yetkili katman, dosya sonu)
   Home (body.page-has-hero): header hero'nun ÜZERİNE transparan biner, boşluk yok.
   Scroll: kampanya barı yumuşakça toplanır + header solid/kompakt "küçük" sticky olur.
   Legibility: header'ın kendi arka planı YOK; okunabilirlik hero üstündeki
   yumuşak ışık gradyanından gelir (bir "bar" değil). rAF listener → jank yok.
   ============================================================ */

/* Kampanya barı — scroll'da toplanır (tüm sayfalarda tutarlı) */
.campaign-bar {
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), min-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.25s ease;
}
.site-header.is-scrolled .campaign-bar {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.site-header { transition: background 0.3s ease, box-shadow 0.3s ease; }

/* ---------- HOME: transparan overlay header ---------- */
body.page-has-hero .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}
/* Yumuşak üst ışık — koyu header elemanları her görselde okunur (header bg'si değil) */
body.page-has-hero .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -46px 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.58) 44%, rgba(255,255,255,0) 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
body.page-has-hero .site-header .main-header,
body.page-has-hero .site-header .nav-bar {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
/* Scroll → solid + kompakt "küçük header" */
body.page-has-hero .site-header.is-scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px rgba(14,15,17,0.07);
}
body.page-has-hero .site-header.is-scrolled::before { opacity: 0; }
body.page-has-hero .site-header.is-scrolled .nav-bar {
  border-top: 1px solid var(--line);
}

/* ---------- Tam ekran hero (header içine biner) ---------- */
body.page-has-hero .hero-slider {
  min-height: 100vh;
  min-height: 100svh;
}
body.page-has-hero .hero-slide.hero-slide--image {
  min-height: 100vh;
  min-height: 100svh;
}
body.page-has-hero .hero-slide.hero-slide--image .hero-grid {
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 120px;
}

/* ---------- Search — kaba görünüm giderildi: ince translucent pill ---------- */
.search-form {
  border-radius: 14px;
  border: 1px solid rgba(14,15,17,0.10);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.search-form:focus-within {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-ring);
}

/* ---------- Header araç ikonları — modern ghost buton (çerçevesiz) ---------- */
.header-tools > a,
.header-tools > .header-tool-dropdown > a,
.menu-toggle {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.header-tools > a:hover,
.header-tools > .header-tool-dropdown > a:hover,
.menu-toggle:hover {
  border-color: transparent;
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.cart-link b {
  border-color: var(--white);
  box-shadow: 0 4px 10px var(--accent-ring);
}

@media (max-width: 760px) {
  body.page-has-hero .hero-slide.hero-slide--image .hero-grid {
    padding-top: 126px;
    padding-bottom: 96px;
  }
}

/* ============================================================
   FINE-CRAFT PASS 2 — search v2 · hero göstergeleri (cam çip + progress) ·
   ambient animasyon · dropdown v2 · campaign collapse fix
   ============================================================ */

/* Campaign bar: max-height default'u olmadan collapse transition çalışmaz (none→0 zıplar) */
.campaign-bar { max-height: 76px; }

/* ---------- SEARCH v2 — tam pill, çerçevesiz, yumuşak ---------- */
.search-form {
  min-height: 48px;
  padding: 4px 4px 4px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(14,15,17,0.045);
  backdrop-filter: none;
  box-shadow: none;
}
.search-form:focus-within {
  border-color: transparent;
  background: #fff;
  box-shadow: 0 0 0 1.5px var(--accent), 0 0 0 5px var(--accent-ring);
}
.search-icon { width: 19px; margin-left: 12px; color: var(--muted); }
.search-form input { font-size: 14.5px; font-weight: 500; }
.search-submit {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--ink);
}
.search-submit:hover { background: var(--accent); box-shadow: var(--shadow-accent); }
/* Hero üstünde (transparan header) search hafif cam olur */
body.page-has-hero .site-header:not(.is-scrolled) .search-form {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(12px);
}
body.page-has-hero .site-header:not(.is-scrolled) .search-form:focus-within { background: #fff; }

/* ---------- HERO GÖSTERGELERİ — numaralı, progress'li tek cam çip ---------- */
.hero-controls {
  left: 0;
  right: 0;
  bottom: 34px;
  transform: none;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}
.hero-controls-chip {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  border: 1px solid rgba(14,15,17,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 12px 32px rgba(14,15,17,0.12);
  pointer-events: auto;
}
.hero-controls button,
.hero-controls-chip button {
  width: auto;
  height: auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(14,15,17,0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}
/* Progress track+fill: bg-color = track, bg-image = zümrüt dolgu (background-size animasyonu) */
.hero-controls-chip button::after {
  content: "";
  width: 0;
  height: 3px;
  border-radius: 999px;
  background-color: rgba(14,15,17,0.14);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: width 0.32s cubic-bezier(.2,.8,.2,1);
}
.hero-controls-chip button:hover {
  width: auto;
  border: 0;
  background: none;
  color: var(--ink);
  transform: none;
}
.hero-controls-chip button.is-active {
  width: auto;
  border: 0;
  background: none;
  color: var(--ink);
  box-shadow: none;
}
/* Süre = main.js autoplay 6500ms ile senkron */
.hero-controls-chip button.is-active::after {
  width: 46px;
  animation: heroDotProgress 6.5s linear forwards;
}
@keyframes heroDotProgress {
  from { background-size: 0% 100%; }
  to { background-size: 100% 100%; }
}

/* Oklar çiple aynı dilde: dairesel cam */
.hero-arrows button { border-radius: 999px; }

/* ---------- HERO AMBIENT — minimal canlılık (yalnız transform, GPU) ---------- */
.hero-slide.hero-slide--image::before {
  display: block !important;
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 420px at 82% 20%, rgba(11,168,132,0.15), transparent 70%),
    radial-gradient(460px 360px at 10% 84%, rgba(11,168,132,0.09), transparent 70%);
  opacity: 1;
  mask-image: none;
  animation: heroAmbient 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroAmbient {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2.5%, 3%, 0) scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.hero-slide--image::before { animation: none; }
  .hero-controls-chip button.is-active::after { animation: none; background-size: 100% 100%; }
}

/* ---------- DROPDOWN v2 — hesap + mini sepet ---------- */
.header-dropdown-menu {
  min-width: 236px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 24px 60px -14px rgba(14,15,17,0.18), 0 4px 14px rgba(14,15,17,0.05);
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s cubic-bezier(.2,.8,.2,1), transform 0.22s cubic-bezier(.2,.8,.2,1), visibility 0.22s ease;
}
.header-tool-dropdown:hover .header-dropdown-menu,
.header-tool-dropdown:focus-within .header-dropdown-menu,
.header-tool-dropdown.is-open .header-dropdown-menu {
  transform: translateY(0) scale(1);
}
.header-tools .header-dropdown-menu a,
.header-tools .header-dropdown-menu .auth-logout-form button {
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}
.header-tools .header-dropdown-menu a .nav-icon,
.header-tools .header-dropdown-menu .auth-logout-form button .nav-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: color 0.18s ease;
}
.header-tools .header-dropdown-menu a:hover,
.header-tools .header-dropdown-menu .auth-logout-form button:hover {
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.header-tools .header-dropdown-menu a:hover .nav-icon,
.header-tools .header-dropdown-menu .auth-logout-form button:hover .nav-icon {
  color: var(--accent);
}
.mini-cart-footer { background: var(--off-white); }

@media (max-width: 760px) {
  .hero-controls { bottom: 24px; }
  .hero-controls-chip { padding: 5px 6px; }
  .hero-controls-chip button { padding: 6px 8px; }
  .hero-controls-chip button.is-active::after { width: 34px; }
}

/* ============================================================
   FINE-CRAFT PASS 3 — search v3 · kompakt scroll header · badge yakınlık ·
   dropdown caret + yavaş animasyon · ürün kartı hover aksiyonları ·
   modern hacim tag'i · showcase ratio · section CTA
   ============================================================ */

/* ---------- SEARCH v3: kısaltıldı + belirgin ince çerçeve ---------- */
.search-form {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  border: 1px solid rgba(14,15,17,0.09);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, min-height 0.3s cubic-bezier(.2,.8,.2,1);
}
body.page-has-hero .site-header:not(.is-scrolled) .search-form { border-color: rgba(14,15,17,0.07); }

/* ---------- KOMPAKT SCROLL HEADER: logo küçülür, padler daralır ---------- */
.brand img { transition: height 0.3s cubic-bezier(.2,.8,.2,1); }
.header-grid { transition: min-height 0.3s cubic-bezier(.2,.8,.2,1), gap 0.3s cubic-bezier(.2,.8,.2,1); }
.nav-inner { transition: min-height 0.3s cubic-bezier(.2,.8,.2,1); }
.header-tools > a,
.header-tools > .header-tool-dropdown > a,
.menu-toggle {
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease,
    width 0.3s cubic-bezier(.2,.8,.2,1), height 0.3s cubic-bezier(.2,.8,.2,1),
    min-width 0.3s cubic-bezier(.2,.8,.2,1), min-height 0.3s cubic-bezier(.2,.8,.2,1);
}
.header-tools svg { transition: width 0.3s cubic-bezier(.2,.8,.2,1), height 0.3s cubic-bezier(.2,.8,.2,1); }

.site-header.is-scrolled .header-grid { min-height: 42px; gap: 16px; }
.site-header.is-scrolled .brand img { height: 30px; }
.site-header.is-scrolled .search-form { min-height: 34px; padding-top: 2px; padding-bottom: 2px; }
.site-header.is-scrolled .search-form input { font-size: 13.5px; }
.site-header.is-scrolled .search-icon { width: 16px; margin-left: 10px; }
.site-header.is-scrolled .search-submit { width: 28px; height: 28px; }
.site-header.is-scrolled .search-submit svg { width: 14px; }
.site-header.is-scrolled .header-tools > a,
.site-header.is-scrolled .header-tools > .header-tool-dropdown > a,
.site-header.is-scrolled .menu-toggle {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 10px;
}
.site-header.is-scrolled .header-tools svg { width: 17px; height: 17px; }
.site-header.is-scrolled .cart-link b { min-width: 16px; height: 16px; font-size: 9px; }
.site-header.is-scrolled .nav-inner { min-height: 38px; }
.site-header.is-scrolled .nav-link { min-height: 28px; font-size: 12.5px; }
.site-header.is-scrolled .nav-trigger { min-height: 30px; padding: 0 12px; }

/* ---------- İKON YAKINLIĞI + SEPET BADGE (kopukluk giderildi) ---------- */
.header-tools { gap: 2px; }
.cart-link b {
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  border-width: 2px;
  box-shadow: 0 3px 8px var(--accent-ring);
}
.site-header.is-scrolled .cart-link b { top: 1px; right: 1px; }

/* ---------- DROPDOWN: yavaş & akıcı + ikonu işaret eden caret ---------- */
.header-dropdown-menu {
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.34s cubic-bezier(.22,.9,.24,1), transform 0.34s cubic-bezier(.22,.9,.24,1), visibility 0.34s ease;
}
.header-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 19px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-top-left-radius: 3px;
  transform: rotate(45deg);
}
/* Mini sepet CTA: tam genişlik, ikonlu, ortalı */
.header-tools .mini-cart-footer a.btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
}
.header-tools .mini-cart-footer a.btn .nav-icon { width: 17px; height: 17px; }

/* ---------- ÜRÜN KARTI: hover aksiyonları (görsel üstüne süzülür) ---------- */
.product-media-wrap { position: relative; }
.product-actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  display: flex;
  align-items: stretch;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.2,.8,.2,1), transform 0.28s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.pa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pa-btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pa-detail {
  flex: 0 0 40px;
  width: 40px;
  padding: 0;
  border-color: rgba(14,15,17,0.09);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 10px rgba(14,15,17,0.08);
}
.pa-detail span { display: none; }
.pa-detail:hover { background: #fff; color: var(--accent-dark); transform: translateY(-1px); }
.pa-add {
  flex: 1 1 auto;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 10px var(--accent-ring);
}
.pa-add:hover { background: var(--accent-dark); transform: translateY(-1px); }
.pa-add:disabled { background: rgba(14,15,17,0.55); cursor: not-allowed; box-shadow: none; transform: none; }
/* Dokunmatikte hover yok → aksiyonlar hep görünür */
@media (hover: none) {
  .product-actions { opacity: 1; transform: none; pointer-events: auto; }
}

/* ---------- HACİM TAG'İ: siyah kutu → modern renkli pill (tek, duplicate yok) ---------- */
.product-media .badge,
.product-media .badge.black,
.product-media .badge.gray {
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-darker) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px var(--accent-ring);
}

/* ---------- KART ALT SATIRI: yalnız fiyat + indirim çipi ---------- */
.product-card .product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.discount-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 800;
  white-space: nowrap;
}

/* ---------- SHOWCASE: gerçek görsel oranı (640x420), bulanıklık yok ---------- */
.home-showcase-grid { gap: 16px; }
.home-showcase-link {
  aspect-ratio: 640 / 420;
  border-radius: 16px;
}
.home-showcase-link img { transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.home-showcase-link:hover img { transform: scale(1.045); }
.home-showcase-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(14,15,17,0.12);
}

/* ---------- SECTION CTA: "Tüm ürünleri gör" grid ALTINDA, ortalı ---------- */
.section-cta { display: flex; justify-content: center; margin-top: 36px; }
.btn-see-all {
  gap: 9px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-see-all svg { width: 18px; transition: transform 0.25s cubic-bezier(.2,.8,.2,1); }
.btn-see-all:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.btn-see-all:hover svg { transform: translateX(3px); }

.product-card .product-bottom .btn {
  min-height: 40px;
}

@media (max-width: 760px) {
  .product-layout .product-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .product-card .product-media {
    aspect-ratio: 1 / 1 !important;
  }

  .product-card .product-photo img {
    max-width: 86% !important;
    max-height: 86% !important;
  }

  .product-card .product-body {
    padding: 12px;
  }

  .product-card .product-body h3 {
    min-height: 38px;
    font-size: 14.5px;
  }

  .product-card .product-body p {
    display: none;
    min-height: 0;
    font-size: 12.8px;
    line-height: 1.5;
  }

  .product-card .product-bottom .btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 11.5px;
    white-space: nowrap;
  }
}

/* ============================================================
   FINE-CRAFT PASS 4 — jitter fix (global fixed header + spacer) ·
   sıkı scroll header · PORTRE & büyük ürün görseli (fontlar/aralıklar sabit)
   ============================================================ */

/* Header artık HER sayfada fixed → sticky reflow'u ortadan kalktı, scroll'da TİTREME yok.
   Hero'suz sayfalarda içerik main.js spacer'ı (body padding-top = tam header yüksekliği)
   ile header altına kaçmaz; spacer scroll anında ölçülmez → titreme imkânsız. */
.site-header { position: fixed; top: 0; left: 0; right: 0; }
/* JS yüklenene kadar fallback (yalnız hero'suz sayfalar) — JS kesin değeri set eder */
body:not(.page-has-hero) { padding-top: 190px; }
@media (max-width: 1100px) { body:not(.page-has-hero) { padding-top: 118px; } }

/* Scroll header'ı biraz daha kompakt (boşluk azalt) */
.site-header.is-scrolled .main-header { backdrop-filter: none; padding: 0; }
.site-header.is-scrolled .nav-bar { margin-top: 0; }

/* ---------- ÜRÜN GÖRSELİ: kare değil PORTRE (2:3) + büyük & net ---------- */
.product-card .product-media {
  aspect-ratio: 2 / 3 !important;
}
.product-card .product-photo {
  padding: 0 !important;
}
.product-card .product-photo img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}
/* Portre kartta hover aksiyonları biraz yukarıda dursun */
.product-card .product-actions { bottom: 5px; }

/* Ürün PNG'lerinin kendi içindeki üst/alt şeffaf boşluğu taban scale ile kırp
   (negatif margin yerine — kutu overflow:hidden, taşan boşluk görünmez).
   Hover'da üstüne zoom biner. Transform-only = GPU. */
.product-card .product-photo img {
  transform: scale(1.14);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover .product-photo img,
.product-card:focus-within .product-photo img {
  transform: scale(1.24);
}

/* ---------- MEDYA BADGE GRUBU: hacim + indirim yan yana (indirim artık altta taşmıyor) ---------- */
.media-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}
.media-badges .badge {
  position: static;
  top: auto;
  left: auto;
}
.product-media .badge-discount,
.media-badges .badge-discount {
  background: linear-gradient(135deg, #1fd3a8 0%, var(--accent) 55%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 16px var(--accent-ring);
}

/* ---------- MEGA MENÜ v2: sol panel YOK — iki temiz kolon, ortalı, rafine ---------- */
.mega-feature { display: none !important; }
.mega-panel {
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content: start; /* sola hizalı — trigger butonuyla aynı çapa */
  gap: 8px 48px;
  padding-top: 28px;
  padding-bottom: 30px;
}
.mega-column h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-column h2::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.mega-column a {
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  min-height: 56px;
  padding: 9px 10px;
  border-radius: 14px;
}
.mega-column a .mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border-color: transparent;
  background: var(--off-white);
}
/* Hover'da beliren yön oku — sade, akıcı */
.mega-column a::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M4 10h12m0 0-4.5-4.5M16 10l-4.5 4.5" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M4 10h12m0 0-4.5-4.5M16 10l-4.5 4.5" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(.2,.8,.2,1);
}
.mega-column a:hover::after { opacity: 1; transform: none; }

/* ---------- HERO CTA v2: canlı buton — YALNIZ composited animasyon (opacity/transform).
   Önceki @property conic dönüşü her karede paint yapıp performansı çökertiyordu; kaldırıldı. ---------- */
.hero-actions .btn-red {
  position: relative;
  z-index: 0;
  overflow: hidden; /* parlama şeridini kırpar */
  background: var(--accent);
}
.hero-actions .btn-red:hover { background: var(--accent-dark); }
/* Gradient iç halka — statik boyanır, yalnız opacity nefes alır (GPU) */
.hero-actions .btn-red::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(#35e2b8, var(--accent-darker), #35e2b8, var(--accent), #35e2b8);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: smsCtaPulse 2.6s ease-in-out infinite alternate;
  pointer-events: none;
}
/* Periyodik parlama şeridi — yalnız transform (GPU) */
.hero-actions .btn-red::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 44%;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-170%) skewX(-18deg);
  animation: smsCtaSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes smsCtaPulse {
  from { opacity: 0.35; }
  to { opacity: 1; }
}
@keyframes smsCtaSheen {
  0%, 62% { transform: translateX(-170%) skewX(-18deg); }
  86%, 100% { transform: translateX(330%) skewX(-18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn-red::before,
  .hero-actions .btn-red::after { animation: none; }
}

/* Request pass — stable catalog/detail header, ghost filters, portrait product media */
.auth-page {
  padding-top: 0 !important;
}

body:not(.page-has-hero) .site-header {
  transform: translateZ(0);
}

body:not(.page-has-hero) .site-header .campaign-bar,
body:not(.page-has-hero) .site-header .main-header,
body:not(.page-has-hero) .site-header .nav-bar,
body:not(.page-has-hero) .site-header .header-grid,
body:not(.page-has-hero) .site-header .nav-inner,
body:not(.page-has-hero) .site-header .brand img,
body:not(.page-has-hero) .site-header .search-form,
body:not(.page-has-hero) .site-header .header-tools > a,
body:not(.page-has-hero) .site-header .header-tools > .header-tool-dropdown > a,
body:not(.page-has-hero) .site-header .menu-toggle {
  transition-property: background, border-color, box-shadow, color, opacity, transform;
}

.product-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
}

.filter-panel {
  position: static !important;
  top: auto !important;
  padding: 8px 2px 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 14px;
}

.filter-panel > strong {
  margin: 8px 0 -4px;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}

.filter-divider {
  height: 1px;
  margin: 4px 0 0;
  background: linear-gradient(90deg, rgba(11,168,132,0.28), transparent);
}

.filter-search {
  gap: 8px;
}

.filter-search label {
  color: var(--accent-dark);
}

.filter-search input {
  min-height: 44px;
  border: 1px solid rgba(11,168,132,0.18);
  background: rgba(255,255,255,0.62);
  box-shadow: none;
}

.filter-choice-grid,
.volume-filter,
.rating-filter {
  gap: 8px;
}

.filter-btn,
.volume-filter button,
.rating-filter button {
  border-color: rgba(11,168,132,0.16);
  background: rgba(255,255,255,0.54);
  color: var(--ink);
  box-shadow: none;
}

.filter-btn:hover,
.volume-filter button:hover,
.rating-filter button:hover {
  border-color: rgba(11,168,132,0.34);
  background: var(--accent-tint-2);
  color: var(--accent-dark);
}

.filter-btn.is-active,
.volume-filter button.is-active,
.rating-filter button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.price-slider {
  padding-inline: 0;
}

.price-slider__track {
  background: rgba(11,168,132,0.14);
}

.listing-seo {
  padding: 18px 0 72px;
}

.listing-seo-panel {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.listing-seo-head {
  position: static;
  max-width: 760px;
  margin-bottom: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(11,168,132,0.22);
}

.listing-seo-head h2 {
  max-width: 760px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.12;
}

.listing-seo-scroll {
  max-height: none;
  overflow: visible;
  padding-right: 0;
  color: #4f5863;
  font-size: 15px;
  line-height: 1.78;
}

.listing-seo-faq {
  margin-top: 28px;
  gap: 0;
}

.listing-seo-faq h3 {
  margin-bottom: 10px;
}

.listing-seo-faq details {
  border: 0;
  border-top: 1px solid #e6e9ee;
  border-radius: 0;
  background: transparent;
}

.listing-seo-faq details:last-child {
  border-bottom: 1px solid #e6e9ee;
}

.listing-seo-faq summary {
  padding: 16px 42px 16px 0;
}

.listing-seo-faq summary::after {
  right: 4px;
}

.listing-seo-faq details p {
  padding: 0 0 18px;
  font-size: 14px;
}

.detail-media-wrap {
  grid-template-columns: 76px minmax(0, 1fr);
}

.detail-media {
  min-height: 0 !important;
  aspect-ratio: 2 / 3 !important;
  max-height: min(760px, calc(100vh - 210px));
}

.detail-media .product-photo {
  padding: 0 !important;
}

.detail-media .product-photo img,
.detail-thumbs .product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transform: none !important;
}

.detail-thumbs {
  gap: 8px;
}

.detail-thumbs button {
  width: 76px;
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
}

.detail-thumbs .product-photo {
  padding: 0 !important;
}

.product-info-tabs-section {
  padding: 4px 0 54px;
  background: var(--white);
}

.product-info-tabs {
  border-top: 1px solid #e7ebe9;
}

.product-info-tabs__nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 120px);
  padding: 28px 0 32px;
}

.product-info-tabs__nav button {
  border: 0;
  background: transparent;
  color: #9aa0a7;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.product-info-tabs__nav button.is-active {
  color: var(--ink);
}
.product-info-tabs__nav button:focus-visible {
  outline: 2px solid rgba(11,168,132,0.26);
  outline-offset: 5px;
  border-radius: 999px;
}

.product-info-panel {
  max-width: 1060px;
  margin: 0 auto;
}

.product-info-panel .description-body {
  color: #565d66;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Admin HTML'i global dev başlık ölçülerini kapmasın — açıklamaya uygun kompakt ölçek */
.product-info-panel .description-body p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.65;
}
.product-info-panel .description-body h1,
.product-info-panel .description-body h2 {
  margin: 20px 0 8px;
  font-size: 19px;
  line-height: 1.3;
}
.product-info-panel .description-body h3 {
  margin: 18px 0 6px;
  font-size: 16px;
  line-height: 1.35;
}
.product-info-panel .description-body h4,
.product-info-panel .description-body h5 {
  margin: 14px 0 6px;
  font-size: 14.5px;
  line-height: 1.4;
}
.product-info-panel .description-body :first-child { margin-top: 0; }

.product-info-panel .description-body ul {
  list-style: none;
  padding-left: 0;
}

.product-info-panel .description-body li {
  position: relative;
  padding-left: 34px;
}

.product-info-panel .description-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  font-weight: 900;
}

.product-info-panel .reviews-card__head,
.product-info-panel .reviews-list,
.product-info-panel .review-form-box {
  max-width: 920px;
  margin-inline: auto;
}

.product-info-panel .reviews-list {
  margin-top: 22px;
}

.product-info-panel .review {
  border: 0;
  border-top: 1px solid #e8ecea;
  border-radius: 0;
  background: transparent;
  padding: 18px 0;
}

.product-info-panel .review-form-box {
  margin-top: 12px;
  border-top: 1px solid #e8ecea;
}

.product-bundle-section,
.related-carousel-section {
  background: var(--off-white);
}

.bundle-box {
  align-items: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.bundle-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.bundle-products article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e2e6e4;
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
}

.bundle-thumb {
  aspect-ratio: 2 / 3;
  min-height: 0;
  border-radius: 8px;
  background: #fff;
}

.bundle-thumb .product-photo {
  padding: 0 !important;
}

.bundle-thumb img {
  object-fit: contain !important;
}

.bundle-products article i {
  position: absolute;
  right: -16px;
  top: 38%;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.bundle-summary {
  border: 1px solid rgba(11,168,132,0.22);
  border-radius: 8px;
  background: #fff;
}

.related-carousel-section .product-carousel {
  gap: 14px;
}

.related-carousel-section .product-card {
  min-width: 230px;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 980px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .detail-media-wrap {
    position: static;
    grid-template-columns: 1fr;
  }

  .detail-thumbs {
    order: 2;
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .detail-thumbs button {
    flex: 0 0 62px;
  }

  .detail-media {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .filter-panel {
    padding: 14px !important;
    border: 1px solid rgba(11,168,132,0.16) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.92) !important;
  }

  .product-info-tabs__nav {
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 22px 0 26px;
  }

  .product-info-tabs__nav button {
    white-space: nowrap;
  }

  .product-info-panel .description-body,
  .product-info-panel .description-body p {
    font-size: 14px;
  }

  .bundle-products article i {
    display: none;
  }
}

/* ============================================================
   REVISION PASS — header, catalog cards and product reviews
   ============================================================ */

:root {
  --campaign-accent-bg: linear-gradient(90deg, #0b0c10 0%, #14161c 58%, #0d1512 100%);
  --campaign-accent-fg: #fff;
}

/* Search action follows the active campaign configured in the panel. */
.search-submit,
.site-header.is-scrolled .search-submit {
  background: var(--campaign-accent-bg);
  color: var(--campaign-accent-fg);
  box-shadow: 0 8px 22px rgba(9, 15, 13, 0.18);
}
.search-submit:hover {
  background: var(--campaign-accent-bg);
  color: var(--campaign-accent-fg);
  filter: brightness(1.08);
  box-shadow: 0 10px 26px rgba(9, 15, 13, 0.24);
}
.search-submit svg {
  width: 18px;
  height: 18px;
}

/* Dropdown caret must remain outside the rounded panel. */
.mini-cart-menu {
  overflow: visible;
}
.mini-cart-menu::before {
  right: 17px;
}
.mini-cart-header {
  border-radius: 18px 18px 0 0;
  background: rgba(255,255,255,0.98);
}
.mini-cart-footer {
  border-radius: 0 0 18px 18px;
}
.mini-cart-empty {
  place-items: center;
  gap: 10px;
  padding: 20px 8px 24px;
  text-align: center;
}
.mini-cart-empty__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.mini-cart-empty__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-tools .header-dropdown-menu .mini-cart-empty a,
.cart-sheet .mini-cart-empty a {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--accent-dark);
  font-weight: 750;
}
.mini-cart-empty a svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category menu is anchored to its trigger instead of spanning the viewport. */
.nav-inner > .nav-item:first-child {
  position: relative;
}
.nav-inner > .nav-item:first-child .mega-menu {
  left: 0;
  right: auto;
  top: calc(100% + 7px);
  width: min(860px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 18px 18px 18px;
  box-shadow: 0 28px 70px -22px rgba(14,15,17,0.24);
}
.nav-inner > .nav-item:first-child .mega-panel.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 18px;
}
.mega-column a .mega-icon-svg,
.nav-link .nav-icon {
  stroke-width: 1.7;
}

/* Volume is neutral product data; discount is a distinct promotional ticket. */
.media-badges {
  top: 12px;
  left: 12px;
  align-items: center;
  gap: 6px;
}
.product-media .badge-volume,
.media-badges .badge-volume,
.product-media .badge-discount,
.media-badges .badge-discount {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}
.product-media .badge-volume,
.media-badges .badge-volume {
  background: var(--ui-gradient);
  color: #fff;
  box-shadow: 0 5px 12px rgba(11,168,132,0.22);
}
.product-media .badge-discount,
.media-badges .badge-discount {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 5px 12px rgba(220,38,38,0.22);
}
.media-badges .badge-discount::before {
  content: none;
}
.product-media .badge-discount, .media-badges .badge-discount span.badge-discount-label {
    margin-left: 2px;
}

.product-card .pa-add,
.product-detail button[data-add-cart] {
  border: 0 !important;
  outline: 0;
  background-clip: border-box;
  background: var(--ui-gradient);
  color: #fff;
  box-shadow: 0 3px 10px rgba(11,168,132,0.18);
}
.product-card .pa-add:focus-visible,
.product-detail button[data-add-cart]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11,168,132,0.22), 0 5px 14px rgba(11,168,132,0.20);
}
.product-card .pa-add:hover,
.product-detail button[data-add-cart]:hover {
  background: var(--ui-gradient-hover);
  box-shadow: 0 7px 18px rgba(11,168,132,0.26);
}

/* Card gallery remains hoverable, but the visual dot indicator is intentionally hidden. */
.product-card .gallery-dots {
  display: none;
}

.product-card .product-body h3.has-size {
  min-height: 58px;
  -webkit-line-clamp: 3;
}
.product-title-size {
  display: block;
  margin-top: 3px;
  color: #7b8490;
  font-size: 0.82em;
  font-weight: 750;
  letter-spacing: 0.01em;
}
.product-card:hover .product-body h3 a,
.product-card:focus-within .product-body h3 a,
.product-card:hover .product-title-size,
.product-card:focus-within .product-title-size {
  background: var(--ui-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Minimal favourite control: only the heart is visible; the hit area stays accessible. */
.product-card .fav-btn {
  top: 9px;
  right: 9px;
  z-index: 7;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
  transition: color 0.2s ease, transform 0.24s cubic-bezier(.2,.8,.2,1);
}
.product-card .fav-btn svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.76);
  stroke: currentColor;
  stroke-width: 1.7;
  filter: drop-shadow(0 1px 2px rgba(14,15,17,0.22));
  transition: fill 0.2s ease, stroke 0.2s ease, transform 0.24s cubic-bezier(.2,.8,.2,1), filter 0.2s ease;
}
.product-card .fav-btn:hover {
  border-color: transparent;
  background: transparent;
  color: #dc2626;
  transform: none;
}
.product-card .fav-btn:hover svg {
  fill: rgba(254,226,226,0.94);
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(220,38,38,0.18));
}
.product-card .fav-btn.is-active {
  border-color: transparent;
  background: transparent;
  color: #dc2626;
}
.product-card .fav-btn.is-active svg {
  fill: #dc2626;
  stroke: #dc2626;
  filter: drop-shadow(0 2px 4px rgba(220,38,38,0.22));
}

/* Inner pages use the same eased compact-header transition as the homepage. */
body:not(.page-has-hero) .site-header .header-grid,
body:not(.page-has-hero) .site-header .nav-inner {
  transition: min-height 0.34s cubic-bezier(.22,.9,.24,1), gap 0.34s cubic-bezier(.22,.9,.24,1);
}
body:not(.page-has-hero) .site-header .brand img {
  transition: height 0.34s cubic-bezier(.22,.9,.24,1);
}
body:not(.page-has-hero) .site-header .search-form {
  transition: min-height 0.34s cubic-bezier(.22,.9,.24,1), padding 0.34s cubic-bezier(.22,.9,.24,1), background 0.2s ease, box-shadow 0.2s ease;
}
body:not(.page-has-hero) .site-header .nav-link {
  transition: min-height 0.34s cubic-bezier(.22,.9,.24,1), padding 0.34s cubic-bezier(.22,.9,.24,1), font-size 0.34s cubic-bezier(.22,.9,.24,1), color 0.18s ease, background 0.18s ease;
}
body:not(.page-has-hero) .site-header .header-tools > .header-tool-dropdown > a,
body:not(.page-has-hero) .site-header .menu-toggle {
  transition: width 0.34s cubic-bezier(.22,.9,.24,1), height 0.34s cubic-bezier(.22,.9,.24,1), min-width 0.34s cubic-bezier(.22,.9,.24,1), min-height 0.34s cubic-bezier(.22,.9,.24,1), background 0.18s ease, color 0.18s ease;
}

/* Reviews: modern summary, verified-review cards and a clear login action. */
.product-info-panel .reviews-overview,
.product-info-panel .reviews-list,
.product-info-panel .review-form-box {
  max-width: 920px;
  margin-inline: auto;
}
.reviews-overview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(11,168,132,0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11,168,132,0.10), transparent 34%),
    linear-gradient(145deg, #fff 0%, #f8fcfa 100%);
}
.reviews-overview__icon,
.review-gate-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px var(--accent-ring);
}
.reviews-overview__icon {
  width: 54px;
  height: 54px;
}
.reviews-overview__icon svg,
.review-gate-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reviews-overview__copy .eyebrow {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}
.reviews-overview__copy h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
}
.reviews-overview__copy p {
  margin-top: 5px;
  color: #68717d;
  font-size: 14px;
}
.reviews-overview .reviews-score {
  min-width: 150px;
  display: grid;
  justify-items: end;
  gap: 4px;
}
.reviews-overview .reviews-score strong {
  font-size: 34px;
}
.reviews-score--empty .reviews-stars {
  color: #c9ced4;
}
.product-info-panel .reviews-list {
  margin-top: 18px;
  gap: 10px;
}
.product-info-panel .review {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 18px;
  border: 1px solid #e7ebe9;
  border-radius: 16px;
  background: #fff;
}
.review-avatar {
  grid-row: 1 / span 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
}
.product-info-panel .review-top,
.product-info-panel .review-title,
.product-info-panel .review-comment {
  grid-column: 2;
}
.product-info-panel .review-title {
  margin-top: 8px;
}
.product-info-panel .review-comment {
  color: #59626e;
  line-height: 1.65;
}
.product-info-panel .review-form-box {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}
.review-gate-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e4e8e6;
  border-radius: 16px;
  background: #f8faf9;
}
.review-gate-card__icon {
  width: 42px;
  height: 42px;
  background: var(--ink);
  box-shadow: none;
}
.review-gate-card__icon svg {
  width: 20px;
  height: 20px;
}
.review-gate-card > div {
  min-width: 0;
  flex: 1;
}
.review-gate-card strong {
  color: var(--ink);
  font-size: 14px;
}
.review-gate-card p {
  margin-top: 3px;
  color: #727b86;
  font-size: 13px;
  line-height: 1.5;
}
.review-gate-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.review-gate-card > a:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .nav-inner > .nav-item:first-child .mega-menu {
    width: calc(100vw - 24px);
  }
  .reviews-overview {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
  }
  .reviews-overview .reviews-score {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: start;
    padding-top: 14px;
    border-top: 1px solid #e2e9e5;
  }
  .review-gate-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .review-gate-card > a {
    width: 100%;
    justify-content: center;
  }

  /* Mobile commerce guard: compact controls, safe tap targets and no card overflow. */
  .media-badges {
    top: 8px;
    left: 8px;
    gap: 5px;
  }
  .product-media .badge-volume,
  .media-badges .badge-volume,
  .product-media .badge-discount,
  .media-badges .badge-discount {
    height: 22px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 10px;
    line-height: 1;
    box-shadow: none;
  }
  .badge-discount-label {
    display: none;
  }
  .product-card .fav-btn {
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
  }
  .product-card .fav-btn svg {
    width: 18px;
    height: 18px;
  }
  .product-card .product-actions {
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    gap: 6px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .product-card .pa-btn {
    min-height: 38px;
    height: 38px;
    padding: 0 11px;
    font-size: 11.5px;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(14,15,17,0.08);
  }
  .product-card .pa-detail {
    flex: 0 0 38px;
    width: 38px;
    padding: 0;
  }
  .product-card .pa-btn svg { width: 15px; height: 15px; }
  .product-card .pa-add span {
    display: none;
  }
  .product-card .pa-add:not(:disabled)::after {
    content: "Ekle";
  }
  .product-card .product-bottom strong {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    white-space: normal;
    line-height: 1.15;
  }
  .product-card .product-bottom strong > span {
    white-space: nowrap;
  }
  .product-card .product-bottom strong small {
    font-size: 10.5px;
    line-height: 1.2;
  }
  .detail-thumbs.is-single {
    display: none;
  }
  .sticky-buy-box {
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    padding: 8px;
    border-radius: 14px;
  }
  .sticky-buy-box .btn {
    min-height: 48px;
  }
  body.product-detail-page {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .cart-thumb {
    width: 72px;
    height: 72px;
  }
  .cart-item-info {
    min-width: 0;
  }
  .cart-item-info strong,
  .cart-item-info a {
    overflow-wrap: anywhere;
  }
  .cart-item .qty-control {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
  .cart-item .qty-control button {
    width: 40px;
    height: 40px;
  }
  .cart-item .qty-control span {
    min-width: 32px;
  }
  .cart-item .cart-line {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    font-size: 14px;
  }
  .cart-item .remove-btn {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 40px;
    padding: 0;
  }
  .mobile-sticky-cta[hidden] {
    display: none !important;
  }
}

@media (max-width: 340px) {
  .product-layout .product-grid,
  .home-product-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   EMERALD → CYAN GRADIENT ACCENT + COMPACT DESKTOP CATALOG
   Zümrüt yeşili birincil solid aksan, cyan ile gradient partner.
   ============================================================ */

:root {
  --accent: #0ba884;          /* zümrüt yeşili — birincil solid aksan */
  --accent-dark: #08876a;     /* koyu zümrüt — solid hover */
  --accent-darker: #076f57;
  --accent-cyan: #08b5d0;     /* cyan partner — gradient ucu */
  --ui-gradient: linear-gradient(120deg, #0ba884 0%, #09b1ad 50%, #08b5d0 100%);
  --ui-gradient-hover: linear-gradient(120deg, #0a9576 0%, #089c99 50%, #079fb6 100%);
  --accent-tint: #e6f8f2;
  --accent-tint-2: #edfbf6;
  --accent-tint-border: #c4ecdf;
  --accent-ring: rgba(11,168,132,0.22);
  --sms-accent: var(--accent);
  --sms-accent-dark: var(--accent-dark);
  --sms-accent-soft: var(--accent-tint);
  --sms-accent-line: var(--accent-tint-border);
  --sms-accent-glow: var(--accent-ring);
  --red: var(--accent);
  --red-dark: var(--accent-dark);
  --brand: var(--accent);
  --brand-dark: var(--accent-dark);
  --green: var(--accent);
}

@media (min-width: 761px) {
  .product-card .product-media {
    aspect-ratio: 4 / 5 !important;
  }
}

.product-card .product-photo img {
  transform: scale(1) !important;
}
.product-card:hover .product-photo img,
.product-card:focus-within .product-photo img {
  transform: scale(1.035) !important;
}

.btn-red,
.nav-trigger,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger,
.nav-cta.sale,
.nav-cta.sale:hover,
.filter-btn.is-active,
.volume-filter button.is-active,
.rating-filter button.is-active,
.hero-controls button.is-active,
.hero-arrows button:hover,
.mega-column a:hover .mega-icon,
.reviews-overview__icon,
.review-gate-card > a,
.mobile-sticky-cta a:first-child,
.mobile-sticky-cta button:first-child,
.sms-footer-newsletter button,
.sms-footer-newsletter button:hover {
  border-color: transparent;
  background: var(--ui-gradient);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11,168,132,0.22);
}

.btn-red:hover,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger,
.nav-cta.sale:hover,
.filter-btn.is-active:hover,
.volume-filter button.is-active:hover,
.rating-filter button.is-active:hover,
.review-gate-card > a:hover,
.mobile-sticky-cta a:first-child:hover,
.mobile-sticky-cta button:first-child:hover,
.sms-footer-newsletter button:hover {
  background: var(--ui-gradient-hover);
  color: #fff;
  box-shadow: 0 13px 28px rgba(11,168,132,0.28);
}

.price-slider__fill,
.gallery-dots span.is-active {
  background: var(--ui-gradient);
}
.price-slider__track-wrap input[type=range]::-webkit-slider-thumb {
  border-color: #fff;
  background: var(--ui-gradient);
}
.price-slider__track-wrap input[type=range]::-moz-range-thumb {
  border-color: #fff;
  background: var(--accent);
}

.eyebrow,
.listing-head-meta span,
.detail-price strong,
.cart-discount strong,
.bundle-products span,
.auth-actions a,
.auth-footer a:hover,
.filter-panel > strong,
.filter-search label {
  background: var(--ui-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-link:hover .nav-icon,
.drawer-link-arrow,
.search-icon {
  color: var(--accent);
}

.campaign-bar.tone-black,
.campaign-bar.tone-carbon {
  background:
    radial-gradient(120% 200% at 100% 0%, rgba(11,168,132,0.30), transparent 55%),
    linear-gradient(90deg, #0b0c10 0%, #14161c 58%, #0b1a16 100%);
}
.campaign-bar.tone-red {
  background: var(--ui-gradient);
}

.hero-actions .btn-red,
.hero-actions .btn-red:hover,
.mega-feature a,
.cart-link b,
.campaign-bar.tone-light .campaign-dots button.is-active,
.campaign-countdown i,
.nav-link::after {
  background: var(--ui-gradient);
}
.hero-actions .btn-red:hover {
  background: var(--ui-gradient-hover);
}
.hero-actions .btn-red::before {
  background: var(--ui-gradient);
}
.hero-slide.hero-slide--image .hero-copy .eyebrow::before {
  background: var(--ui-gradient);
  box-shadow: 0 0 0 3px rgba(11,168,132,0.18);
}

.search-form:focus-within {
  border-color: rgba(11,168,132,0.42);
  box-shadow: 0 16px 34px rgba(11,168,132,0.10);
}
.mega-feature {
  background:
    radial-gradient(circle at 82% 18%, rgba(11,168,132,0.24), transparent 32%),
    linear-gradient(145deg, #071012 0%, #0c1a1c 58%, #0d4a48 100%) !important;
}
.sms-footer-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(11,168,132,0.30), transparent 32%),
    linear-gradient(145deg, #070b0d 0%, #0e1a1c 58%, #0d3f46 100%) !important;
}

.product-card:hover,
.blog-home-card:hover {
  border-color: rgba(11,168,132,0.34);
}
.filter-link:hover,
.sms-footer-popular a:hover {
  border-color: rgba(11,168,132,0.24);
}
.product-card .product-card-head span,
.detail-delivery,
.auth-alert--success {
  border-color: rgba(11,168,132,0.18);
}

.result-icon--success {
  background: #eaf8ff;
  color: var(--accent);
}
.order-cargo__label {
  background: var(--ui-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.detail-delivery b {
  background: var(--ui-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.product-gallery.is-single .gallery-dots {
  display: none;
}
.custom-checkbox input {
  accent-color: var(--accent);
}

/* ============================================================
   NAV — gradient ikonlar (hover + aktif) + net "buradasın" durumu
   İkonlar stroke:currentColor; hover/aktifte SVG gradient stroke'a döner.
   ============================================================ */
.sms-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* "Tüm Kategoriler" trigger'ı = belirgin emerald→cyan gradient (küçük pill'de düz durmasın) */
.nav-trigger,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  background: linear-gradient(100deg, #0ba884 0%, #08b5d0 100%);
  color: #fff;
}
.nav-trigger:hover,
.nav-item:hover > .nav-trigger {
  background: linear-gradient(100deg, #0a9576 0%, #079fb6 100%);
}
/* Trigger ikonu her zaman beyaz (gradient bg üstünde) */
.nav-trigger .nav-icon,
.nav-trigger:hover .nav-icon,
.nav-trigger.is-active .nav-icon {
  color: #fff;
  stroke: currentColor;
}

/* Hover/aktif ikon gradient — trigger HARİÇ (trigger beyaz kalır) */
.nav-link:not(.nav-trigger):hover .nav-icon,
.nav-link.is-active:not(.nav-trigger) .nav-icon {
  color: var(--accent);          /* url() desteklenmezse fallback renk */
  stroke: url(#smsIconGrad);
}
/* Alt-çizgi tamamen kaldırıldı — hover & aktifte de yok (sadece yazı + ikon gradient) */
.nav-link::after,
.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link:not(.nav-trigger):hover::after {
  display: none;
}
/* AKTİF LİNK — arka plan YOK, çizgi YOK; sadece yazı + ikon gradient */
.nav-link.is-active:not(.nav-trigger) {
  background: var(--ui-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Mobil çekmece — aktif link: dolgu yok, ince sol vurgu + gradient yazı/ikon */
.drawer-link.is-active {
  background: transparent;
  border-left: 3px solid var(--accent);
}
.drawer-link.is-active strong {
  background: var(--ui-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.drawer-link.is-active .nav-icon {
  color: var(--accent);
  stroke: url(#smsIconGrad);
}

/* ============================================================
   MOBİL HERO — içerik üste hizalı, CTA daha küçük (kaba blok değil)
   ============================================================ */
@media (max-width: 760px) {
  body.page-has-hero .hero-slide.hero-slide--image .hero-grid {
    align-items: start;
    padding-top: 258px;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-actions .btn {
    width: auto;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 13.5px;
  }
  .hero-slide.hero-slide--image .hero-copy h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
}

/* ============================================================
   LİSTELEME TOOLBAR — kutu yerine ince, hizalı, modern satır
   ============================================================ */
.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 14px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line, #e7ebe9);
  background: transparent;
  box-shadow: none;
}
.listing-toolbar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.listing-toolbar select {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink);
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.listing-toolbar select:hover {
  border-color: var(--accent);
}
.listing-toolbar select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
  outline: 0;
}
@media (max-width: 760px) {
  .listing-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .listing-toolbar span { white-space: normal; }
  .listing-toolbar select { width: 100%; }
}

/* ============================================================
   SAYFA YÜKLEME EKRANI (PAGE LOADER)
   Logonun etrafında dönen emerald→cyan konik halka + ilerleme çubuğu.
   ============================================================ */
.sms-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  background:
    radial-gradient(120% 90% at 50% 32%, rgba(11,168,132,0.07), transparent 60%),
    #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.sms-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sms-loader__badge {
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
}
.sms-loader__spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 90deg, #0ba884 0%, #08b5d0 50%, #0ba884 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  animation: sms-loader-spin 0.9s linear infinite;
}
.sms-loader__mark {
  width: 84px;
  height: auto;
  animation: sms-loader-pulse 1.6s ease-in-out infinite;
}
.sms-loader__bar {
  width: 168px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11,168,132,0.14);
  overflow: hidden;
}
.sms-loader__bar span {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: 999px;
  background: var(--ui-gradient);
  animation: sms-loader-bar 1.15s ease-in-out infinite;
}
@keyframes sms-loader-spin { to { transform: rotate(360deg); } }
@keyframes sms-loader-pulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes sms-loader-bar {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
  .sms-loader__spin,
  .sms-loader__mark,
  .sms-loader__bar span { animation: none; }
}

/* ============================================================
   ÖNERİLEN/BENZER ÜRÜNLER — flex carousel yerine hizalı 4'lü grid
   (media esnemesi kilitlendi → tüm görseller eşit yükseklik)
   ============================================================ */
.related-carousel-section .product-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
}
.related-carousel-section .product-carousel .product-card {
  min-width: 0;
  max-width: none;
  scroll-snap-align: none;
}
.related-carousel-section .product-card .product-media {
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .related-carousel-section .product-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .related-carousel-section .product-carousel {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   POLISH PASS 2026-07-09 — kart büyütme, indirim badge boşluğu,
   sepet görseli, önerilen ürünler hizası, modern adet kontrolü
   (dosyanın en sonunda → kaynak sırası gereği önceki katmanları ezer)
   ============================================================ */

/* ---- 1) Ürün kartı biraz daha büyük + görsel altındaki boşluk açıldı ---- */
.product-card .product-media {
  min-height: 284px !important;
}
@media (min-width: 761px) {
  .product-card .product-media {
    aspect-ratio: 4 / 5 !important;
  }
}
.product-card .product-body {
  padding: 22px 18px 18px !important;
}
/* Kartlar eşit yükseklikte olsun, fiyat/buton satırı hep en altta hizalansın
   → 4'lü dizilimde "dağınık" görüntü biter (önerilen ürünler dahil) */
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card .product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-card .product-bottom {
  margin-top: auto;
}

/* ---- 2) İndirim badge: "%15" ile "indirim" arasına boşluk ---- */
.media-badges .badge-discount span.badge-discount-label {
  margin-left: 5px;
}

/* ---- 3) Sepet görselleri kesilmesin — tam sığsın (contain) + biraz büyük ---- */
.cart-item {
  grid-template-columns: 104px 1fr auto auto auto;
}
.cart-thumb {
  width: 104px;
  height: 104px;
}
.cart-thumb img,
.mini-cart-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 8px !important;
}

/* ---- 4) Ürün detay ana görseli: aşırı uzun 2/3 çerçeve garip duruyordu
         → 4/5'e çekildi, ürün fotoğrafı çerçeveyi daha iyi dolduruyor ---- */
.detail-media {
  aspect-ratio: 4 / 5 !important;
}
/* Önerilen ürünler ızgarası: tek, net 4'lü grid (flex/grid çakışması bitti) */
.related-carousel-section .product-carousel {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px;
  align-items: stretch;
  overflow: visible !important;
}
@media (max-width: 900px) {
  .related-carousel-section .product-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  .related-carousel-section .product-carousel {
    grid-template-columns: 1fr !important;
  }
}

/* ---- 5) MODERN ADET KONTROLÜ — hem ürün detay hem sepet ---- */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--accent-tint-border);
  border-radius: 14px;
  background: var(--accent-tint-2, #edfbf6);
  overflow: visible;
}
.qty-control button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.06);
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}
.qty-control button:hover {
  background: var(--ui-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 168, 132, 0.24);
}
.qty-control button:active {
  transform: scale(0.92);
}
.qty-control button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.qty-control span,
.qty-control input {
  min-width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--black);
}
.qty-control input {
  height: 36px;
  border: 0;
  background: transparent;
  outline: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.detail-qty-row { gap: 16px; }

/* ---- 7) Mini sepet (dropdown + sheet) toplam fiyat satırı ---- */
.mini-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px 12px;
  font-weight: 800;
}
.mini-cart-total span {
  color: var(--text);
  font-size: 13px;
}
.mini-cart-total strong {
  color: var(--black);
  font-size: 17px;
}
.mini-cart-total[hidden] { display: none; }

/* ============================================================
   POLISH PASS 2026-07-09 #2 — kategori mini badge + kart görsel/çizgi boşluğu
   ============================================================ */

/* Eski üstteki büyük kategori satırı kaldırıldı (markup'tan);
   kategori artık litre bilgisinden SONRA küçük renkli minimal badge */
.product-card .product-cat-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  margin-top: 7px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Başlık artık en üstte — üst boşluğu sadeleştir */
.product-card .product-body h3 {
  margin-top: 0;
}
.product-card .product-title-badges {
  display: none;
}

/* Görsel arka planı ile "Sepete Ekle" arasındaki çizgi çok dardı:
   butonu ~5px yukarı al → altında net bir gradient bandı + temiz çizgi kalsın */
.product-card .product-actions {
  bottom: 11px;
}

/* ============================================================
   POLISH PASS 2026-07-09 #3 — ürün detay: belirgin % indirim +
   görselde ince/yavaş/renkli (gri-mavi-cyan) hareketli border
   ============================================================ */

/* Belirgin indirim rozeti (fiyat satırında). .detail-price span line-through
   miras vermesin diye özgüllüğü .detail-price altına scope'ladık. */
.detail-price .detail-discount-badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(220, 38, 38, 0.26);
}

/* Çok ince, düz gri border. (Eski mask'lı gradient bazı tarayıcılarda sorunluydu;
   sade border her yerde çalışır.) */
.detail-media {
  position: relative;
}
.detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid #e6e6e6;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   POLISH PASS 2026-07-09 #4 — detay görsel padding (border kesmesin),
   badge gradient, breadcrumb üst boşluk, SSS başlığı sentence-case
   ============================================================ */

/* Görsel kenardan kenara olunca border ürünü kesiyordu → içeri al (padding) */
.product-detail-page .detail-media .product-photo {
  padding: 6% !important;
}

/* "Oto Detay Temizlik" rozeti gradient renkli olsun */
.detail-badge {
  background: var(--ui-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 168, 132, 0.24);
}

/* Ürün detay breadcrumb'ı header'a yapışmasın (liste sayfası 26px'ti, detayda ferahlat) */
.product-detail-page #main > .section-pad:first-child {
  padding-top: 46px;
}

/* SSS başlığı: global "Title Case" (capitalize) bu başlıkta istenmiyor →
   kaynak metin zaten cümle düzeninde, olduğu gibi göster (için → için) */
#sms-guide-title {
  text-transform: none;
}

/* ============================================================
   FOOTER v2 — 2026-07-09 — tek parça koyu teal footer
   Eski .sms-footer markup'ı layout.js'ten kaldırıldı; bu blok
   yeni `ftr` markup'ının TEK stil kaynağı (eski katman karışmaz).
   Yapı: newsletter bandı → marka+link kolonları → trust şeridi → alt bar
   ============================================================ */

.ftr {
  position: relative;
  margin-top: 84px;
  background: linear-gradient(180deg, #0b1614 0%, #071010 100%);
  color: rgba(222, 240, 234, 0.62);
  overflow: hidden;
}
/* Üstte ince emerald→cyan ışık çizgisi + çok hafif glow */
.ftr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(11,168,132,0.55) 30%, rgba(8,181,208,0.55) 70%, transparent 100%);
}
.ftr::after {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(11,168,132,0.14), transparent 70%);
  pointer-events: none;
}
.ftr .container { position: relative; z-index: 1; }
.ftr h2 { text-transform: none; }
.ftr svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Newsletter bandı ---------- */
.ftr-news {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: center;
  gap: 28px 48px;
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ftr-news-copy h2 {
  margin: 0;
  color: #eef6f3;
  font-size: clamp(21px, 2.4vw, 26px);
  font-weight: 850;
  letter-spacing: -0.01em;
}
.ftr-news-copy p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
}
.ftr-news-form label {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ftr-news-form label:focus-within {
  border-color: rgba(11, 168, 132, 0.55);
  background: rgba(255, 255, 255, 0.07);
}
.ftr-news-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #f2f8f6;
  font-size: 14.5px;
  font-family: inherit;
  outline: 0;
}
.ftr-news-form input::placeholder { color: rgba(222, 240, 234, 0.45); }
.ftr-news-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  background: var(--ui-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.ftr-news-form button:hover { filter: brightness(1.08); }
.ftr-news-form button:active { transform: scale(0.97); }
.ftr-news-form button:disabled { opacity: 0.6; cursor: default; }
.ftr-news-form button svg { width: 15px; height: 15px; }

/* ---------- Ana grid: marka + 3 link kolonu ---------- */
.ftr-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 40px 48px;
  padding: 52px 0 46px;
}
.ftr-brand .footer-logo { display: inline-flex; margin: 0 0 16px; }
.ftr-brand .footer-logo img {
  width: 124px;
  height: 44px;
  object-fit: contain;
  /* PNG orani kutudan dar -> contain yatayda ortaliyordu, logo iceride gorunuyordu. Sola yasla. */
  object-position: left center;
  filter: brightness(0) invert(1);
}
.ftr-brand > p {
  max-width: 340px;
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
}
.ftr-contact-line {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: inherit;
  text-decoration: none;
}
.ftr-contact-line span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(11, 168, 132, 0.15);
  color: #2ee0b4;
}
.ftr-contact-line span svg { width: 18px; height: 18px; }
.ftr-contact-line b {
  color: #eef6f3;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.ftr-contact-line small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(222, 240, 234, 0.42);
}
.ftr-contact-line:hover b { color: #2ee0b4; }
.ftr-address {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(222, 240, 234, 0.5);
}
.ftr-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ftr-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(238, 246, 243, 0.75);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.ftr-social a:hover {
  background: var(--ui-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.ftr-social svg { width: 16px; height: 16px; }

.ftr-col h2 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ftr-col a {
  display: block;
  padding: 5px 0;
  color: rgba(226, 242, 237, 0.68);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.ftr-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

/* ---------- Trust şeridi (ince, tek satır) ---------- */
.ftr-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ftr-trust > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.ftr-trust > div > span {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(11, 168, 132, 0.13);
  color: #2ee0b4;
}
.ftr-trust svg { width: 17px; height: 17px; }
.ftr-trust strong {
  display: block;
  color: #e8f2ee;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.3;
}
.ftr-trust small {
  display: block;
  font-size: 11.5px;
  color: rgba(222, 240, 234, 0.45);
}

/* ---------- Alt bar ---------- */
.ftr-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ftr-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  flex-wrap: wrap;
  padding: 18px 0;
}
.ftr-bottom-grid > span {
  font-size: 13px;
  color: rgba(222, 240, 234, 0.45);
}
.ftr-pay {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ftr-pay img { display: block; opacity: 0.9; }
.ftr-pay .pay-visa { height: 16px; }
.ftr-pay .pay-mc { height: 22px; }
.ftr-pay .pay-troy { height: 24px; }
/* Koyu logolar (Visa lacivert, Troy koyu) koyu zeminde görünsün → beyaza çevir */
.ftr-pay img.pay-mono { filter: brightness(0) invert(1); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .ftr-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
  .ftr-news { grid-template-columns: 1fr; padding: 36px 0 30px; }
  .ftr-news-form label { max-width: 520px; }
}
@media (max-width: 760px) {
  .ftr { margin-top: 56px; }
  .ftr-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    padding: 40px 0 34px;
  }
  .ftr-brand { grid-column: 1 / -1; }
  .ftr-col[aria-label="Popüler ürünler"] { grid-column: 1 / -1; }
  .ftr-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }
  .ftr-news-form label { flex-direction: row; }
  .ftr-news-form button span { display: none; }
  .ftr-news-form button { padding: 0 16px; }
  .ftr-bottom-grid {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   HERO SLIDER v2 — 2026-07-09 — panelden yönetilen görsel sunumu
   1) Yükseklik görsel oranına kilitli (1920×760 web / 900×1400 mobil)
      → admin önerilen ölçüde yüklerse görsel KIRPILMADAN birebir görünür.
   2) Overlay şiddeti panelden: none | soft | strong (slider.overlay_mode)
   3) 2026-07-09 rev: hero artık header'ın ALTINDAN başlar (home'dan
      page-has-hero kaldırıldı, JS spacer devrede) → görselin hiçbir
      parçası header altında kalmaz, güvenli alan hesabı gereksiz.
   ============================================================ */

.hero-slide.hero-slide--image {
  min-height: 480px;
  aspect-ratio: 1920 / 760;
  max-height: calc(100svh - 130px);
}
.hero-slide.hero-slide--image .hero-grid {
  min-height: 100%;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 56px;
}
@media (max-width: 760px) {
  .hero-slide.hero-slide--image {
    aspect-ratio: 9 / 14;
    min-height: 440px;
    max-height: calc(92svh - 90px);
  }
  .hero-slide.hero-slide--image .hero-grid {
    padding-top: 32px;
    padding-bottom: 44px;
  }
}

/* ---- Overlay modları ---- */
/* Yok: görsel olduğu gibi — okunabilirlik gradyanı da ambient efekt de kapalı */
.hero-slide--overlay-none.hero-slide--image::after {
  background: none !important;
}
.hero-slide--overlay-none.hero-slide--image::before {
  display: none !important;
}
/* Hafif (önerilen): yalnız metin tarafında yumuşak geçiş, görselin çoğu net */
.hero-slide--overlay-soft.hero-slide--text-dark::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.3) 38%, rgba(255,255,255,0) 66%);
}
.hero-slide--overlay-soft.hero-slide--text-light::after {
  background: linear-gradient(90deg, rgba(3,5,8,0.56) 0%, rgba(3,5,8,0.26) 40%, rgba(3,5,8,0) 70%);
}
/* strong = mevcut varsayılan gradyanlar (üstteki text-dark/text-light kuralları) */

/* ============================================================
   MOBİL ÜRÜN KARTLARI — 2026-07-09 — 2'li düzen kaldırıldı, TEKLİ
   Dar 2'li kolonda kart içeriği (badge/buton/fiyat) sıkışıp bozuk
   görünüyordu; tek kolonda kart tam genişlik, ferah düzen.
   ============================================================ */
@media (max-width: 760px) {
  .product-grid,
  .home-product-grid,
  [data-favorites-grid].home-product-grid,
  .product-layout .product-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .related-carousel-section .product-carousel {
    grid-template-columns: 1fr !important;
  }
  /* Tek kolonda görsel alanını dengele (4/5 tam genişlikte aşırı uzun olur) */
  .product-card .product-media {
    min-height: 0 !important;
    aspect-ratio: 4 / 3.4 !important;
  }
  .product-card .product-body {
    padding: 16px 16px 14px !important;
  }
}

/* ============================================================
   MOBİL KART AKSİYONLARI — 2026-07-09 — butonlar görselin üstünde
   değil, kartın EN ALTINDA (fiyatın altında) ayrılmış bantta.
   Web'de davranış değişmedi (hover overlay aynen kalır).
   ============================================================ */
@media (max-width: 760px) {
  /* Aksiyonların çapası media-wrap değil kartın kendisi olsun */
  .product-media-wrap { position: static; }
  /* Badge'ler (hacim/indirim) görsele sabit kalsın */
  .product-card .product-media { position: relative; }
  /* Kart altında butonlar için yer ayır */
  .product-card { padding-bottom: 64px; }
  .product-card .product-actions {
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
}

/* ============================================================
   FIX 2026-07-09 — hero eyebrow pill'inde görünmez metin
   Global `.eyebrow` gradient-yazı efekti (background-clip:text +
   text-fill-color:transparent, ~11454) pill eyebrow'a da sızıyordu:
   pill'in tint arka planı text'e clip'leniyor, metin şeffaf kalıyordu.
   Pill varyantında normal dolgu + düz renk metne geri dön.
   ============================================================ */
.hero-slide.hero-slide--image .hero-copy .eyebrow {
  background: var(--accent-tint);
  background-clip: border-box;
  -webkit-background-clip: border-box;
  color: var(--accent-dark);
  -webkit-text-fill-color: var(--accent-dark);
}
.hero-slide.hero-slide--text-light .hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

/* ============================================================
   MOBİL KART v3 — 2026-07-09 — büyük görsel + büyük tipografi + tam metin butonlar
   Görsel: contain yerine cover → yanlara tam yayılır, üst/alt HAFİF kırpılır
   (1200×1800 ürün görseli 4/5 kutuda ~%17 kırpım = kabul edilen "biraz").
   Web tarafı değişmedi (tümü ≤760px).
   ============================================================ */
@media (max-width: 760px) {
  .product-card .product-media .media-badges {
    display: none;
  }
  .product-card .product-title-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }
  .product-card .product-title-badges .badge {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    display: inline-flex;
    align-items: center;
    height: 23px;
    padding: 0 8px;
    border: 0;
    border-radius: 7px;
    font-size: 10.5px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: none;
  }
  .product-card .product-title-badges .badge-volume {
    background: var(--ui-gradient);
    color: #fff;
  }
  .product-card .product-title-badges .badge-discount {
    background: #dc2626;
    color: #fff;
  }

  /* Görsel kenardan kenara */
  .product-card .product-media {
    aspect-ratio: 4 / 5 !important;
  }
  .product-card .product-photo {
    padding: 0 !important;
  }
  .product-card .product-photo img {
    object-fit: cover !important;
  }

  /* Tipografi büyüdü */
  .product-card .product-body h3 {
    font-size: 19px;
    line-height: 1.22;
  }
  .product-card .product-title-size {
    font-size: 14.5px;
  }
  .product-card .product-cat-badge {
    font-size: 10.5px;
    padding: 4px 10px;
  }
  .product-card .product-bottom strong {
    font-size: 22px;
  }
  .product-card .product-bottom strong small {
    font-size: 13.5px;
  }

  /* Butonlar: ikon-only/kısaltma yerine tam metin */
  .product-card .pa-btn {
    min-height: 46px;
    height: 46px;
    font-size: 13.5px;
    border-radius: 12px;
  }
  .product-card .pa-add { flex: 1.35; }
  .product-card .pa-add span { display: inline; }
  .product-card .pa-add:not(:disabled)::after { content: none; }
  .product-card .pa-detail {
    flex: 1;
    width: auto;
    padding: 0 12px;
  }
  .product-card .pa-detail span { display: none; }
  .product-card .pa-detail::after { content: "İncele"; }
  /* İki satır buton + fiyat için ayrılan bant büyüdü */
  .product-card { padding-bottom: 72px; }
}

/* ---- 2026-07-09 FINAL: hero header'ın HEMEN altından başlar, tuck YOK ----
   Beyaz bant fix'i CSS'te değil JS'te: header kompaktlaşma eşiği sabit 24px
   yerine ölçülen (geniş − kompakt) farkına bağlandı. Header küçüldüğü anda
   içerik zaten o fark kadar scroll edilmiş oluyor → bant matematiksel imkânsız.
   .measuring: ölçüm anında transition'lar kapalı (kampanya barı animasyonu yanıltmasın). */
.site-header.measuring,
.site-header.measuring * {
  transition: none !important;
}
.hero-slider {
  margin-top: 0;
}
.hero-slider .hero-slide {
  margin-top: 0;
}

/* 2026-07-09: navbar üstündeki alakasız 10px boşluk kaldırıldı (5735'teki
   kural eziliyor; scroll'da zaten 0'dı, artık duran halde de 0 → tutarlı). */
.nav-bar {
  margin-top: 0;
}

/* ---- 2026-07-09: listeleme başlık alanı minimal — eyebrow kalktı (blade),
   dikey boşluklar ve başlık ölçüsü sıkılaştı ---- */
.listing-head {
  padding: 14px 0 16px;
}
.listing-head .breadcrumbs {
  margin-bottom: 10px;
}
.listing-head-row h1 {
  font-size: clamp(20px, 2.4vw, 27px);
}
.listing-head-row p:not(.eyebrow) {
  margin-top: 4px;
  font-size: 14px;
}
.listing-head-meta span {
  font-size: 16px;
}
.listing-head-meta small {
  font-size: 11px;
}

/* ---- 2026-07-09: eski kırmızıdan kalan pembe tonlar → emerald ----
   Metin seçimi, focus halkası, focus'lu input çerçevesi ve listeleme
   başlığının zemin gradyanı hâlâ rgba(200,16,46,…) kullanıyordu. */
::selection {
  background: rgba(11, 168, 132, 0.18);
  color: var(--sms-ink);
}
:focus-visible {
  outline: 3px solid rgba(11, 168, 132, 0.4);
  outline-offset: 3px;
}
.filter-search input:focus,
.price-filter input:focus,
.form-group-modern input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: rgba(11, 168, 132, 0.45);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.listing-head {
  background:
    linear-gradient(135deg, rgba(11, 168, 132, 0.05), transparent 38%),
    #ffffff;
}

/* ---- 2026-07-09: hamburger sağa optik hizalı ----
   46px'lik dokunma kutusu içinde 18px çizgiler ortalanınca menü sağ
   kenardan içeride görünüyordu. Kutu aynı (tap alanı bozulmadı), içerik
   sağa yaslanıp iç boşluk kadar negatif margin ile kenara oturdu. */
@media (max-width: 1100px) {
  .menu-toggle {
    align-items: flex-end;
    padding-right: 0;
    margin-right: -2px;
    justify-content: center;
  }
  .menu-toggle span {
    margin-right: 0;
  }
}

/* ============================================================
   ANA SAYFA SEO METİN ALANI — 2026-07-10 — SSS altı, panelden yönetilir
   (Ayarlar → SEO → home_seo_title/home_seo_text). Kutu max 200px, içi kayar.
   Görsel olarak sessiz: küçük gri tipografi, ince çerçeve.
   ============================================================ */
.home-seo-section {
  padding: 0 0 64px;
  background: var(--off-white);
}
.home-seo-box {
  max-height: 200px;
  overflow-y: auto;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #cfd4dc transparent;
}
.home-seo-box::-webkit-scrollbar { width: 6px; }
.home-seo-box::-webkit-scrollbar-thumb { background: #cfd4dc; border-radius: 999px; }
.home-seo-box:focus-visible {
  outline: 3px solid rgba(11, 168, 132, 0.4);
  outline-offset: 3px;
}
.home-seo-box h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  text-transform: none;
}
.home-seo-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
}
.home-seo-body h3 { margin: 14px 0 6px; font-size: 14px; color: var(--black); }
.home-seo-body p { margin: 0 0 10px; }
.home-seo-body ul { margin: 0 0 10px; padding-left: 18px; }
.home-seo-body a { color: var(--accent-dark); font-weight: 700; }

/* ============================================================
   REVISION PASS — 2026-07-10
   Sepet/adet/fiyat hizaları, mobil hero, mobil hesap nav ve iOS form.
   ============================================================ */

.detail-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.detail-qty-row > span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  line-height: 1;
}
.detail-qty.qty-control {
  min-height: 46px;
  align-items: center;
}
.detail-qty.qty-control button,
.detail-qty.qty-control input {
  height: 38px;
}
.detail-qty.qty-control input {
  line-height: 38px;
}

.detail-price {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.detail-price strong {
  line-height: 1;
}
.detail-price strong + span {
  align-self: flex-start;
  margin-top: 1px;
  font-size: 16px;
  line-height: 1.1;
  color: #555f6d;
}
.detail-price .detail-discount-badge {
  align-self: center;
  margin-left: 2px;
  white-space: nowrap;
}

.cart-item {
  grid-template-columns: 104px minmax(220px, 1fr) 132px minmax(112px, auto) 72px;
  column-gap: 18px;
}
.cart-item .qty-control {
  width: 132px;
  justify-content: space-between;
}
.cart-item .cart-line {
  min-width: 112px;
  text-align: right;
}
.cart-item .remove-btn {
  width: 72px;
  text-align: right;
}

.profile-form select,
.checkout-form select {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 42px 0 13px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230ba884' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  color: var(--black);
  font: inherit;
  font-weight: 800;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}
.profile-form select:focus,
.checkout-form select:focus {
  border-color: rgba(11, 168, 132, 0.45);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

.sms-modal {
  overscroll-behavior: contain;
}
.sms-modal__panel {
  overscroll-behavior: contain;
}
.sms-modal__body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
body.sms-modal-open {
  touch-action: none;
}
body.sms-modal-open .sms-modal,
body.sms-modal-open .sms-modal__panel,
body.sms-modal-open .sms-modal__body {
  touch-action: auto;
}

@media (max-width: 1100px) {
  .account-side {
    position: static;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 8px;
  }
  .account-side a,
  .account-side-logout button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.15;
  }
  .account-side-logout {
    grid-column: 1 / -1;
    margin: 0;
  }
  .account-side-logout button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-slide.hero-slide--image {
    aspect-ratio: auto !important;
    min-height: clamp(430px, 76svh, 560px) !important;
    max-height: none !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  .hero-slide.hero-slide--image::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.62) 38%, rgba(255,255,255,0.12) 76%, rgba(255,255,255,0) 100%) !important;
  }
  .hero-slide.hero-slide--text-light::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.08) 78%, rgba(0,0,0,0) 100%) !important;
  }
  .hero-slide.hero-slide--image .hero-grid {
    min-height: clamp(430px, 76svh, 560px) !important;
    display: flex !important;
    align-items: flex-start !important;
    padding-top: 26px !important;
    padding-bottom: 150px !important;
  }
  .hero-slide.hero-slide--image .hero-copy {
    width: min(100%, 390px);
    padding-top: 0;
  }
  .hero-slide.hero-slide--image .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.05;
  }
  .hero-slide.hero-slide--image .hero-copy > p:not(.eyebrow) {
    max-width: 320px;
    margin-top: 10px;
    font-size: 15px !important;
    line-height: 1.45;
  }
  .hero-slide.hero-slide--image .hero-actions {
    margin-top: 14px;
  }

  [data-home-products].home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  [data-home-products].home-product-grid .product-card {
    padding-bottom: 58px;
  }
  [data-home-products].home-product-grid .product-card .product-media {
    aspect-ratio: 1 / 1.2 !important;
  }
  [data-home-products].home-product-grid .product-card .product-body {
    padding: 12px 11px 10px !important;
  }
  [data-home-products].home-product-grid .product-card .product-body h3 {
    font-size: 14px;
    line-height: 1.22;
  }
  [data-home-products].home-product-grid .product-card .product-title-size,
  [data-home-products].home-product-grid .product-card p,
  [data-home-products].home-product-grid .product-card .chips {
    display: none;
  }
  [data-home-products].home-product-grid .product-card .product-cat-badge {
    display: none;
  }
  [data-home-products].home-product-grid .product-card .product-title-badges {
    display: flex;
  }
  [data-home-products].home-product-grid .product-card .product-bottom strong {
    font-size: 16px;
  }
  [data-home-products].home-product-grid .product-card .product-bottom strong small {
    font-size: 11px;
  }
  [data-home-products].home-product-grid .product-card .product-actions {
    left: 9px;
    right: 9px;
    bottom: 9px;
    gap: 6px;
  }
  [data-home-products].home-product-grid .product-card .pa-btn {
    min-height: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
  }
  [data-home-products].home-product-grid .product-card .pa-detail {
    flex: 0 0 40px;
    width: 40px;
    padding: 0;
  }
  [data-home-products].home-product-grid .product-card .pa-detail::after {
    content: none;
  }
  [data-home-products].home-product-grid .product-card .pa-detail span {
    display: none;
  }
  [data-home-products].home-product-grid .product-card .pa-add span {
    display: inline;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }
  .cart-item .qty-control {
    grid-column: 1 / 2;
    grid-row: 2;
    width: 126px;
    justify-self: start;
  }
  .cart-item .cart-line {
    grid-column: 2 / 3;
    grid-row: 2;
    min-width: 0;
    justify-self: end;
    align-self: center;
    text-align: right;
  }
  .cart-item .remove-btn {
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    justify-self: stretch;
    text-align: center;
  }

  .account-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    border-radius: 14px;
  }
  .account-side a,
  .account-side-logout button {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .profile-form select,
  .checkout-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .sms-modal {
    align-items: stretch;
    padding: 10px;
  }
  .sms-modal__panel {
    max-height: calc(100svh - 20px);
    border-radius: 16px;
  }
}

@media (max-width: 390px) {
  [data-home-products].home-product-grid .product-card .pa-add span {
    display: none;
  }
  [data-home-products].home-product-grid .product-card .pa-add::after {
    content: "Ekle";
  }
}

/* Account nav refresh — mobile first compact tabs */
@media (max-width: 1100px) {
  .account-panel-layout {
    gap: 16px;
  }
  .account-side {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(222, 223, 228, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(9, 9, 11, 0.06);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .account-side::-webkit-scrollbar {
    display: none;
  }
  .account-side a,
  .account-side-logout button {
    flex: 0 0 auto;
    min-width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #16181d;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: none;
  }
  .account-side a.is-active {
    background: #09090b;
    color: #fff;
    box-shadow: 0 8px 18px rgba(9, 9, 11, 0.16);
  }
  .account-side a:hover {
    background: rgba(9, 9, 11, 0.06);
    color: #09090b;
  }
  .account-side a.is-active:hover {
    background: #09090b;
    color: #fff;
  }
  .account-side-logout {
    flex: 0 0 auto;
    grid-column: auto;
    margin: 0 0 0 4px;
    padding-left: 8px;
    border-left: 1px solid rgba(222, 223, 228, 0.95);
  }
  .account-side-logout button {
    width: auto;
    color: var(--accent-dark);
  }
  .account-side-logout button:hover {
    background: var(--accent-tint);
    color: var(--accent-dark);
  }
}

@media (max-width: 760px) {
  .account-shell.section-pad {
    padding-top: 18px;
  }
  .account-panel-layout {
    gap: 14px;
  }
  .account-side {
    margin-inline: -2px;
    padding: 5px;
    border-radius: 14px;
  }
  .account-side a,
  .account-side-logout button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13.5px;
    border-radius: 11px;
  }
  .account-side-logout {
    padding-left: 7px;
  }
}

/* Cart image + quantity control hard fix */
.cart-thumb,
.mini-cart-thumb,
.cart-sheet .mini-cart-thumb,
.header-tools .mini-cart-menu .mini-cart-thumb {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: #fff !important;
}
.cart-thumb img,
.mini-cart-thumb img,
.cart-sheet .mini-cart-thumb img,
.header-tools .mini-cart-menu .mini-cart-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
}
.cart-thumb img {
  width: 92px !important;
  height: 104px !important;
}
.mini-cart-thumb img,
.cart-sheet .mini-cart-thumb img,
.header-tools .mini-cart-menu .mini-cart-thumb img {
  width: 54px !important;
  height: 64px !important;
}

.qty-control,
.detail-qty.qty-control,
.cart-item .qty-control {
  display: inline-grid !important;
  grid-template-columns: 42px minmax(36px, auto) 42px !important;
  align-items: center !important;
  justify-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: max-content !important;
  min-width: 132px !important;
  min-height: 48px !important;
  padding: 4px !important;
  overflow: visible !important;
}
.qty-control button,
.detail-qty.qty-control button,
.cart-item .qty-control button {
  width: 42px !important;
  height: 40px !important;
  min-width: 42px !important;
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}
.qty-control span,
.qty-control input,
.detail-qty.qty-control input,
.cart-item .qty-control span {
  min-width: 36px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 40px !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .cart-item {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    align-items: center !important;
  }
  .cart-thumb {
    width: 96px !important;
    height: 118px !important;
    grid-row: 1 / span 2;
  }
  .cart-thumb img {
    width: 96px !important;
    height: 118px !important;
  }
  .cart-item-info {
    grid-column: 2 / 3;
    align-self: end;
  }
  .cart-item .qty-control {
    grid-column: 2 / 3 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    align-self: start !important;
  }
  .cart-item .cart-line {
    grid-column: 2 / 3 !important;
    grid-row: 3 !important;
    justify-self: start !important;
    margin-top: 10px;
    text-align: left !important;
  }
  .cart-item .remove-btn {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
  }
}

/* Product detail price redesign */
.detail-price {
  width: 100%;
  display: grid !important;
  justify-items: start;
  align-items: start;
  gap: 8px !important;
  margin-top: 26px;
}
.detail-price strong {
  display: block;
  color: var(--accent-dark);
  font-size: clamp(36px, 4.4vw, 56px) !important;
  font-weight: 950;
  line-height: 0.98 !important;
  letter-spacing: 0;
}
.detail-price--discounted {
  max-width: 420px;
  padding: 0;
}
.detail-price--discounted .detail-discount-badge {
  order: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 2px !important;
  padding: 0 12px;
  border-radius: 999px;
  background: #e4232c;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
}
.detail-price--discounted .detail-price-meta {
  order: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-height: 24px;
}
.detail-price--discounted .detail-old-price {
  display: inline-flex;
  align-items: center;
  color: #697181;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  text-decoration: line-through;
}
.detail-price--discounted .detail-price-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

@media (max-width: 760px) {
  .detail-price {
    margin-top: 22px;
    gap: 7px !important;
  }
  .detail-price strong {
    font-size: clamp(34px, 11vw, 46px) !important;
  }
  .detail-price--discounted .detail-old-price {
    font-size: 16px;
  }
}

/* Add-to-cart feedback must not lock or jump the page. */
body.cart-sheet-open {
  overflow: visible !important;
}
