/* ════════════════════════════════════════════════════════════
   ASSOS İÇ GİYİM - ANA STİLLER
   Siyah-altın lüks tema, responsive, mevcut HTML tasarımının korunmuş halı
   ════════════════════════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --gray1: #1a1a1a;
  --gray2: #2a2a2a;
  --gray3: #3a3a3a;
  --cream: #f4f1ea;
  --text-light: #8a8275;
  --gold: #c9a84c;
  --gold-light: #d4b35a;
  --gold-dark: #a88a3a;
  --red: #c0392b;
  --green: #27ae60;
  --tr: all .25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
::selection { background: rgba(201,168,76,.30); color: #fff; }
::-moz-selection { background: rgba(201,168,76,.30); color: #fff; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; transition: var(--tr); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }

button { font-family: inherit; cursor: pointer; }
input, textarea, select {
  font-family: inherit;
  background: var(--gray1);
  border: 1px solid var(--gray3);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: var(--tr);
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }

/* ═══════ HEADER ═══════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray2);
}
.hdr-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.nav-d {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}
.nav-d a {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cream);
  padding: 6px 0;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav-d a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-d a:hover { color: var(--gold); }
.nav-d a:hover::after { transform: scaleX(1); }
.hdr-acts { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--gray3);
  color: var(--cream);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: .05em;
}
.lang-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.ico-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 8px;
  display: flex;
  align-items: center;
  border-radius: 6px;
}
.ico-btn:hover { color: var(--gold); }
.hdr-search { display: flex; align-items: center; }
.hdr-search input {
  width: 150px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gray2);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s, width .2s;
}
.hdr-search input::placeholder { color: var(--text-light); }
.hdr-search input:focus { border-color: var(--gold); width: 190px; }
.hdr-search .ico-btn { color: var(--cream); }
.mob-search { display: flex; gap: 6px; margin-bottom: 16px; }
.mob-search input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--gray2);
  color: var(--cream);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.mob-search button {
  background: var(--gold); color: #1a1a1a; border: none;
  padding: 0 16px; border-radius: 8px; font-weight: 600; cursor: pointer;
}
.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.badge.on { display: flex; }
.mob-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  display: none;
}

/* ═══════ MOBİL MENÜ ═══════ */
.mob-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mob-ov.on { opacity: 1; pointer-events: all; }
.mob-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--gray1);
  z-index: 200;
  transition: left .3s;
  overflow-y: auto;
}
.mob-menu.on { left: 0; }
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray2);
}
.mob-head button {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 24px;
}
.mob-nav { padding: 16px 0; }
.mob-nav a {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray2);
  font-size: 14px;
}
.mob-nav .mob-toptan { color: var(--gold); font-weight: 600; }
.mob-sub {
  margin: 2px 16px 10px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.02);
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}
.mob-sub a {
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mob-sub a:last-child { border-bottom: none; }
.mob-sub a:hover { color: var(--gold); background: rgba(201,168,76,.05); }
.mob-lang { display: flex; gap: 8px; padding: 8px 24px 12px; }
.mob-lang .lang-btn { flex: 1; padding: 9px 0; text-align: center; }
.mob-nav hr { border: none; border-top: 1px solid var(--gray2); margin: 8px 0; }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: radial-gradient(ellipse at center, var(--gray1), var(--black));
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 76, .1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 76, .08), transparent 40%);
}
.hero-content { position: relative; max-width: 800px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero p {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--cream);
  margin-bottom: 32px;
  font-style: italic;
}
.hero-btn {
  position: relative;
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  transition: var(--tr);
  outline: 1.5px dashed rgba(29, 27, 28, .55);   /* buton üstünde dikiş şeridi */
  outline-offset: -7px;
}
.hero-btn:hover { background: var(--gold-light); color: var(--black); transform: translateY(-2px); }
/* kalıcı dikiş izleri (✕ ✕ ✕) — köşelerde, konsept görseldeki gibi */
.hero-btn::before,
.hero-btn::after {
  position: absolute;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-shadow: 0 0 5px rgba(201, 168, 76, .45);
  pointer-events: none;
}
.hero-btn::before { content: '✕ ✕ ✕'; top: -15px; right: 12px; }
.hero-btn::after  { content: '✕ ✕';   bottom: -15px; left: 14px; }
.hero-btn:focus-visible { box-shadow: 0 0 0 3px rgba(201, 168, 76, .55); }

