/* ============================================================
   Ürün Mağazası UI — açık/turuncu tema
   Beyaz zemin, gri kartlar, turuncu vurgu, yuvarlak-samimi
   sistem tipografisi. Üyelik yok — WhatsApp ile iletişim.
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --surface: #f3f4f6;
  --surface-2: #eceef1;
  --border: #e9e9ec;
  --border-strong: #dcdde2;

  --text: #17182b;
  --text-dim: #4b4d5e;
  --muted: #85879a;

  --orange: #f5740a;
  --orange-light: #ff9a42;
  --orange-dark: #d9630a;
  --orange-soft: rgba(245,116,10,.1);
  --orange-grad: linear-gradient(135deg, var(--orange), var(--orange-light));

  --price: var(--orange);
  --wa: #25d366;
  --wa-dark: #128c7e;
  --success: #16a34a;
  --success-soft: rgba(22,163,74,.1);
  --danger: #e6483a;
  --danger-soft: rgba(230,72,58,.1);
  --used: #2f8fd6;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --shadow: 0 1px 2px rgba(17,18,43,.04), 0 4px 14px rgba(17,18,43,.05);
  --shadow-md: 0 10px 28px rgba(17,18,43,.09);
  --header-h: 64px;
  --topbar-h: 34px;
  --tabbar-h: 64px;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Geriye uyum */
  --yellow: var(--orange);
  --navy: var(--used);
  --primary: var(--orange);
  --primary-light: var(--orange-light);
  --primary-soft: var(--orange-soft);
  --accent: var(--used);
  --gold: var(--orange);
  --gold-light: var(--orange-light);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  padding-top: calc(var(--header-h) + var(--topbar-h));
  padding-bottom: var(--tabbar-h);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, .section-title, .navbar-brand { font-family: var(--font-display); font-weight: 700; }
::selection { background: var(--orange-soft); color: var(--orange-dark); }

/* ─── ÜST İNCE BAR (siyah duyuru şeridi) ─── */
.top-bar {
  display: flex !important; align-items: center;
  height: var(--topbar-h);
  background: #14141c;
  color: #fff;
  font-size: .76rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.top-bar .container { display: flex; align-items: center; justify-content: center; gap: 24px; height: 100%; }
.top-bar a { color: #fff; opacity: .92; }
.top-bar a:hover { opacity: 1; color: var(--orange-light); }
.top-bar i { color: var(--orange-light); margin-right: 5px; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0;
  height: var(--header-h);
  background: #fff !important;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.site-header .navbar {
  height: var(--header-h); padding: 0;
  background: transparent !important; border: none !important; box-shadow: none !important;
}
.navbar-brand {
  font-size: 1.3rem; font-weight: 800; color: var(--text) !important;
  display: flex; align-items: center; gap: 8px; letter-spacing: -.01em;
}
.navbar-brand img { height: 36px; width: auto; max-width: 150px; object-fit: contain; object-position: left center; }
.navbar-brand i {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--orange-grad); color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

.nav-link {
  font-size: .88rem !important; font-weight: 600 !important;
  color: var(--text-dim) !important;
  padding: .5rem .85rem !important; border-radius: 0;
  transition: .15s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: -1px; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--orange) !important; background: transparent !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.search-form { position: relative; max-width: 320px; margin-left: 12px; }
.search-form .form-control {
  border-radius: var(--radius-pill); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text);
  font-size: .85rem; height: 42px;
  padding-left: 18px; padding-right: 48px;
  transition: .15s;
}
.search-form .form-control::placeholder { color: var(--muted); }
.search-form .form-control:focus {
  border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 4px var(--orange-soft); color: var(--text);
}
.search-form .btn {
  position: absolute; right: 4px; top: 4px; bottom: 4px;
  width: 36px; border-radius: 50%; border: none;
  background: transparent; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.search-form .btn:hover { color: var(--orange-dark); }

.live-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); z-index: 1100;
  display: none; max-height: 360px; overflow-y: auto;
  border: 1px solid var(--border);
}
.live-results .item { display: flex; gap: 12px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.live-results .item:hover { background: var(--surface); }
.live-results img { width: 48px; height: 48px; object-fit: contain; background: var(--surface); border-radius: 10px; flex-shrink: 0; }

.navbar-toggler { border: none; color: var(--text); font-size: 1.35rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff !important; padding: 6px 16px 18px;
    box-shadow: var(--shadow-md); z-index: 1050;
    border: 1px solid var(--border); border-top: none;
  }
  .navbar-collapse .nav-link { color: var(--text) !important; padding: 12px 4px !important; display: block; border-bottom: 1px solid var(--border); }
  .navbar-collapse .nav-link::after { display: none; }
  .search-form { max-width: 100%; margin: 10px 0 0; }
}

/* ─── ALT MOBİL SEKME ÇUBUĞU (yeni) ─── */
.bottom-tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  height: var(--tabbar-h);
  background: #fff; border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
  box-shadow: 0 -4px 16px rgba(17,18,43,.06);
}
.bottom-tabbar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--muted); font-size: .68rem; font-weight: 600;
}
.bottom-tabbar a i { font-size: 1.2rem; }
.bottom-tabbar a.is-wa { color: var(--wa); }
.bottom-tabbar a:hover, .bottom-tabbar a.active { color: var(--orange); }
.bottom-tabbar a.is-wa:hover { color: var(--wa-dark); }

/* ─── HERO ─── */
.hero-section {
  background: var(--bg-alt);
  color: var(--text); padding: 40px 0 36px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-soft); color: var(--orange-dark); font-weight: 700; font-size: .72rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.hero-section h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.18; margin-bottom: 12px;
}
.hero-section h1 .text-gold { color: var(--orange); }
.hero-section .lead { font-size: 1rem; color: var(--text-dim); margin-bottom: 22px; max-width: 480px; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-grad) !important; color: #fff !important;
  border: none; border-radius: var(--radius-pill); padding: 13px 26px;
  font-weight: 700; font-size: .9rem; box-shadow: 0 8px 20px rgba(245,116,10,.28); transition: .2s;
}
.btn-hero:hover { transform: translateY(-1px); color: #fff !important; }
.btn-hero-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa) !important; color: #fff !important;
  border: none; border-radius: var(--radius-pill);
  padding: 13px 26px; font-weight: 700; font-size: .9rem;
}
.btn-hero-wa:hover { background: var(--wa-dark) !important; color: #fff !important; }

.cat-strip {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0; overflow-x: auto; white-space: nowrap;
}
.cat-strip a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 16px; margin-right: 2px;
  font-size: .85rem; font-weight: 600; color: var(--text-dim);
  border-radius: 0; border-bottom: 2px solid transparent;
  transition: .15s;
}
.cat-strip a:hover, .cat-strip a.active { color: var(--orange); border-color: var(--orange); }

/* ─── BÖLÜMLER ─── */
.section { padding: 36px 0; }
.section-white { background: var(--bg-alt); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 12px; }
.section-title { font-size: 1.25rem; font-weight: 800; margin: 0; letter-spacing: -.01em; color: var(--text); display: flex; align-items: center; gap: 8px; }
.section-title::before { content: ''; width: 6px; height: 20px; background: var(--orange-grad); border-radius: 4px; }
.section-link { font-size: .82rem; font-weight: 700; color: var(--orange); }
.section-link:hover { color: var(--orange-dark); }

/* ─── ÜRÜN KARTI ─── */
.phone-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid transparent;
  overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: .2s;
  position: relative;
}
.phone-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.phone-card .card-img-wrap {
  position: relative; background: #fff;
  padding: 18px 16px 10px; aspect-ratio: 1; min-height: 190px;
  display: flex; align-items: center; justify-content: center;
}
.phone-card .card-img-wrap img { max-height: 100%; max-width: 90%; object-fit: contain; transition: transform .25s; }
.phone-card:hover .card-img-wrap img { transform: scale(1.05); }