/* ═══ İĞNE İMLEÇ — sadece masaüstü (fare); mobil ve form alanları normal kalır ═══ */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23f3e3ae'/><stop offset='.55' stop-color='%23c9a84c'/><stop offset='1' stop-color='%23816417'/></linearGradient></defs><path d='M2.6 2.6 L23.5 21 L26.6 26.6 L21 23.5 Z' fill='url(%23g)' stroke='%235e4a12' stroke-width='.7'/><ellipse cx='23' cy='23' rx='2.6' ry='1.5' transform='rotate(45 23 23)' fill='none' stroke='%235e4a12' stroke-width='1.2'/></svg>") 3 3, auto;
  }
  a, button, [role="button"], summary, label, .prod-card, .fil-btn, .qty-btn, .hero-btn {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><defs><linearGradient id='g2' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23f3e3ae'/><stop offset='.55' stop-color='%23c9a84c'/><stop offset='1' stop-color='%23816417'/></linearGradient></defs><path d='M2.6 2.6 L23.5 21 L26.6 26.6 L21 23.5 Z' fill='url(%23g2)' stroke='%235e4a12' stroke-width='.7'/><ellipse cx='23' cy='23' rx='2.6' ry='1.5' transform='rotate(45 23 23)' fill='none' stroke='%235e4a12' stroke-width='1.2'/></svg>") 3 3, pointer;
  }
}

/* ═══════ BÖLÜMLER ═══════ */
section { padding: 60px 24px; max-width: 1400px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--gold); margin-bottom: 8px; }
.section-title p { color: var(--text-light); font-size: 14px; }

/* ═══════ FİLTRELER ═══════ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.fil-btn {
  background: transparent;
  border: 1px solid var(--gray3);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: var(--tr);
}
.fil-btn:hover { border-color: var(--gold); color: var(--gold); }
.fil-btn.on { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tt-pill {
  font-size: 12px;
  padding: 8px 16px;
}

/* ═══════ ÜRÜN GRİDİ ═══════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.prod-card {
  background: var(--gray1);
  border: 1px solid var(--gray2);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--tr);
  position: relative;
}
.prod-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.prod-img {
  aspect-ratio: 3 / 4;
  background: var(--gray2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(.78);
  transform: scale(1.25);
  z-index: 0;
}
.prod-img img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform .5s; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-emoji { position: relative; z-index: 1; font-size: 80px; opacity: .3; }
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .08em;
}
.prod-badge.sale { background: var(--red); color: white; }
.prod-badge.new { background: var(--green); color: white; }
.wish-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, .5);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
}
.wish-btn:hover { background: rgba(0, 0, 0, .8); }
.wish-btn.on { color: var(--gold); }
.prod-body { padding: 16px; }
.prod-cat { color: var(--text-light); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
}
.prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.price-cur { font-size: 18px; font-weight: 700; color: var(--gold); }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.stock-lbl { font-size: 10px; padding: 3px 8px; border-radius: 10px; font-weight: 600; letter-spacing: .05em; }
.st-ok { background: rgba(39, 174, 96, .15); color: var(--green); }
.st-low { background: rgba(214, 137, 16, .15); color: #d68910; }
.st-out { background: rgba(192, 57, 43, .15); color: var(--red); }
.min-qty-box {
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(201, 168, 76, .08);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 6px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
}
.prod-acts {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.add-btn {
  flex: 1;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
}
.add-btn:hover { background: var(--gold-light); }
.add-btn:disabled { background: var(--gray3); color: var(--text-light); cursor: not-allowed; }
.det-btn {
  background: transparent;
  border: 1px solid var(--gray3);
  color: var(--cream);
  width: 40px;
  border-radius: 6px;
}
.det-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════ TOAST ═══════ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gray1);
  border: 1px solid var(--gold);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════ FOOTER ═══════ */
.ftr {
  background: var(--gray1);
  border-top: 1px solid var(--gray2);
  padding: 60px 24px 0;
  margin-top: 80px;
}
.ftr-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.ftr-col h4 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ftr-col a {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
}
.ftr-col a:hover { color: var(--gold); }
.ftr-bot {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--gray2);
  color: var(--text-light);
  font-size: 12px;
}

/* ═══════ FORMLAR ═══════ */
.form-page {
  max-width: 480px;
  margin: 60px auto;
  padding: 40px 24px;
}
.form-page h1 {
  font-size: 32px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: .05em;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: 100%;
  transition: var(--tr);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gray3);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
/* Toptan modu AKTİF: belirgin ayrı renk (yeşil = açık) — perakende outline'dan da, gold primary'den de farklı */
#wholeBtn { transition: var(--tr); }
#wholeBtn.on { background: #2e7d5b; border-color: #3a9e72; color: #fff; font-weight: 700; box-shadow: 0 0 0 3px rgba(46,125,91,.22); }
#wholeBtn.on:hover { background: #348a64; border-color: #3a9e72; color: #fff; }
.form-error { background: rgba(192, 57, 43, .15); border: 1px solid var(--red); color: #e74c3c; padding: 12px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.form-success { background: rgba(39, 174, 96, .15); border: 1px solid var(--green); color: #2ecc71; padding: 12px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.form-link { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-light); }
.form-link a { color: var(--gold); }

/* ═══════ SEPET / ÜRÜN DETAY / VS ═══════ */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}
.empty-state .ico { font-size: 64px; margin-bottom: 16px; opacity: .4; }
.qty-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray3);
  border-radius: 6px;
  overflow: hidden;
}
.qty-input button {
  width: 36px;
  height: 36px;
  background: var(--gray2);
  border: none;
  color: var(--cream);
  font-size: 16px;
  font-weight: 700;
}
.qty-input button:hover { background: var(--gold); color: var(--black); }
.qty-input input {
  width: 64px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--cream);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.breadcrumb { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1480px) {
  .nav-d { gap: 14px; }
  .nav-d a { font-size: 12px; letter-spacing: .06em; }
  .hdr-acts { gap: 6px; }
  .lang-btn { padding: 6px 8px; }
  .hdr-search input { width: 128px; }
  .hdr-search input:focus { width: 150px; }
}
@media (max-width: 1100px) {
  .nav-d { gap: 11px; }
  .nav-d a { font-size: 11.5px; letter-spacing: .03em; }
  .hdr-search input { display: none; }
}
@media (max-width: 900px) {
  .nav-d { display: none; }
  .mob-btn { display: block; }
  .hdr-inner { gap: 12px; }
  .hdr-acts { margin-left: auto; }
  .logo { flex-shrink: 0; }
  .logo-img { height: 32px; }
  .logo-text { font-size: 22px; white-space: nowrap; }
  .hdr-search input { display: none; }
  .ftr-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  section { padding: 40px 16px; }
  .hdr-inner { padding: 12px 16px; gap: 8px; }
  .logo-text { font-size: 18px; }
  .logo-img { height: 26px; }
  .hdr-acts { gap: 6px; }
  .hdr-acts .lang-btn { display: none; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prod-body { padding: 12px; }
  .prod-name { font-size: 15px; min-height: 42px; }
  .ftr-inner { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .ftr-col a { padding: 5px 0; }
}

/* ─── Hero video (Assos animasyonlu banner) ─── */
.hero-video { width: 100%; max-width: 600px; height: auto; display: block; margin: 0 auto 20px; border-radius: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 600px) { .hero-video { max-width: 100%; } }

/* ─── Hero: videoyla uyumlu koyu + hareketli fon ─── */
.hero { background: #1d1b1c; }                       /* video kumaşına uyumlu antrasit */
.hero::before {
  background-image:
    radial-gradient(circle at 22% 32%, rgba(201,168,76,.12), transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(201,168,76,.10), transparent 42%);
  animation: heroGlow 7s ease-in-out infinite;       /* hafif nefes alan ışıltı */
  will-change: opacity, transform;
}
@keyframes heroGlow {
  0%, 100% { opacity: .6;  transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.07); }
}
.hero-content { z-index: 1; }                         /* içerik ışıltının üstünde */
/* video kenarlarını fona erit — yan şeritler görünmesin */
.hero-video {
  border-radius: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

/* ─── Tüm koyu alanları hero antrasitiyle (#1d1b1c) bütünleştir ─── */
:root { --black: #1d1b1c; }                  /* sayfa zemini + kategoriler hero ile aynı ton (tema ayarı yine ezer) */
.hdr { background: rgba(29, 27, 28, .95); }  /* üst bar — saydamlık + blur korunur */
.ftr { background: #1d1b1c; }                /* footer */

/* ─── Sepet & Favori: altın boutique ikonlar ─── */
.ico-gold { color: var(--gold); }
.ico-gold:hover { color: var(--gold); }
.ico-gold:hover svg { fill: rgba(201,168,76,.16); }

/* ─── Mobil TOPTAN akordeon ─── */
.mob-nav .mob-acc {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 24px; border: none; border-bottom: 1px solid var(--gray2);
  background: transparent; color: var(--gold); font-weight: 600; font-size: 14px;
  cursor: pointer; text-align: left; font-family: inherit;
}
.mob-acc .mob-acc-ic { transition: transform .25s; font-size: 12px; opacity: .8; }
.mob-acc[aria-expanded="true"] .mob-acc-ic { transform: rotate(180deg); }
.mob-sub { display: none; }
.mob-sub.open { display: block; }