.badge-pill {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill);
}
.badge-yeni { background: var(--orange); color: #fff; }
.badge-ikinci { background: var(--used); color: #fff; }
.badge-featured { background: var(--success); color: #fff; }
.badge-sold { position: absolute; top: 10px; right: 10px; z-index: 2; background: #9698a8; color: #fff; font-size: .66rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); }
.badge-discount { position: absolute; top: 10px; right: 10px; z-index: 2; background: var(--danger); color: #fff; font-size: .66rem; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-pill); }

.phone-card .card-body { padding: 12px 14px 6px; display: flex; flex-direction: column; flex: 1; background: var(--surface); }
.phone-card .brand-label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.phone-card .card-title {
  font-size: .88rem; font-weight: 600; line-height: 1.35; margin-bottom: 8px; color: var(--text); min-height: 2.5em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.phone-card .card-title:hover { color: var(--orange); }
.phone-card .specs-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.phone-card .spec-chip { font-size: .68rem; font-weight: 600; color: var(--text-dim); background: #fff; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--border); }
.phone-card .spec-chip i { font-size: 10px; margin-right: 2px; opacity: .65; }
.phone-card .price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.phone-card .price { font-size: 1.15rem; font-weight: 800; color: var(--price); letter-spacing: -.01em; }
.phone-card .old-price { font-size: .78rem; color: var(--muted); text-decoration: line-through; }
.phone-card .card-meta { font-size: .68rem; color: var(--muted); margin-top: 5px; }
.phone-card .card-footer-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; gap: 8px; background: var(--surface); }
.phone-card .btn-detail { flex: 1; text-align: center; font-size: .78rem; font-weight: 700; color: var(--orange); padding: 8px; border-radius: var(--radius-sm); background: var(--orange-soft); }
.phone-card .btn-detail:hover { background: rgba(245,116,10,.16); }
.phone-card .wa-mini { display: inline-flex; align-items: center; gap: 5px; background: var(--wa); color: #fff !important; font-size: .78rem; font-weight: 700; padding: 8px 13px; border-radius: var(--radius-sm); }
.phone-card .wa-mini:hover { background: var(--wa-dark); }
.phone-card.is-sold { opacity: .6; }
.phone-card.is-sold .card-img-wrap img { filter: grayscale(.5); }
.phone-card .sold-bar { justify-content: center; }

/* Liste görünümü */
.results-grid.is-list { display: flex; flex-direction: column; gap: 10px; }
.results-grid.is-list > [class*="col-"] { width: 100%; max-width: 100%; flex: 0 0 100%; }
.results-grid.is-list .phone-card { display: grid; grid-template-columns: 120px 1fr; grid-template-rows: auto auto; }
.results-grid.is-list .phone-card .card-img-wrap { grid-row: 1/3; grid-column: 1; aspect-ratio: auto; min-height: 100%; padding: 10px; }
.results-grid.is-list .phone-card .card-body { grid-column: 2; grid-row: 1; padding: 10px 14px 2px; }
.results-grid.is-list .phone-card .card-footer-bar { grid-column: 2; grid-row: 2; }
.results-grid.is-list .phone-card .card-title { min-height: 0; -webkit-line-clamp: 1; }
@media (max-width: 575.98px) { .results-grid.is-list .phone-card { grid-template-columns: 92px 1fr; } }

/* ─── KATEGORİ / MARKA ─── */
.cat-box { background: var(--surface); border-radius: var(--radius); padding: 22px 12px; text-align: center; transition: .2s; height: 100%; }
.cat-box:hover { background: var(--surface-2); transform: translateY(-2px); }
.cat-box .cat-icon { width: 50px; height: 50px; border-radius: 50%; background: #fff; color: var(--orange); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.cat-box h6 { font-weight: 700; font-size: .92rem; margin: 0 0 2px; color: var(--text); }
.cat-box small { color: var(--muted); font-size: .78rem; }

.brand-box { background: var(--surface); border-radius: var(--radius); padding: 18px 8px; text-align: center; font-weight: 700; font-size: .88rem; transition: .15s; }
.brand-box:hover { background: var(--surface-2); }

/* ─── ÜRÜN DETAY ─── */
.product-gallery { background: #fff; border-radius: var(--radius); padding: 0; overflow: hidden; }
.product-gallery #mainGalleryImg { width: 100%; max-height: 400px; object-fit: contain; background: #fff; border-radius: var(--radius); }
.gallery-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.gallery-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong); transition: .2s; }
.gallery-dots span.active { background: var(--orange); width: 16px; border-radius: 4px; }
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.product-thumbs img { width: 64px; height: 64px; object-fit: contain; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; cursor: pointer; padding: 4px; transition: .15s; }
.product-thumbs img.active, .product-thumbs img:hover { border-color: var(--orange); }

.product-info { padding: 4px 0; }
.product-info .brand-model { font-size: .76rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.product-info h1 { font-size: 1.4rem; font-weight: 700; margin: 6px 0 10px; letter-spacing: -.01em; line-height: 1.3; color: var(--text); }
.price-lg { font-size: 1.9rem; font-weight: 800; color: var(--price); letter-spacing: -.02em; }
.old-price-lg { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.discount-badge { display: inline-block; background: var(--danger-soft); color: var(--danger); font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); }

.urgency-chip {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  background: var(--orange-soft); border-radius: var(--radius-sm); padding: 12px 14px; margin: 14px 0; font-size: .85rem; font-weight: 600; color: var(--orange-dark);
}
.urgency-chip .pill { background: rgba(255,255,255,.6); border-radius: var(--radius-pill); padding: 3px 10px; font-size: .74rem; }

/* Özellik bilgi ızgarası (Stok / Kargo / Garanti ...) */
.spec-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.spec-info-card { background: var(--surface); border-radius: var(--radius-sm); padding: 12px 14px; }
.spec-info-card .label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.spec-info-card .value { font-size: .92rem; font-weight: 700; color: var(--text); }

/* Durum kartları (renkli sol çizgili) */
.status-card { display: flex; align-items: flex-start; gap: 10px; background: var(--surface); border-left: 3px solid var(--border-strong); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 10px; }
.status-card .label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.status-card .value { font-size: .92rem; font-weight: 700; color: var(--text); }
.status-card.is-good { border-left-color: var(--success); }
.status-card.is-good .value { color: var(--success); }
.status-card.is-bad { border-left-color: var(--danger); }
.status-card.is-bad .value { color: var(--danger); }
.status-card.is-neutral { border-left-color: var(--orange); }
.status-card.is-neutral .value { color: var(--orange-dark); }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--wa) !important; color: #fff !important;
  border: none; border-radius: var(--radius-pill);
  padding: 15px; font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 18px rgba(37,211,102,.28); transition: .2s;
}
.btn-whatsapp:hover { background: var(--wa-dark) !important; color: #fff !important; }
.btn-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--surface) !important; color: var(--text) !important;
  border: 1.5px solid var(--border-strong) !important; border-radius: var(--radius-pill);
  padding: 12px; font-weight: 700; font-size: .9rem;
}
.btn-call:hover { border-color: var(--orange) !important; color: var(--orange) !important; }

.content-block { background: var(--surface); border-radius: var(--radius); padding: 20px; margin-top: 16px; }
.content-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--orange-soft); color: var(--text); }

/* Yapışkan alt satın alma çubuğu (ürün detay) */
.sticky-buy-bar {
  position: fixed; left: 0; right: 0; bottom: var(--tabbar-h); z-index: 998;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -6px 18px rgba(17,18,43,.07);
  padding: 10px 14px; display: flex; align-items: center; gap: 12px;
}
.sticky-buy-bar .sb-info { flex: 1; min-width: 0; }
.sticky-buy-bar .sb-name { font-size: .74rem; color: var(--muted); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy-bar .sb-price { font-size: 1.05rem; font-weight: 800; color: var(--price); }
.sticky-buy-bar .btn-whatsapp { width: auto; padding: 12px 22px; box-shadow: none; }
.page-has-sticky-buy { padding-bottom: 78px; }

/* ─── FİLTRE PANELİ ─── */
.filter-card { background: var(--surface); border-radius: var(--radius); padding: 20px; position: sticky; top: calc(var(--header-h) + var(--topbar-h) + 16px); }
.filter-card .filter-title { font-size: .95rem; font-weight: 800; color: var(--text); display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-strong); }
.filter-card .filter-title .clear-link { font-size: .78rem; font-weight: 700; color: var(--orange); }
.filter-card .form-label { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; display: block; }
.filter-card .form-control, .filter-card .form-select { border-radius: var(--radius-sm); font-size: .875rem; border-color: var(--border-strong); background: #fff; }
.filter-card .btn-filter { background: var(--orange-grad) !important; color: #fff !important; border: none; border-radius: var(--radius-pill); font-weight: 700; width: 100%; padding: 11px; margin-top: 4px; }
.filter-card .btn-filter:hover { opacity: .93; }
.filter-group { margin-bottom: 20px; }
.price-range-row { display: flex; align-items: center; gap: 8px; }
.price-range-row input { text-align: center; }
.price-range-row span { color: var(--muted); font-size: .8rem; }

.brand-check-list { max-height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; margin-right: -6px; padding-right: 6px; }
.brand-check-list::-webkit-scrollbar { width: 5px; }
.brand-check-list::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
.brand-check-item { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: var(--radius-sm); cursor: pointer; transition: .12s; font-size: .87rem; color: var(--text-dim); }
.brand-check-item:hover { background: #fff; }
.brand-check-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.brand-check-item .bc-name { flex: 1; }
.brand-check-item .bc-count { font-size: .72rem; font-weight: 700; color: var(--muted); background: #fff; border-radius: var(--radius-pill); padding: 1px 8px; min-width: 24px; text-align: center; }
.brand-check-item:has(input:checked) { color: var(--orange-dark); font-weight: 700; }
.brand-check-item:has(input:checked) .bc-count { color: var(--orange); }

.results-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.results-count { font-size: .88rem; color: var(--text-dim); }
.results-count strong { color: var(--orange); }
.results-tools { display: flex; align-items: center; gap: 10px; }
.view-toggle { display: flex; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle button { border: none; background: #fff; color: var(--muted); width: 36px; height: 34px; display: flex; align-items: center; justify-content: center; transition: .15s; cursor: pointer; }
.view-toggle button.active { background: var(--orange-soft); color: var(--orange); }
.results-tools .form-select { width: auto; font-size: .84rem; border-radius: var(--radius-sm); border-color: var(--border-strong); }

.breadcrumb { background: none; padding: 0; margin-bottom: 14px; font-size: .82rem; }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--text-dim); }

/* ─── FOOTER ─── */
.site-footer { background: #14141c; color: #9698a8; padding: 44px 0 22px; margin-top: 40px; font-size: .88rem; }
.site-footer h5, .site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 14px; }
.site-footer a { color: #9698a8; transition: .15s; }
.site-footer a:hover { color: var(--orange-light); }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 18px; text-align: center; font-size: .78rem; color: #6b6d7d; }
.footer-credit { margin-top: 6px; font-size: .74rem; color: #55576a; }
.footer-credit a { color: #85879a; font-weight: 600; }
.footer-credit a:hover { color: var(--orange); }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); display: inline-flex; align-items: center; justify-content: center; color: #9698a8 !important; transition: .15s; }
.social-btn:hover { background: var(--orange); color: #fff !important; }

.whatsapp-float { position: fixed; bottom: calc(var(--tabbar-h) + 14px); right: 16px; width: 54px; height: 54px; background: var(--wa) !important; color: #fff !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 27px; box-shadow: 0 6px 20px rgba(37,211,102,.36); z-index: 997; transition: .2s; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff !important; }

/* Alt sekme çubuğu ve yapışkan satın alma çubuğu sadece mobil/tablet genişliğinde anlamlı;
   masaüstünde header zaten tüm menüyü gösteriyor */
@media (min-width: 992px) {
  .bottom-tabbar { display: none; }
  body { padding-bottom: 0 !important; }
  .sticky-buy-bar { bottom: 0; }
  .whatsapp-float { bottom: 22px; }
}

.blog-card { background: var(--surface); border-radius: var(--radius); overflow: hidden; height: 100%; transition: .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card img { width: 100%; height: 165px; object-fit: cover; }
.blog-card .card-body { padding: 14px; }
.blog-card h5 { font-size: .95rem; font-weight: 700; color: var(--text); }

.pagination .page-link { border-radius: var(--radius-sm) !important; margin: 0 3px; border: 1px solid var(--border-strong); background: #fff; color: var(--text-dim); font-size: .85rem; min-width: 36px; text-align: center; font-weight: 600; }
.pagination .page-item.active .page-link { background: var(--orange-grad); border-color: transparent; color: #fff; }

.empty-state { text-align: center; padding: 50px 16px; color: var(--muted); }
.empty-state i { font-size: 2.3rem; display: block; margin-bottom: 10px; opacity: .3; }

.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-bar .trust-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; color: var(--text-dim); }
.trust-bar .trust-item i { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }

@media (max-width: 575.98px) {
  :root { --header-h: 58px; --topbar-h: 28px; }
  .hero-section { padding: 28px 0 26px; }
  .section { padding: 26px 0; }
  .phone-card .card-img-wrap { min-height: 150px; }
  .price-lg { font-size: 1.5rem; }
  .product-info h1 { font-size: 1.15rem; }
  .navbar-brand img { height: 28px; max-width: 120px; }
  .spec-info-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Üst şerit: telefon numarası kalabalık yapıyor, mobilde iki kısa öğe yeterli */
  .top-bar { font-size: .68rem; }
  .top-bar .container { gap: 14px; }
  .top-bar .tb-phone { display: none; }

  /* Yapışkan satın alma çubuğu: ürün adı + fiyat + buton dar ekranda sıkışmasın */
  .sticky-buy-bar { padding: 8px 10px; gap: 8px; }
  .sticky-buy-bar .sb-name { font-size: .66rem; }
  .sticky-buy-bar .sb-price { font-size: .92rem; }
  .sticky-buy-bar .btn-whatsapp { padding: 10px 14px; font-size: .8rem; white-space: nowrap; }

  /* Alt sekme çubuğu etiketleri */
  .bottom-tabbar a { font-size: .62rem; gap: 2px; }
  .bottom-tabbar a i { font-size: 1.1rem; }

  .urgency-chip { font-size: .78rem; padding: 10px 12px; }
}

/* Sekmeli özellik tablosu */
.detail-tabs { background: #fff; border-radius: var(--radius); overflow: hidden; }
.detail-tab-nav { border-bottom: 2px solid var(--border); background: transparent; flex-wrap: nowrap; overflow-x: auto; }
.detail-tab-nav .nav-link { border: none !important; border-radius: 0 !important; color: var(--muted) !important; font-weight: 700 !important; font-size: .88rem !important; padding: 12px 18px !important; white-space: nowrap; background: transparent !important; border-bottom: 2px solid transparent !important; margin-bottom: -2px; }
.detail-tab-nav .nav-link.active { color: var(--orange) !important; border-bottom-color: var(--orange) !important; }
.detail-tab-content { padding: 16px 0 0; color: var(--text-dim); }
.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 12px 4px; vertical-align: middle; }
.spec-table td:first-child { color: var(--muted); font-weight: 600; width: 42%; }
.spec-table td:last-child { font-weight: 700; color: var(--text); }
@media (max-width: 575.98px) { .spec-table td { padding: 10px 4px; font-size: .84rem; } }

/* Marka logoları */
.brand-box-link { display: block; height: 100%; }
.brand-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 104px; padding: 14px 8px; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-name { font-weight: 700; font-size: .86rem; color: var(--text); text-align: center; }
.brand-box:hover .brand-name { color: var(--orange); }

/* ─── Hikayeler ─── */
.stories-bar { background: #fff; padding: 14px 0 12px; border-bottom: 1px solid var(--border); }
.stories-track { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.stories-track::-webkit-scrollbar { display: none; }
.story-item { background: none; border: none; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 68px; cursor: pointer; color: var(--text-dim); }
.story-ring { width: 60px; height: 60px; border-radius: 50%; padding: 3px; background: var(--orange-grad); display: flex; align-items: center; justify-content: center; }
.story-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.story-label { font-size: .68rem; font-weight: 600; max-width: 68px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.story-viewer { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.94); display: flex; align-items: center; justify-content: center; }
.story-viewer[hidden] { display: none !important; }
.story-viewer-inner { position: relative; width: min(420px, 100%); height: min(780px, 100%); background: #000; border-radius: 12px; overflow: hidden; }
.story-viewer-inner img { width: 100%; height: 100%; object-fit: contain; }
.story-progress { position: absolute; top: 10px; left: 10px; right: 10px; height: 3px; background: rgba(255,255,255,.25); border-radius: 2px; z-index: 5; }
.story-progress-bar { height: 100%; width: 0; background: var(--orange); border-radius: 2px; transition: width .05s linear; }
.story-close { position: absolute; top: 18px; right: 12px; z-index: 6; background: none; border: none; color: #fff; font-size: 28px; line-height: 1; }
.story-viewer-title { position: absolute; bottom: 56px; left: 16px; right: 16px; color: #fff; font-weight: 700; font-size: 1rem; text-shadow: 0 1px 4px #000; }
.story-viewer-link { position: absolute; bottom: 16px; left: 16px; right: 16px; text-align: center; background: var(--orange-grad); color: #fff; padding: 10px; border-radius: var(--radius-sm); font-weight: 700; }
.story-nav { position: absolute; top: 0; bottom: 0; width: 40%; border: none; background: transparent; z-index: 4; }
.story-nav-prev { left: 0; }
.story-nav-next { right: 0; }

/* ============================================================
   Genel Bootstrap bileşen geçersiz kılmaları
   ============================================================ */
.bg-white { background: var(--surface) !important; }
.text-dark { color: var(--text) !important; }
.text-muted { color: var(--muted) !important; }
.border { border-color: var(--border) !important; }
.card { background: var(--surface); border: none; border-radius: var(--radius); color: var(--text); }
.card-img-top { background: #fff; }
.form-control, .form-select { background: #fff; border: 1.5px solid var(--border-strong); color: var(--text); border-radius: var(--radius-sm); }
.form-control:focus, .form-select:focus { background: #fff; border-color: var(--orange); color: var(--text); box-shadow: 0 0 0 4px var(--orange-soft); }
.form-control::placeholder { color: var(--muted); }
.form-label { color: var(--text-dim); }
.input-group-text { background: var(--surface); border-color: var(--border-strong); color: var(--muted); }
.btn-primary { background: var(--orange-grad) !important; border: none !important; color: #fff !important; font-weight: 700; border-radius: var(--radius-pill); }
.btn-primary:hover { opacity: .93; color: #fff !important; }
.btn-success { background: var(--wa) !important; border: none !important; color: #fff !important; font-weight: 700; border-radius: var(--radius-pill); }
.btn-success:hover { background: var(--wa-dark) !important; color: #fff !important; }
.btn-outline-secondary { color: var(--text-dim); border-color: var(--border-strong); border-radius: var(--radius-sm); }
.btn-outline-secondary:hover { background: var(--surface); color: var(--text); }
.alert-success { background: var(--success-soft); border: 1px solid rgba(22,163,74,.25); color: #15803d; border-radius: var(--radius-sm); }
.alert-danger { background: var(--danger-soft); border: 1px solid rgba(230,72,58,.25); color: #c0392b; border-radius: var(--radius-sm); }
.service-form { background: var(--surface) !important; border-radius: var(--radius); }

/* ============================================================
   V2 ürün kataloğu ve detay sayfası
   ============================================================ */
.catalog-hero { padding: 30px 0 24px; background: linear-gradient(135deg, #fff7f0 0%, #fff 55%, #f2f7ff 100%); border-bottom: 1px solid var(--border); }
.catalog-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 850; letter-spacing: -.04em; }
.catalog-count { min-width: 105px; padding: 12px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; }
.catalog-count strong, .catalog-count span { display: block; }
.catalog-count strong { color: var(--orange); font-size: 1.4rem; line-height: 1; }
.catalog-count span { margin-top: 3px; color: var(--muted); font-size: .72rem; }
.card-badges { position: absolute; inset: 10px 10px auto; z-index: 2; display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.badge-type { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border: 1px solid rgba(245,116,10,.18); border-radius: var(--radius-pill); color: var(--orange-dark); background: rgba(255,255,255,.92); font-size: .64rem; font-weight: 800; box-shadow: 0 3px 12px rgba(23,24,43,.06); }
.badge-type.large { padding: 7px 12px; font-size: .72rem; }
.card-badges .badge-ikinci, .card-badges .badge-sold, .card-badges .badge-discount { position: static; }
.phone-card .card-brand { color: var(--muted); font-size: .66rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; }
.phone-card .card-meta { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.phone-card .imei-ready { color: #14935f; font-weight: 700; }
.phone-card .card-actions { display: flex; align-items: center; gap: 8px; padding: 10px 14px 14px; background: var(--surface); }
.phone-card .card-actions .wa-mini { width: 38px; height: 36px; padding: 0; justify-content: center; border-radius: 10px; }
.results-grid.is-list .phone-card .card-actions { grid-column: 2; grid-row: 2; }
.live-price { color: var(--price); font-size: .8rem; font-weight: 800; }

.brand-filter-list { max-height: 260px; overflow-y: auto; display: grid; gap: 3px; }
.brand-filter-item { display: flex; align-items: center; gap: 9px; padding: 7px 8px; border-radius: 9px; color: var(--text-dim); font-size: .84rem; cursor: pointer; }
.brand-filter-item:hover { background: #fff; }
.brand-filter-item input { accent-color: var(--orange); }
.brand-filter-item .bc-name { flex: 1; }
.brand-filter-item .bc-count { min-width: 25px; padding: 1px 7px; border-radius: 999px; background: #fff; color: var(--muted); font-size: .68rem; text-align: center; }

.product-detail-section { padding: 24px 0 36px; background: linear-gradient(180deg, #fff 0%, #fafbfe 100%); }
.product-detail-shell { padding: clamp(18px, 3vw, 34px); background: #fff; border: 1px solid var(--border); border-radius: 28px; box-shadow: 0 24px 70px rgba(23,24,43,.08); }
.gallery-main { position: relative; min-height: 430px; display: grid; place-items: center; overflow: hidden; border-radius: 22px; background: linear-gradient(145deg, #fff, #f7f8fb); }
.product-gallery #mainGalleryImg { width: 100%; height: 430px; max-height: none; padding: 20px; object-fit: contain; background: transparent; }
.gallery-counter { position: absolute; right: 14px; bottom: 14px; padding: 5px 10px; border-radius: 999px; color: #fff; background: rgba(20,25,43,.7); font-size: .7rem; font-weight: 700; backdrop-filter: blur(8px); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: rgba(255,255,255,.9); color: var(--text); box-shadow: var(--shadow-sm); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.product-thumbs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { flex: 0 0 auto; padding: 0; border: 0; border-radius: 12px; background: transparent; }
.gallery-thumb img { margin: 0; }
.gallery-thumb.active img { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.product-summary h1 { margin: 8px 0 10px; color: var(--text); font-size: clamp(1.55rem, 3vw, 2.35rem); font-weight: 850; line-height: 1.17; letter-spacing: -.04em; }
.product-brand-line { color: var(--muted); font-size: .8rem; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.product-price-box { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stock-live { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 999px; color: #12804f; background: #eafaf2; font-size: .68rem; font-weight: 800; }
.product-quick-specs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; margin: 18px 0; }
.product-quick-specs > div { padding: 11px 13px; border: 1px solid var(--border); border-radius: 13px; background: #fafbfe; }
.product-quick-specs span, .product-quick-specs strong { display: block; }
.product-quick-specs span { color: var(--muted); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.product-quick-specs strong { margin-top: 3px; font-size: .84rem; }
.imei-info-box { display: flex; align-items: center; gap: 12px; margin: 16px 0; padding: 14px; border: 1px solid #cceede; border-radius: 15px; background: #f3fff9; }
.imei-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: #20a66a; font-size: 1.15rem; }
.imei-info-box span, .imei-info-box strong, .imei-info-box small { display: block; }
.imei-info-box span { color: #5f7d6d; font-size: .67rem; font-weight: 750; text-transform: uppercase; }
.imei-info-box strong { font-size: .92rem; }
.imei-info-box small { color: #47705a; }
.product-wa-button { justify-content: flex-start; padding: 14px 18px; border-radius: 15px; }
.product-wa-button > i { font-size: 1.4rem; }
.product-wa-button span { display: block; text-align: left; }
.product-wa-button small { display: block; opacity: .75; font-size: .68rem; font-weight: 500; }
.sold-notice { padding: 14px; border-radius: 14px; background: #f1f2f5; color: var(--muted); text-align: center; font-weight: 700; }

.product-info-section { background: #f6f7fa; }
.content-page-card { padding: clamp(22px, 4vw, 38px); border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.content-page-card h1 { margin-bottom: 22px; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 850; letter-spacing: -.04em; }
.content-page-card h2 { margin-bottom: 20px; font-size: 1.15rem; font-weight: 850; }
.content-page-body, .product-copy { color: var(--text-dim); line-height: 1.85; }
.product-description-card { min-height: 100%; }
.included-box { display: flex; gap: 13px; margin-top: 24px; padding: 16px; border-radius: 15px; background: #fff7f0; color: var(--text-dim); }
.included-box i { color: var(--orange); font-size: 1.3rem; }
.included-box p { margin: 3px 0 0; }
.video-link-card { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 15px; border: 1px solid var(--border); border-radius: 15px; color: var(--text); font-weight: 750; }
.video-link-card:hover { color: var(--orange); border-color: rgba(245,116,10,.4); }
.video-link-card i:first-child { color: #e53434; font-size: 1.35rem; }
.video-link-card span { flex: 1; }
.product-spec-list { margin: 0; }
.product-spec-list > div { display: grid; grid-template-columns: minmax(90px,.8fr) 1.2fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.product-spec-list > div:last-child { border-bottom: 0; }
.product-spec-list dt { color: var(--muted); font-size: .75rem; font-weight: 650; }
.product-spec-list dd { margin: 0; color: var(--text); font-size: .82rem; font-weight: 750; text-align: right; }
.technical-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: .84rem; line-height: 1.7; }
.popular-products-section { background: linear-gradient(180deg, #f8fbff, #fff); }

@media (max-width: 991.98px) {
    .gallery-main, .product-gallery #mainGalleryImg { min-height: 360px; height: 360px; }
    .filter-card { position: static; }
}
@media (max-width: 575.98px) {
    .catalog-hero { padding-top: 20px; }
    .product-detail-shell { padding: 12px; border-radius: 20px; }
    .gallery-main, .product-gallery #mainGalleryImg { min-height: 310px; height: 310px; }
    .product-summary { padding: 4px; }
    .product-quick-specs { gap: 7px; }
    .product-quick-specs > div { padding: 9px 10px; }
    .content-page-card { border-radius: 18px; }
    .phone-card .card-meta { align-items: flex-start; flex-direction: column; }
}

/* ============================================================
   V2.1 — Baştan aşağı mağaza deneyimi
   Ürün sayfasındaki faydalı alışveriş kalıplarının özgün yorumu
   ============================================================ */
:root {
  --bg-alt: #f6f7fb;
  --surface: #fff;
  --surface-2: #f0f2f6;
  --border: #e7e9ef;
  --border-strong: #d9dde6;
  --text: #151827;
  --text-dim: #52586a;
  --muted: #8b91a2;
  --orange-soft: rgba(245,116,10,.11);
  --shadow-sm: 0 8px 24px rgba(20, 25, 45, .055);
  --shadow-md: 0 18px 50px rgba(20, 25, 45, .1);
  --shadow-lg: 0 30px 80px rgba(20, 25, 45, .14);
  --radius: 18px;
  --radius-sm: 12px;
}

@supports (color: color-mix(in srgb, #000 50%, #fff)) {
  :root { --orange-soft: color-mix(in srgb, var(--orange) 11%, transparent); }
}

html { scroll-padding-top: 150px; }
body {
  padding-top: 0;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}
.container { max-width: 1320px; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 3000; padding: 10px 16px; border-radius: 10px; background: #111522; color: #fff; transition: top .2s; }
.skip-link:focus { top: 12px; color: #fff; }

/* Yeni üst alan ve menü */
.top-bar {
  position: relative; inset: auto; z-index: 1002;
  height: 38px; background: #10131d;
}
.top-bar .container { justify-content: space-between; gap: 20px; }
.top-announcement, .top-links { display: flex; align-items: center; gap: 18px; }
.top-announcement { font-weight: 700; letter-spacing: .01em; }
.top-announcement i { color: #ffc56f; }
.top-links a { display: inline-flex; align-items: center; gap: 5px; color: #d8dae2; }
.top-links i { margin: 0; color: #ffc56f; }

.site-header {
  position: sticky; top: 0; left: auto; right: auto; z-index: 1000;
  height: auto; background: rgba(255,255,255,.96) !important;
  border-bottom: 0; backdrop-filter: blur(18px);
  transition: box-shadow .2s, background .2s;
}
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(20,25,45,.09); background: rgba(255,255,255,.985) !important; }
.header-primary { border-bottom: 1px solid var(--border); }
.header-primary > .container { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.navbar-brand { flex: 0 0 auto; gap: 10px; font-size: 1.18rem; font-weight: 850; letter-spacing: -.035em; }
.navbar-brand.has-site-logo { min-width: 160px; height: 64px; }
.navbar-brand .site-logo { display: block; width: auto; height: 56px; max-width: 260px; object-fit: contain; object-position: left center; }
.brand-mark { width: 40px; height: 40px; display: inline-grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--orange), #ff9c43); box-shadow: 0 8px 20px rgba(245,116,10,.28); box-shadow: 0 8px 20px color-mix(in srgb, var(--orange) 28%, transparent); }
.brand-mark i { color: #fff; background: transparent; width: auto; height: auto; }

.header-search { flex: 1 1 520px; max-width: 650px; margin: 0 auto; }
.search-form .search-leading { position: absolute; z-index: 2; left: 18px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 1rem; }
.header-search .form-control, .mobile-search-row .form-control {
  height: 50px; padding: 0 90px 0 48px; border: 1px solid #e2e4ea;
  border-radius: 15px; background: #f6f7f9; font-size: .9rem;
}
.header-search .btn { right: 6px; top: 6px; bottom: 6px; width: auto; padding: 0 18px; border-radius: 10px; background: #fff; color: var(--text); font-size: .78rem; font-weight: 800; box-shadow: 0 2px 8px rgba(20,25,45,.05); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-action { display: flex; align-items: center; gap: 9px; }
.header-action-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--orange); background: var(--orange-soft); }
.header-action small, .header-action strong { display: block; line-height: 1.2; }
.header-action small { color: var(--muted); font-size: .66rem; }
.header-action strong { margin-top: 2px; font-size: .78rem; }
.header-icon-action { min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 0 14px; border: 1px solid #d6efdf; border-radius: 13px; color: #13844f; background: #f1fff7; font-size: .78rem; font-weight: 800; }
.header-icon-action:hover { color: #0b6d3f; border-color: #b9dfc8; }

.header-nav { border-bottom: 1px solid var(--border); }
.header-nav .navbar-nav { width: 100%; display: flex; flex-direction: row; align-items: center; gap: 2px; }
.header-nav .nav-link { display: inline-flex; align-items: center; gap: 7px; padding: 13px 14px !important; font-size: .78rem !important; font-weight: 750 !important; }
.header-nav .nav-link::after { left: 14px; right: 14px; bottom: 0; }
.header-nav .nav-service { margin-left: auto; }
.header-nav .nav-service .nav-link { color: var(--orange) !important; }
.mobile-search-row { padding: 9px 0 10px; border-bottom: 1px solid var(--border); }
.mobile-search-row .search-form { margin: 0; max-width: none; }
.mobile-search-row .form-control { height: 44px; border-radius: 13px; }
.mobile-search-row .btn { right: 5px; top: 5px; bottom: 5px; width: 34px; background: var(--orange); color: #fff; }
.live-results { display: block; border-radius: 16px; box-shadow: var(--shadow-lg); }
.live-results[hidden] { display: none; }

/* Ana sayfa */
.home-hero { position: relative; overflow: hidden; padding: 64px 0 70px; background: radial-gradient(circle at 76% 32%, rgba(255,160,77,.2), transparent 27%), linear-gradient(135deg, #fff8f1 0%, #fff 48%, #f3f7ff 100%); border-bottom: 1px solid var(--border); }
.home-hero::before { content: ''; position: absolute; left: -130px; bottom: -190px; width: 430px; height: 430px; border-radius: 50%; background: rgba(47,143,214,.07); filter: blur(2px); }
.home-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(430px,.98fr); gap: clamp(42px,7vw,96px); align-items: center; }
.hero-copy h1 { max-width: 660px; margin: 0; font-size: clamp(2.45rem,5.2vw,4.75rem); font-weight: 900; line-height: .98; letter-spacing: -.065em; }
.hero-copy h1 span { color: var(--orange); }
.hero-copy > p { max-width: 610px; margin: 22px 0 0; color: var(--text-dim); font-size: clamp(1rem,1.6vw,1.16rem); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-hero { min-height: 50px; padding: 0 22px; border-radius: 14px; box-shadow: 0 14px 32px rgba(245,116,10,.28); box-shadow: 0 14px 32px color-mix(in srgb, var(--orange) 28%, transparent); }
.hero-support { min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 19px; border: 1px solid #cfe8d9; border-radius: 14px; color: #117c4a; background: rgba(255,255,255,.76); font-weight: 800; font-size: .86rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: var(--text-dim); font-size: .76rem; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 5px; }
.hero-points i { color: #17945b; }
.hero-showcase { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-orbit { position: absolute; border: 1px dashed rgba(245,116,10,.25); border-radius: 50%; }
.hero-orbit-one { width: 480px; height: 480px; }
.hero-orbit-two { width: 350px; height: 350px; border-color: rgba(47,143,214,.2); }
.hero-product-card { position: relative; z-index: 2; width: min(380px,82%); padding: 16px; border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: 0 35px 80px rgba(35,42,72,.17); backdrop-filter: blur(18px); transition: transform .25s, box-shadow .25s; }
.hero-product-card:hover { transform: translateY(-7px) rotate(-.5deg); box-shadow: 0 42px 90px rgba(35,42,72,.2); }
.hero-product-top { display: flex; justify-content: space-between; padding: 5px 5px 12px; color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.hero-product-card > img { width: 100%; height: 300px; object-fit: contain; border-radius: 22px; background: #f7f8fa; }
.hero-product-info { padding: 16px 7px 6px; }
.hero-product-info small, .hero-product-info strong, .hero-product-info span { display: block; }
.hero-product-info small { color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.hero-product-info strong { margin: 4px 0 7px; font-size: 1rem; }
.hero-product-info span { color: var(--price); font-size: 1.32rem; font-weight: 900; }
.hero-product-placeholder { position: relative; z-index: 2; width: 340px; min-height: 360px; display: grid; place-items: center; align-content: center; gap: 16px; padding: 32px; border-radius: 30px; background: #fff; box-shadow: var(--shadow-lg); text-align: center; }
.hero-product-placeholder i { font-size: 5rem; color: var(--orange); }
.hero-float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); backdrop-filter: blur(15px); }
.hero-float-card > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--orange); }
.hero-float-card strong, .hero-float-card small { display: block; line-height: 1.2; }
.hero-float-card strong { font-size: .75rem; }
.hero-float-card small { margin-top: 3px; color: var(--muted); font-size: .63rem; }
.hero-float-stock { left: 0; top: 92px; }
.hero-float-support { right: 0; bottom: 90px; }
.hero-float-support > i { background: var(--wa); }

.home-categories { padding: 34px 0 16px; }
.section-header.compact { margin-bottom: 14px; }
.section-kicker { display: block; margin-bottom: 4px; color: var(--orange); font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.section-title { display: block; font-size: clamp(1.35rem,2vw,1.75rem); font-weight: 900; letter-spacing: -.035em; }
.section-title::before { display: none; }
.section-link { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; }
.category-rail { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.category-tile { min-height: 92px; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--border); border-radius: 18px; background: #fff; transition: .2s; }
.category-tile:hover { transform: translateY(-3px); border-color: #e3b78f; border-color: color-mix(in srgb, var(--orange) 35%, var(--border)); box-shadow: var(--shadow-sm); color: var(--text); }
.category-icon { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--orange); background: var(--orange-soft); font-size: 1.25rem; }
.category-tile.is-all .category-icon { color: #fff; background: var(--orange); }
.category-tile strong, .category-tile small { display: block; }
.category-tile strong { font-size: .86rem; }
.category-tile small { margin-top: 3px; color: var(--muted); font-size: .66rem; }
.tile-arrow { margin-left: auto; color: var(--muted); }

.home-trust-strip { padding: 22px 0 36px; }
.home-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.home-trust-grid > div { display: flex; align-items: center; gap: 12px; padding: 19px 22px; border-right: 1px solid var(--border); }
.home-trust-grid > div:last-child { border: 0; }
.home-trust-grid > div > span { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--orange); background: var(--orange-soft); font-size: 1.1rem; }
.home-trust-grid p { margin: 0; }
.home-trust-grid strong, .home-trust-grid small { display: block; }
.home-trust-grid strong { font-size: .79rem; }
.home-trust-grid small { margin-top: 3px; color: var(--muted); font-size: .65rem; line-height: 1.35; }
.section { padding: 54px 0; }
.section-soft, .section-white { background: #f6f7fa; }
.product-section-home .section-header, .brand-section-home .section-header { margin-bottom: 24px; }

/* Ürün kartı */
.phone-card { border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(20,25,45,.035); }
.phone-card:hover { border-color: #d8dce4; transform: translateY(-5px); box-shadow: 0 22px 45px rgba(20,25,45,.1); }
.phone-card .card-img-wrap { min-height: 240px; padding: 26px 20px 14px; background: linear-gradient(180deg,#fbfbfc,#f5f6f8); aspect-ratio: 1/.94; }
.phone-card .card-img-wrap img { max-width: 88%; max-height: 92%; }
.phone-card:hover .card-img-wrap img { transform: scale(1.035); }
.card-badges { inset: 12px auto auto 12px; max-width: calc(100% - 52px); }
.card-badges > span { position: static; padding: 5px 8px; border-radius: 8px; font-size: .6rem; letter-spacing: .01em; box-shadow: none; }
.card-type-icon { position: absolute; z-index: 2; right: 12px; top: 12px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.9); border-radius: 10px; color: var(--text-dim); background: rgba(255,255,255,.86); backdrop-filter: blur(10px); }
.phone-card .card-body { padding: 15px 16px 12px; background: #fff; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.phone-card .card-brand { margin: 0; color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .075em; }
.phone-card .imei-ready { padding: 3px 7px; border-radius: 7px; color: #19724a; background: #eafaf2; font-size: .58rem; }
.phone-card .card-title { margin: 6px 0 11px; min-height: 2.7em; font-size: .92rem; font-weight: 780; line-height: 1.38; }
.phone-card .specs-row { flex-wrap: nowrap; overflow: hidden; margin-bottom: 12px; }
.phone-card .spec-chip { max-width: 48%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 4px 7px; border-color: #e8eaf0; background: #f7f8fa; font-size: .63rem; }
.phone-card .price { font-size: 1.22rem; font-weight: 900; letter-spacing: -.035em; }
.phone-card .old-price { font-size: .71rem; }
.card-stock-row { display: flex; justify-content: space-between; gap: 8px; margin-top: 8px; color: var(--muted); font-size: .61rem; font-weight: 700; }
.card-stock-row span { display: inline-flex; align-items: center; gap: 4px; }
.card-stock-row .stock-in { color: #178354; }
.card-stock-row .stock-out { color: var(--danger); }
.phone-card .card-actions { padding: 0 16px 16px; border-top: 0; background: #fff; }
.phone-card .btn-detail { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 39px; border: 1px solid rgba(245,116,10,.2); border-color: color-mix(in srgb, var(--orange) 20%, transparent); border-radius: 11px; }
.phone-card .wa-mini { flex: 0 0 40px; height: 39px; border-radius: 11px; }
.phone-card.is-sold { opacity: .72; }
.results-grid.is-list .phone-card .card-actions { grid-column: 2; grid-row: 2; }

.brand-rail { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 12px; }
.brand-box { min-height: 118px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.brand-box:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.brand-logo { width: 52px; height: 52px; }
.blog-card { border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.blog-card img { height: 205px; }
.blog-card .card-body { padding: 20px; }
.blog-kicker { color: var(--orange); font-size: .64rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h5 { margin: 6px 0 9px; font-size: 1rem; line-height: 1.4; }
.blog-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--orange); font-size: .72rem; font-weight: 800; }

/* Ürün detay */
.product-detail-section { padding: 24px 0 58px; background: #f7f8fb; }
.product-breadcrumb { display: flex; align-items: center; gap: 8px; min-height: 38px; margin-bottom: 18px; color: var(--muted); font-size: .72rem; }
.product-breadcrumb a:hover { color: var(--orange); }
.product-breadcrumb i { font-size: .58rem; }
.product-breadcrumb span { max-width: 42ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-dim); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(440px,.97fr); gap: clamp(34px,5vw,72px); align-items: start; padding: clamp(18px,2.5vw,34px); border: 1px solid var(--border); border-radius: 30px; background: #fff; box-shadow: 0 22px 65px rgba(20,25,45,.075); }
.product-gallery-column { position: sticky; top: 150px; min-width: 0; }
.product-gallery { border-radius: 24px; overflow: visible; }
.gallery-main { min-height: 560px; height: 560px; border: 1px solid #eceef3; border-radius: 24px; background: linear-gradient(145deg,#fcfcfd,#f4f5f8); }
.product-gallery #mainGalleryImg { width: 100%; height: 560px; min-height: 560px; padding: 34px; object-fit: contain; }
.gallery-badges { position: absolute; z-index: 3; top: 15px; right: 15px; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.gallery-badge { max-width: 190px; padding: 6px 10px; border-radius: 9px; color: #fff; font-size: .66rem; font-weight: 850; line-height: 1.2; text-transform: uppercase; letter-spacing: .025em; box-shadow: 0 8px 18px rgba(20,25,45,.13); }
.gallery-badge.is-5g { background: #248be3; }
.gallery-badge.is-imei { background: #ba2dbf; }
.gallery-badge.is-discount { background: var(--orange); }
.gallery-counter { right: 14px; bottom: 14px; padding: 6px 10px; background: rgba(21,24,39,.75); }
.gallery-nav { width: 44px; height: 44px; transition: transform .2s, border-color .2s; }
.gallery-nav:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-50%) scale(1.05); }
.product-thumbs { display: flex; flex-wrap: nowrap; gap: 9px; margin-top: 13px; overflow-x: auto; scrollbar-width: thin; }
.gallery-thumb { flex: 0 0 76px; height: 76px; border: 1px solid var(--border) !important; border-radius: 13px; background: #fff; overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; padding: 7px; border: 0; object-fit: contain; }
.gallery-thumb.active { border-color: var(--orange) !important; box-shadow: 0 0 0 3px var(--orange-soft); }
.gallery-thumb.active img { box-shadow: none; }
.gallery-dots { display: none; }

.product-summary { min-width: 0; padding: 5px 0; }
.product-summary-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-brand-line { font-size: .7rem; font-weight: 850; letter-spacing: .09em; }
.share-product { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid var(--border); border-radius: 10px; color: var(--text-dim); background: #fff; font-size: .7rem; font-weight: 750; }
.share-product:hover { color: var(--orange); border-color: #e3b78f; border-color: color-mix(in srgb, var(--orange) 35%, var(--border)); }
.product-summary h1 { margin: 10px 0 9px; font-size: clamp(1.7rem,3.2vw,2.65rem); font-weight: 900; line-height: 1.1; letter-spacing: -.055em; }
.product-meta-row { display: flex; flex-wrap: wrap; gap: 7px 15px; color: var(--muted); font-size: .68rem; }
.product-meta-row span { display: inline-flex; align-items: center; gap: 5px; }
.product-condition { color: var(--orange); font-weight: 800; }
.product-price-box { justify-content: space-between; padding: 19px 0 17px; margin-top: 15px; }
.product-price-box > div { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.price-lg { font-size: clamp(1.9rem,3.2vw,2.55rem); font-weight: 950; letter-spacing: -.055em; }
.old-price-lg { font-size: .9rem; }
.discount-badge { padding: 6px 10px; border-radius: 9px; font-size: .67rem; }
.delivery-promise { display: flex; align-items: center; gap: 11px; margin: 16px 0; padding: 13px; border: 1px solid #f1dfd0; border-radius: 15px; background: #fff8f2; }
.delivery-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: var(--orange); font-size: 1.1rem; }
.delivery-promise > span:nth-child(2) { min-width: 0; flex: 1; }
.delivery-promise strong, .delivery-promise small { display: block; }
.delivery-promise strong { font-size: .78rem; }
.delivery-promise small { margin-top: 3px; color: var(--muted); font-size: .64rem; }
.delivery-tag { padding: 5px 8px; border-radius: 8px; color: #167b4e; background: #e8f8f0; font-size: .61rem; font-weight: 850; }
.product-option-block { margin-top: 18px; }
.option-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 9px; }
.option-heading span { font-size: .78rem; font-weight: 850; }
.option-heading small { color: var(--muted); font-size: .62rem; }
.product-highlight-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.product-highlight-grid > div { min-width: 0; display: flex; align-items: center; gap: 9px; padding: 10px 11px; border: 1px solid var(--border); border-radius: 13px; background: #fafbfc; }
.product-highlight-grid > div > i { flex: 0 0 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: var(--orange); background: var(--orange-soft); }
.product-highlight-grid span { min-width: 0; }
.product-highlight-grid small, .product-highlight-grid strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-highlight-grid small { color: var(--muted); font-size: .58rem; }
.product-highlight-grid strong { margin-top: 2px; font-size: .7rem; }
.selected-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 14px; }
.selected-options > div { padding: 10px; border: 1px solid var(--border); border-radius: 12px; }
.selected-options span, .selected-options strong { display: block; }
.selected-options span { color: var(--muted); font-size: .57rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 750; }
.selected-options strong { margin-top: 4px; font-size: .7rem; }
.option-color-dot { display: inline-block; width: 9px; height: 9px; margin-right: 5px; border: 2px solid #ddd; border-radius: 50%; background: #20222b; }
.registration-card { margin-top: 14px; border: 1px solid #cdebdc; border-radius: 14px; background: #f5fff9; overflow: hidden; }
.registration-card summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; cursor: pointer; list-style: none; color: #166d46; font-size: .75rem; }
.registration-card summary::-webkit-details-marker { display: none; }
.registration-card summary span { display: flex; align-items: center; gap: 8px; }
.registration-card[open] summary > i { transform: rotate(180deg); }
.registration-body { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 0 14px 13px; }
.registration-body > div { padding: 9px 10px; border-radius: 10px; background: #fff; }
.registration-body span, .registration-body strong { display: block; }
.registration-body span { color: #648373; font-size: .57rem; text-transform: uppercase; }
.registration-body strong { margin-top: 2px; font-size: .69rem; overflow-wrap: anywhere; }
.registration-body p { grid-column: 1/-1; margin: 1px 0 0; color: #557666; font-size: .62rem; line-height: 1.5; }
.purchase-actions { display: flex; align-items: stretch; gap: 9px; margin-top: 16px; }
.product-wa-button { flex: 1; min-height: 57px; justify-content: flex-start; border-radius: 14px; box-shadow: 0 12px 27px rgba(37,211,102,.22); }
.product-wa-button > i:last-child { margin-left: auto; font-size: .9rem; }
.product-wa-button span { font-size: .82rem; }
.product-wa-button small { margin-top: 2px; }
.purchase-actions .btn-call { width: auto; flex: 0 0 auto; padding: 0 15px; border-radius: 14px; font-size: .72rem; }
.sold-notice { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; }
.purchase-trust-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; margin-top: 13px; }
.purchase-trust-grid > div { min-width: 0; display: flex; align-items: center; gap: 8px; padding: 9px 10px; border: 1px solid var(--border); border-radius: 11px; }
.purchase-trust-grid > div > i { flex: 0 0 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--orange); background: var(--orange-soft); }
.purchase-trust-grid span { min-width: 0; }
.purchase-trust-grid small, .purchase-trust-grid strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.purchase-trust-grid small { color: var(--muted); font-size: .55rem; }
.purchase-trust-grid strong { font-size: .64rem; }

.product-content-section { padding: 58px 0; background: #fff; }
.product-detail-tabs { border: 1px solid var(--border); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.product-tab-nav { display: flex; gap: 0; padding: 0 22px; border-bottom: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.product-tab-nav::-webkit-scrollbar { display: none; }
.product-tab-nav button { position: relative; display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; min-height: 62px; padding: 0 21px; border: 0; color: var(--muted); background: transparent; font-size: .77rem; font-weight: 800; }
.product-tab-nav button::after { content: ''; position: absolute; left: 21px; right: 21px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--orange); transform: scaleX(0); transition: transform .2s; }
.product-tab-nav button.active { color: var(--orange); }
.product-tab-nav button.active::after { transform: scaleX(1); }
.product-tab-panel { padding: clamp(26px,4vw,48px); }
.product-tab-panel[hidden] { display: none; }
.tab-content-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(280px,.45fr); gap: 50px; }
.product-copy-wrap h2, .specification-panel-head h2, .imei-explainer h2 { margin: 0 0 18px; font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 900; letter-spacing: -.045em; }
.product-copy { max-width: 860px; color: var(--text-dim); font-size: .91rem; line-height: 1.9; }
.technical-note { display: grid; gap: 6px; margin-top: 26px; padding: 18px; border: 0; border-radius: 15px; background: #f6f7fa; }
.product-side-cards { display: grid; align-content: start; gap: 10px; }
.info-side-card { display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--border); border-radius: 15px; }
.info-side-card > i:first-child { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: var(--orange); background: var(--orange-soft); }
.info-side-card strong, .info-side-card p { display: block; margin: 0; }
.info-side-card strong { font-size: .75rem; }
.info-side-card p { margin-top: 3px; color: var(--muted); font-size: .65rem; }
.info-side-card.video > i:first-child { color: #fff; background: #e73e3e; }
.info-side-card.video > i:last-child { margin-left: auto; color: var(--muted); }
.specification-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.specification-panel-head > span { color: var(--muted); font-size: .7rem; font-weight: 750; }
.modern-spec-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 30px; margin: 0; }
.modern-spec-list > div { display: grid; grid-template-columns: minmax(110px,.8fr) 1.2fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.modern-spec-list dt { color: var(--muted); font-size: .72rem; font-weight: 700; }
.modern-spec-list dd { margin: 0; font-size: .76rem; font-weight: 800; text-align: right; }
.service-info-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.service-info-grid > div { display: flex; align-items: flex-start; gap: 14px; padding: 21px; border: 1px solid var(--border); border-radius: 17px; background: #fafbfc; }
.service-info-grid > div > i { flex: 0 0 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--orange); font-size: 1.1rem; }
.service-info-grid strong { font-size: .82rem; }
.service-info-grid p { margin: 6px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.6; }
.imei-explainer { display: flex; align-items: flex-start; gap: 22px; max-width: 900px; }
.imei-explainer-icon { flex: 0 0 70px; height: 70px; display: grid; place-items: center; border-radius: 20px; color: #fff; background: #1a9b65; font-size: 1.8rem; }
.imei-explainer p { color: var(--text-dim); line-height: 1.8; }
.related-products-section { background: #f6f7fa; }
.sticky-buy-bar { display: none; }

/* Alt güven alanı ve footer */
.pre-footer-trust { padding: 26px 0; border-top: 1px solid var(--border); background: #fff; }
.pre-footer-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.pre-footer-grid > div { display: flex; align-items: center; gap: 11px; padding: 5px 22px; border-right: 1px solid var(--border); }
.pre-footer-grid > div:first-child { padding-left: 0; }
.pre-footer-grid > div:last-child { padding-right: 0; border: 0; }
.pre-footer-grid i { color: var(--orange); font-size: 1.28rem; }
.pre-footer-grid strong, .pre-footer-grid small { display: block; }
.pre-footer-grid strong { font-size: .73rem; }
.pre-footer-grid small { margin-top: 2px; color: var(--muted); font-size: .61rem; }
.site-footer { margin: 0; padding: 58px 0 22px; background: #11141e; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: 55px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff !important; font-size: 1.05rem; font-weight: 850; }
.footer-brand .brand-mark { width: 36px; height: 36px; border-radius: 11px; }
.footer-about p { max-width: 410px; margin: 18px 0; color: #9ba0b1; line-height: 1.75; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; color: #fff; }
.footer-socials a:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.site-footer h3 { margin-bottom: 17px; color: #fff; font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .075em; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer a, .footer-contact div { color: #9ba0b1; font-size: .76rem; }
.footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-contact > a, .footer-contact > div { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact i { color: var(--orange-light); }
.site-footer .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; text-align: left; }
.whatsapp-float { right: 22px; bottom: 22px; width: auto; height: 50px; gap: 8px; padding: 0 17px; border-radius: 15px; font-size: 1.25rem; }
.whatsapp-float span { font-size: .72rem; font-weight: 850; }

@media (min-width: 992px) {
  .header-nav .navbar-collapse { display: flex !important; }
  .bottom-tabbar { display: none !important; }
  body { padding-bottom: 0 !important; }
}

@media (max-width: 1199.98px) {
  .header-primary > .container { gap: 18px; }
  .header-search { flex-basis: 430px; }
  .header-nav .nav-link { padding-left: 10px !important; padding-right: 10px !important; }
  .home-hero-grid { grid-template-columns: minmax(0,1fr) minmax(380px,.85fr); gap: 42px; }
  .hero-float-stock { left: -14px; }
  .hero-float-support { right: -6px; }
  .product-detail-grid { grid-template-columns: minmax(0,1fr) minmax(390px,.92fr); gap: 35px; }
  .gallery-main, .product-gallery #mainGalleryImg { min-height: 500px; height: 500px; }
}

@media (max-width: 991.98px) {
  :root { --tabbar-h: 64px; }
  body { padding-bottom: var(--tabbar-h); }
  .top-bar { height: 32px; }
  .top-bar .container { justify-content: center; }
  .top-links { display: none; }
  .header-primary > .container { min-height: 62px; gap: 12px; }
  .navbar-toggler { order: 0; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border-radius: 12px; background: #f4f5f7; }
  .navbar-brand { order: 1; margin: 0 auto; font-size: .95rem; }
  .navbar-brand.has-site-logo { min-width: 0; width: min(190px, calc(100vw - 126px)); height: 50px; justify-content: center; }
  .navbar-brand .site-logo { width: auto; height: 44px; max-width: 100%; object-position: center; }
  .navbar-brand .brand-mark { width: 34px; height: 34px; }
  .header-actions { order: 2; margin: 0; }
  .header-icon-action { width: 40px; min-height: 40px; justify-content: center; padding: 0; font-size: 1.05rem; }
  .header-nav { border: 0; }
  .header-nav .container { padding: 0; }
  .header-nav .navbar-collapse { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 138px); padding: 8px 18px 20px; overflow-y: auto; border: 0; border-top: 1px solid var(--border); background: #fff !important; box-shadow: 0 22px 35px rgba(20,25,45,.12); }
  .header-nav .navbar-nav { flex-direction: column; align-items: stretch; }
  .header-nav .nav-service { margin-left: 0; }
  .header-nav .nav-link { width: 100%; padding: 12px 4px !important; border-bottom: 1px solid var(--border); }
  .home-hero { padding: 48px 0; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-showcase { min-height: 440px; }
  .hero-product-card { width: min(360px,78%); }
  .hero-product-card > img { height: 255px; }
  .hero-orbit-one { width: 420px; height: 420px; }
  .hero-orbit-two { width: 310px; height: 310px; }
  .category-rail { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-trust-grid { grid-template-columns: repeat(2,1fr); }
  .home-trust-grid > div:nth-child(2) { border-right: 0; }
  .home-trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .brand-rail { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .product-detail-grid { grid-template-columns: 1fr; padding: 20px; }
  .product-gallery-column { position: static; }
  .gallery-main, .product-gallery #mainGalleryImg { min-height: 520px; height: 520px; }
  .product-summary { padding: 6px 6px 0; }
  .tab-content-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-side-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pre-footer-grid { grid-template-columns: repeat(2,1fr); gap: 18px 0; }
  .pre-footer-grid > div:nth-child(2) { border-right: 0; }
  .pre-footer-grid > div:nth-child(3) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; gap: 36px; }
  .footer-contact { grid-column: 1/-1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); grid-template-columns: repeat(3,1fr); }
  .sticky-buy-bar { display: flex; bottom: var(--tabbar-h); z-index: 999; padding: 9px 12px; }
  .sticky-buy-bar .btn-whatsapp { min-height: 44px; padding: 0 17px; border-radius: 12px; }
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 24px; }
  .top-announcement { font-size: .68rem; }
  .navbar-brand > span:last-child { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .home-hero { padding: 38px 0 44px; }
  .hero-copy h1 { font-size: clamp(2.25rem,12vw,3.2rem); }
  .hero-copy > p { margin-top: 17px; font-size: .92rem; }
  .hero-eyebrow { margin-bottom: 12px; font-size: .61rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions > a { width: 100%; justify-content: center; }
  .hero-points { gap: 7px 12px; font-size: .66rem; }
  .hero-showcase { min-height: 365px; }
  .hero-product-card { width: 82%; padding: 11px; border-radius: 23px; }
  .hero-product-card > img { height: 210px; border-radius: 17px; }
  .hero-product-info { padding: 12px 5px 4px; }
  .hero-product-info strong { font-size: .86rem; }
  .hero-product-info span { font-size: 1.14rem; }
  .hero-orbit-one { width: 340px; height: 340px; }
  .hero-orbit-two { width: 250px; height: 250px; }
  .hero-float-card { padding: 8px 10px; border-radius: 13px; }
  .hero-float-card > i { width: 31px; height: 31px; }
  .hero-float-stock { left: 0; top: 58px; }
  .hero-float-support { right: 0; bottom: 48px; }
  .home-categories { padding-top: 26px; }
  .category-rail { display: flex; gap: 9px; margin-right: -12px; padding-right: 12px; overflow-x: auto; scrollbar-width: none; }
  .category-rail::-webkit-scrollbar { display: none; }
  .category-tile { flex: 0 0 205px; min-height: 78px; padding: 12px; }
  .category-icon { flex-basis: 42px; height: 42px; }
  .home-trust-grid { grid-template-columns: 1fr; }
  .home-trust-grid > div { padding: 15px 17px; border-right: 0; border-bottom: 1px solid var(--border); }
  .home-trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 38px 0; }
  .section-header { align-items: end; margin-bottom: 18px; }
  .section-title { font-size: 1.26rem; }
  .section-link { font-size: .68rem; }
  .phone-card { border-radius: 16px; }
  .phone-card .card-img-wrap { min-height: 175px; padding: 24px 10px 9px; }
  .card-badges { inset: 8px auto auto 8px; }
  .card-badges > span { padding: 4px 6px; font-size: .52rem; }
  .card-type-icon { right: 8px; top: 8px; width: 28px; height: 28px; border-radius: 8px; font-size: .75rem; }
  .phone-card .card-body { padding: 11px 11px 9px; }
  .phone-card .card-brand { font-size: .55rem; }
  .phone-card .imei-ready { font-size: .5rem; }
  .phone-card .card-title { margin-top: 5px; margin-bottom: 8px; font-size: .78rem; }
  .phone-card .specs-row { gap: 3px; margin-bottom: 8px; }
  .phone-card .spec-chip { padding: 3px 5px; font-size: .54rem; }
  .phone-card .price { font-size: 1rem; }
  .phone-card .old-price { display: none; }
  .card-stock-row { align-items: flex-start; flex-direction: column; gap: 3px; font-size: .53rem; }
  .phone-card .card-actions { padding: 0 11px 11px; gap: 6px; }
  .phone-card .btn-detail { min-height: 34px; font-size: .66rem; }
  .phone-card .wa-mini { flex-basis: 35px; width: 35px; height: 34px; }
  .brand-rail { display: flex; margin-right: -12px; padding-right: 12px; overflow-x: auto; scrollbar-width: none; }
  .brand-box-link { flex: 0 0 125px; }
  .brand-box { min-height: 100px; }
  .product-detail-section { padding: 0 0 34px; }
  .product-breadcrumb { display: none; }
  .product-detail-section > .container { padding: 0; }
  .product-detail-grid { gap: 19px; padding: 0 0 18px; border: 0; border-radius: 0; box-shadow: none; }
  .gallery-main { min-height: 390px; height: 390px; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .product-gallery #mainGalleryImg { min-height: 390px; height: 390px; padding: 30px 22px 20px; }
  .gallery-badges { top: 10px; right: 10px; }
  .gallery-badge { max-width: 145px; padding: 5px 8px; font-size: .57rem; }
  .gallery-nav { width: 36px; height: 36px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-counter { right: 10px; bottom: 10px; }
  .product-thumbs { display: none; }
  .gallery-dots { display: flex; align-items: center; justify-content: center; gap: 5px; height: 25px; margin: 0; }
  .gallery-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 999px; background: #d5d8df; transition: .2s; }
  .gallery-dot.active { width: 22px; background: var(--orange); }
  .product-summary { padding: 0 14px; }
  .share-product span { display: none; }
  .product-summary h1 { margin-top: 8px; font-size: 1.55rem; }
  .product-meta-row { gap: 6px 11px; }
  .product-price-box { margin-top: 12px; padding: 15px 0; }
  .price-lg { font-size: 1.8rem; }
  .delivery-promise { padding: 11px; }
  .delivery-tag { display: none; }
  .product-highlight-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-highlight-grid > div { padding: 9px; }
  .product-highlight-grid > div > i { flex-basis: 28px; height: 28px; }
  .selected-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .registration-body { grid-template-columns: 1fr; }
  .registration-body p { grid-column: auto; }
  .purchase-actions { flex-direction: column; }
  .purchase-actions .btn-call { width: 100%; min-height: 44px; }
  .purchase-trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-content-section { padding: 34px 0; }
  .product-detail-tabs { border-radius: 18px; }
  .product-tab-nav { padding: 0 6px; }
  .product-tab-nav button { min-height: 54px; padding: 0 14px; font-size: .68rem; }
  .product-tab-nav button::after { left: 14px; right: 14px; }
  .product-tab-panel { padding: 23px 17px; }
  .product-side-cards, .modern-spec-list, .service-info-grid { grid-template-columns: 1fr; }
  .modern-spec-list > div { grid-template-columns: minmax(92px,.75fr) 1.25fr; gap: 12px; }
  .imei-explainer { flex-direction: column; gap: 14px; }
  .imei-explainer-icon { flex-basis: 58px; width: 58px; height: 58px; border-radius: 17px; }
  .pre-footer-trust { padding: 20px 0; }
  .pre-footer-grid { grid-template-columns: 1fr 1fr; gap: 15px 0; }
  .pre-footer-grid > div { padding: 0 10px; }
  .pre-footer-grid > div:nth-child(odd) { padding-left: 0; }
  .pre-footer-grid > div:nth-child(even) { padding-right: 0; border: 0; }
  .pre-footer-grid small { display: none; }
  .site-footer { padding-top: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-about { grid-column: 1/-1; }
  .footer-contact { grid-column: 1/-1; grid-template-columns: 1fr; }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 32px; }
  .whatsapp-float { width: 50px; height: 50px; padding: 0; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .bottom-tabbar { height: var(--tabbar-h); border-radius: 18px 18px 0 0; }
  .bottom-tabbar a { font-size: .58rem; }
  .sticky-buy-bar { border-radius: 16px 16px 0 0; }
  .sticky-buy-bar .sb-name { max-width: 165px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* V2.1.1 — Hikâye etkileşimi */
.story-viewer-inner { touch-action: none; user-select: none; }
.story-close { z-index: 10; }
.story-viewer-title { z-index: 7; pointer-events: none; }
.story-viewer-link { z-index: 9; }
.story-nav { bottom: 72px; }
.story-viewer.is-paused .story-progress-bar { filter: brightness(1.15); }
.story-viewer.is-paused .story-viewer-inner::after {
  content: '\F4C3';
  position: absolute; z-index: 8; left: 50%; top: 50%;
  width: 58px; height: 58px; display: grid; place-items: center;
  transform: translate(-50%,-50%); border-radius: 50%;
  color: #fff; background: rgba(0,0,0,.48);
  font-family: 'bootstrap-icons'; font-size: 1.55rem;
  pointer-events: none; backdrop-filter: blur(7px);
}

/* İlk ziyaret duyurusu */
body.announcement-open { overflow: hidden; }
.announcement-popup { position: fixed; inset: 0; z-index: 2400; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s; }
.announcement-popup[hidden] { display: none !important; }
.announcement-popup.is-visible { opacity: 1; visibility: visible; }
.announcement-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(11,14,24,.72); backdrop-filter: blur(8px); }
.announcement-dialog { position: relative; z-index: 1; width: min(820px,100%); max-height: min(720px,calc(100vh - 40px)); display: grid; grid-template-columns: minmax(260px,.88fr) minmax(330px,1.12fr); overflow: auto; border: 1px solid rgba(255,255,255,.75); border-radius: 28px; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.32); transform: translateY(18px) scale(.98); transition: transform .24s ease; }
.announcement-popup.is-visible .announcement-dialog { transform: translateY(0) scale(1); }
.announcement-dialog.no-image, .announcement-dialog:not(:has(.announcement-image)) { grid-template-columns: 1fr; width: min(560px,100%); }
.announcement-close { position: absolute; z-index: 3; right: 14px; top: 14px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(20,25,45,.08); border-radius: 12px; color: var(--text); background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.announcement-image { min-height: 420px; background: #f2f3f6; }
.announcement-image img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.announcement-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,5vw,58px); }
.announcement-kicker { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; margin-bottom: 14px; padding: 6px 10px; border-radius: 9px; color: var(--orange); background: var(--orange-soft); font-size: .66rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.announcement-content h2 { margin: 0; font-size: clamp(1.8rem,4vw,2.75rem); font-weight: 900; line-height: 1.04; letter-spacing: -.055em; }
.announcement-content p { margin: 18px 0 0; color: var(--text-dim); font-size: .9rem; line-height: 1.75; }
.announcement-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.announcement-primary, .announcement-secondary { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border-radius: 13px; font-size: .76rem; font-weight: 850; }
.announcement-primary { color: #fff !important; background: var(--orange); box-shadow: 0 10px 25px rgba(245,116,10,.25); box-shadow: 0 10px 25px color-mix(in srgb,var(--orange) 25%,transparent); }
.announcement-primary:is(button) { border: 0; cursor: pointer; }
.announcement-secondary { border: 1px solid var(--border); color: var(--text-dim); background: #fff; }

@media (max-width: 767.98px) {
  .announcement-popup { padding: 12px; align-items: end; }
  .announcement-dialog { width: 100%; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); grid-template-columns: 1fr; border-radius: 24px 24px 18px 18px; }
  .announcement-image { min-height: 0; max-height: 280px; }
  .announcement-image img { min-height: 0; height: 250px; }
  .announcement-content { padding: 27px 23px 25px; }
  .announcement-content h2 { font-size: 1.8rem; }
  .announcement-content p { font-size: .82rem; }
  .announcement-actions { align-items: stretch; flex-direction: column; }
  .announcement-actions > * { width: 100%; }
}

/* V2.1.2 — footer, güvenli alan ve sabit WhatsApp düzeltmeleri */
:root { --sticky-buy-h: 64px; }
.footer-grid > *, .footer-contact, .footer-legal { min-width: 0; }
.footer-socials { flex-wrap: wrap; }
.footer-contact a span, .footer-contact div span, .site-footer .footer-bottom span, .footer-credit {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-legal { display: grid; gap: 6px; }
.footer-credit { margin: 0; color: #85899a; font-size: .7rem; line-height: 1.55; }
.footer-credit a { color: #aeb2c2 !important; font-weight: 700; }
.footer-credit a:hover { color: var(--orange-light) !important; }
.whatsapp-float { z-index: 1010; }

@media (max-width: 991.98px) {
  body { padding-bottom: 0; }
  .bottom-tabbar {
    height: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
  .site-footer {
    padding-bottom: calc(30px + var(--tabbar-h) + env(safe-area-inset-bottom));
  }
  body.has-sticky-buy .site-footer,
  body:has(.sticky-buy-bar) .site-footer {
    padding-bottom: calc(30px + var(--tabbar-h) + var(--sticky-buy-h) + env(safe-area-inset-bottom));
  }
  .sticky-buy-bar {
    min-height: var(--sticky-buy-h);
    bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
  }
  .whatsapp-float {
    display: flex !important;
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(var(--tabbar-h) + 14px + env(safe-area-inset-bottom));
  }
  body.has-sticky-buy .whatsapp-float,
  body:has(.sticky-buy-bar) .whatsapp-float {
    display: flex !important;
    bottom: calc(var(--tabbar-h) + var(--sticky-buy-h) + 14px + env(safe-area-inset-bottom));
  }
}
/* Ekran görüntüsündeki büyük Öne Çıkan Ürün kartı sliderı. */
.hero-product-slider { position: relative; z-index: 2; width: min(380px, 82%); min-width: 0; }
.hero-product-track { display: flex; min-width: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; touch-action: pan-x; border-radius: 30px; }
.hero-product-track:active { cursor: grabbing; }
.hero-product-track::-webkit-scrollbar { display: none; }
.hero-product-slider .hero-product-card { flex: 0 0 100%; width: 100%; scroll-snap-align: start; }
.hero-product-slider-button { position: absolute; top: 50%; width: 38px; height: 38px; border: 1px solid rgba(23,32,51,.12); border-radius: 50%; background: rgba(255,255,255,.92); color: var(--text); box-shadow: 0 5px 16px rgba(20,25,45,.12); transform: translateY(-50%); z-index: 3; }
.hero-product-slider-button.prev { left: 10px; }
.hero-product-slider-button.next { right: 10px; }
.hero-product-slider-button:hover { color: var(--orange); border-color: var(--orange); }
.hero-product-slider-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 6px; z-index: 3; }
.hero-product-slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(23,32,51,.28); }
.hero-product-slider-dots button.active { width: 22px; border-radius: 6px; background: var(--orange); }
@media(max-width:575px) { .hero-product-slider { width: 82%; } .hero-product-slider-button { width: 32px; height: 32px; } .hero-product-slider-button.prev { left: 7px; } .hero-product-slider-button.next { right: 7px; } }

/* Ana sayfanın ilk alanı: yönetilebilir popüler marka vitrini. */
.home-brand-showcase { padding: 42px 0 34px; background: linear-gradient(180deg, #fff 0%, #fffaf5 100%); border-bottom: 1px solid var(--border); }
.home-brand-heading { position: relative; text-align: center; margin: 0 auto 25px; }
.home-brand-heading::before, .home-brand-heading::after { content: ''; position: absolute; top: 50%; width: 19%; height: 2px; background: var(--orange); opacity: .8; }
.home-brand-heading::before { left: 5%; }
.home-brand-heading::after { right: 5%; }
.home-brand-heading .section-kicker { display: block; margin-bottom: 2px; color: var(--text); font-size: .92rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.home-brand-heading h1 { margin: 0; color: var(--orange); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 950; letter-spacing: -.055em; line-height: 1; text-transform: uppercase; }
.home-brand-heading p { margin: 8px 0 0; color: var(--text-dim); font-size: 1.1rem; font-weight: 650; }
.home-brand-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.home-brand-card { position: relative; display: flex; min-width: 0; min-height: 146px; align-items: center; justify-content: center; flex-direction: column; gap: 9px; padding: 17px 28px 15px; border: 1px solid #f0f0f2; border-radius: 19px; background: #fff; box-shadow: 0 8px 25px rgba(20,25,45,.055); color: var(--text); text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.home-brand-card:hover { border-color: rgba(245,116,10,.3); box-shadow: 0 16px 32px rgba(20,25,45,.11); color: var(--text); transform: translateY(-3px); }
.home-brand-logo { display: grid; width: 70px; height: 65px; place-items: center; }
.home-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.home-brand-card-name { overflow: hidden; max-width: 100%; text-align: center; font-size: .86rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; }
.home-brand-card > i { position: absolute; right: 15px; bottom: 15px; color: var(--text); font-size: .9rem; }
.home-brand-cta { display: flex; min-height: 59px; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; border-radius: 16px; background: var(--orange); color: #fff !important; font-size: 1.02rem; font-weight: 850; text-decoration: none; box-shadow: 0 10px 22px rgba(245,116,10,.2); transition: filter .2s, transform .2s; }
.home-brand-cta:hover { color: #fff; filter: brightness(.95); transform: translateY(-2px); }
@media(max-width:767px) {
  .home-brand-showcase { padding: 29px 0 24px; }
  .home-brand-heading { margin-bottom: 18px; }
  .home-brand-heading::before, .home-brand-heading::after { width: 12%; }
  .home-brand-heading::before { left: 0; }
  .home-brand-heading::after { right: 0; }
  .home-brand-heading .section-kicker { font-size: .68rem; }
  .home-brand-heading h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .home-brand-heading p { margin-top: 6px; font-size: .86rem; }
  .home-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .home-brand-card { min-height: 124px; padding: 12px 18px 11px; border-radius: 16px; }
  .home-brand-logo { width: 58px; height: 52px; }
  .home-brand-card-name { font-size: .69rem; }
  .home-brand-card > i { right: 10px; bottom: 10px; font-size: .72rem; }
  .home-brand-cta { min-height: 53px; margin-top: 11px; border-radius: 14px; font-size: .86rem; }
}
