:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #111827;
  --ink-soft: #4b5563;
  --muted: #9ca3af;
  --line: #e7e7e4;
  --brand: #111827;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { color: inherit; text-decoration: none; }

/* Topbar */
.topbar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
}
.topbar strong { color: var(--accent); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--brand); color: var(--accent);
  display: grid; place-items: center; font-weight: 800; font-size: 22px;
}
.logo-text { font-weight: 800; letter-spacing: 1px; font-size: 18px; }
.logo-text span { color: var(--accent); }

.nav { display: flex; gap: 4px; margin-left: 8px; flex: 1; }
.nav-link {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); transition: .15s;
}
.nav-link:hover { background: var(--bg); color: var(--ink); }
.nav-link.active { background: var(--brand); color: #fff; }
.nav-sale { color: var(--danger); }

/* Mega menü */
.nav-mega-wrap { position: relative; }
.mega {
  position: absolute; top: 100%; left: 0; width: 720px; max-width: 92vw;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 18px 20px; display: none; z-index: 50;
}
.nav-mega-wrap:hover .mega { display: block; }
.mega-all { display: inline-block; font-weight: 800; color: var(--accent-dark); margin-bottom: 14px; cursor: pointer; font-size: 14px; }
.mega-all:hover { text-decoration: underline; }
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 20px; }
.mega-group { display: block; font-weight: 800; font-size: 14px; margin-bottom: 8px; cursor: pointer; color: var(--ink); }
.mega-group:hover { color: var(--accent-dark); }
.mega-sub { display: block; font-size: 13px; color: var(--ink-soft); padding: 3px 0; cursor: pointer; }
.mega-sub:hover { color: var(--accent-dark); padding-left: 4px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  font-size: 20px; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; transition: .15s;
}
.icon-btn:hover { background: var(--bg); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px;
  display: grid; place-items: center;
}

/* Hero */
.hero { padding: 56px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; background: #fff; border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--accent-dark); margin-bottom: 18px;
}
.hero-text h1 { font-size: 52px; line-height: 1.05; font-weight: 800; letter-spacing: -1px; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { color: var(--ink-soft); font-size: 18px; margin: 18px 0 26px; max-width: 520px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 32px; }
.hero-stats strong { display: block; font-size: 24px; }
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-card {
  background: var(--brand); border-radius: 24px; padding: 36px;
  color: #fff; box-shadow: var(--shadow-lg);
}
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.size-chip {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 22px 0; text-align: center;
  font-size: 26px; font-weight: 800; color: var(--accent);
}
.size-chip:nth-child(4), .size-chip:nth-child(5) { grid-column: span 1; }
.hero-card-note { margin-top: 18px; color: rgba(255,255,255,0.7); font-size: 14px; }

/* Buttons */
.btn {
  font-family: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  transition: .15s; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary { background: var(--accent); color: #111827; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--brand); color: #fff; }
.btn-dark:hover { opacity: .9; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Catalog */
#catalog { padding: 24px 20px 50px; }
.catalog-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.catalog-head h2 { font-size: 28px; font-weight: 800; }
.filters { display: flex; gap: 14px; }
.filter { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; font-weight: 600; }
.filter select {
  font-family: inherit; font-weight: 600; font-size: 14px; padding: 8px 12px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer;
}

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); transition: .2s; cursor: pointer; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 3/4; width: 100%; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-tag {
  position: absolute; top: 10px; left: 10px; background: var(--accent);
  color: #111827; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
}
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.card-name { font-size: 16px; font-weight: 700; }
.card-sizes { font-size: 12px; color: var(--ink-soft); }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.card-price { font-size: 18px; font-weight: 800; }
.card-add { background: var(--brand); color: #fff; border: none; border-radius: 10px; padding: 9px 12px; font-size: 13px; font-weight: 700; cursor: pointer; transition: .15s; }
.card-add:hover { background: var(--accent); color: #111827; }

/* Features */
.features { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0; }
.features-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: center; }
.feature span { font-size: 30px; }
.feature h4 { margin-top: 8px; font-size: 16px; }
.feature p { color: var(--muted); font-size: 14px; }

/* Footer */
.footer { background: var(--brand); color: #cbd5e1; padding: 48px 0 0; margin-top: 10px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 32px; }
.footer-logo .logo-text { color: #fff; }
.footer-about { margin-top: 12px; font-size: 14px; max-width: 280px; }
.footer h5 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer a, .footer p { display: block; color: #cbd5e1; font-size: 14px; margin-bottom: 9px; transition: .15s; }
.footer a:hover { color: var(--accent); }
.pay-icons { margin-top: 12px; font-weight: 700; color: #fff; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding: 18px 0; text-align: center; font-size: 13px; color: #94a3b8; }

/* Overlay + Drawer */
.overlay {
  position: fixed; inset: 0; background: rgba(17,24,39,0.5); z-index: 50;
  opacity: 0; pointer-events: none; transition: .25s;
}
.overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw;
  background: #fff; z-index: 60; transform: translateX(100%); transition: .3s ease;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-drawer.show { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 20px; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-row img { width: 64px; height: 80px; object-fit: cover; border-radius: 10px; }
.cart-row-info { flex: 1; }
.cart-row-info h4 { font-size: 14px; font-weight: 700; }
.cart-row-info .meta { font-size: 12px; color: var(--muted); }
.cart-row-info .price { font-weight: 800; margin-top: 4px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; margin-top: 6px; }
.qty button { width: 26px; height: 26px; border: none; background: none; cursor: pointer; font-size: 16px; font-weight: 700; }
.qty span { width: 30px; text-align: center; font-size: 13px; font-weight: 700; }
.cart-row .remove { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 12px; align-self: flex-start; }
.cart-footer { padding: 18px 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cart-total strong { font-size: 22px; }
.cart-shipnote { font-size: 12px; color: var(--success); margin-bottom: 12px; min-height: 16px; }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 70; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(17,24,39,0.55);
}
.modal.show { display: flex; }
.modal-card { background: #fff; border-radius: 20px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.product-modal { max-width: 840px; }
.checkout-modal { max-width: 560px; }

.pm-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pm-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px 0 0 20px; }
.pm-info { padding: 28px; position: relative; }
.pm-close { position: absolute; top: 16px; right: 16px; }
.pm-cat { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
.pm-name { font-size: 26px; font-weight: 800; margin: 6px 0 10px; }
.pm-price { font-size: 26px; font-weight: 800; color: var(--accent-dark); }
.pm-desc { color: var(--ink-soft); font-size: 15px; margin: 14px 0; }
.pm-specs { width: 100%; border-collapse: collapse; margin: 16px 0 4px; }
.pm-specs td { padding: 7px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.pm-specs td:first-child { color: var(--muted); font-weight: 600; width: 38%; }
.pm-specs td:last-child { font-weight: 600; }
.pm-label { font-size: 13px; font-weight: 700; margin: 16px 0 8px; }
.pm-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-size {
  border: 1.5px solid var(--line); background: #fff; border-radius: 10px;
  padding: 10px 16px; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 14px; transition: .15s;
}
.pm-size:hover { border-color: var(--ink); }
.pm-size.selected { border-color: var(--accent); background: var(--accent); color: #111827; }

/* Checkout */
.co-head { padding: 22px 26px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.co-head h3 { font-size: 20px; }
.co-body { padding: 22px 26px; }
.co-section-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin: 18px 0 12px; }
.co-section-title:first-child { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.field input {
  font-family: inherit; font-size: 14px; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; transition: .15s;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.field input.invalid { border-color: var(--danger); }
.card-visual {
  background: linear-gradient(135deg, #1f2937, #111827); color: #fff;
  border-radius: 14px; padding: 18px; margin-bottom: 14px;
}
.card-visual .cv-num { font-size: 18px; letter-spacing: 2px; font-family: monospace; margin: 22px 0 14px; }
.card-visual .cv-row { display: flex; justify-content: space-between; font-size: 12px; color: #cbd5e1; }
.co-summary { background: var(--bg); border-radius: 12px; padding: 16px; margin: 16px 0; }
.co-summary .row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.co-summary .row.total { font-size: 18px; font-weight: 800; margin-bottom: 0; padding-top: 8px; border-top: 1px solid var(--line); }
.demo-note { font-size: 12px; color: var(--ink-soft); background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 10px 12px; margin-top: 14px; }

/* Success */
.co-success { padding: 44px 30px; text-align: center; }
.co-success .check { width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff; font-size: 38px; display: grid; place-items: center; margin: 0 auto 18px; }
.co-success h3 { font-size: 24px; }
.co-success p { color: var(--ink-soft); margin: 10px 0; }
.co-order { font-weight: 800; font-size: 16px; }

/* Auth alanı (header) */
.auth-area { display: flex; align-items: center; }
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.user-menu { position: relative; }
.user-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  min-width: 170px; padding: 6px; display: none; z-index: 30;
}
.user-menu:hover .user-dropdown { display: block; }
.user-dropdown button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 10px 12px; border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
}
.user-dropdown button:hover { background: var(--bg); }

/* Auth modal */
.auth-modal { max-width: 420px; }
.auth-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.auth-tabs { display: flex; gap: 6px; }
.auth-tab { background: none; border: none; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--muted); cursor: pointer; padding: 6px 4px; border-bottom: 2px solid transparent; }
.auth-tab.active { color: var(--ink); border-bottom-color: var(--accent); }
.auth-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.auth-body input { font-family: inherit; font-size: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; }
.auth-body input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.auth-msg { font-size: 13px; color: var(--accent-dark); min-height: 16px; }
.auth-note { padding: 0 20px 20px; font-size: 13px; color: var(--muted); }

/* Siparişlerim */
.orders-modal { max-width: 560px; }
.order-row { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 12px; }
.order-top { display: flex; justify-content: space-between; align-items: center; }
.order-status { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--bg); }
.order-status.st-yeni { background: #fef3c7; color: #92400e; }
.order-status.st-hazırlanıyor { background: #dbeafe; color: #1e40af; }
.order-status.st-kargoda { background: #e0e7ff; color: #3730a3; }
.order-status.st-teslim { background: #dcfce7; color: #166534; }
.order-status.st-i̇ptal, .order-status.st-iptal { background: #fee2e2; color: #991b1b; }
.order-meta { font-size: 13px; color: var(--ink-soft); margin: 6px 0; }
.order-items { font-size: 13px; color: var(--ink); line-height: 1.7; }

/* WhatsApp yüzen buton */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 28px; box-shadow: var(--shadow-lg);
  transition: .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* KVKK çerez bandı */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 85;
  background: var(--brand); color: #e5e7eb; padding: 14px 20px;
  display: none; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 14px; box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--brand); color: #fff; padding: 13px 22px; border-radius: 12px;
  font-weight: 600; font-size: 14px; z-index: 90; opacity: 0; transition: .3s; box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Arama kutusu */
.search-input {
  font-family: inherit; font-size: 14px; padding: 8px 12px; min-width: 200px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }

/* Mobil menü düğmesi */
.nav-toggle { display: none; font-size: 22px; }

/* Çoklu beden/numara filtresi */
.size-filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 22px; }
.sf-label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.sf-group { display: inline-flex; gap: 6px; flex-wrap: wrap; padding-right: 8px; margin-right: 4px; border-right: 1px solid var(--line); }
.sf-group:last-of-type { border-right: none; }
.size-filter-chip {
  font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 6px 13px; color: var(--ink); transition: .12s;
}
.size-filter-chip:hover { border-color: var(--ink); }
.size-filter-chip.on { background: var(--brand); color: #fff; border-color: var(--brand); }
.size-filter-clear {
  font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
  background: none; border: none; color: var(--danger); padding: 6px 8px;
}

/* İndirim rozeti & favori kalbi (kart) */
.card-discount {
  position: absolute; top: 10px; left: 10px; background: var(--danger);
  color: #fff; font-size: 12px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
}
.fav-btn {
  position: absolute; top: 8px; right: 8px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer; font-size: 18px; color: var(--danger);
  display: grid; place-items: center; transition: .15s; line-height: 1;
}
.fav-btn:hover { transform: scale(1.1); }
.fav-btn.on { background: var(--danger); color: #fff; }
.card-prices { display: flex; flex-direction: column; line-height: 1.1; }
.card-oldprice { font-size: 13px; color: var(--muted); text-decoration: line-through; }

/* Yıldız puanı & stok uyarısı (kart) */
.stars { color: var(--accent); letter-spacing: 1px; }
.card-rating { font-size: 13px; }
.rating-count { color: var(--muted); font-size: 12px; }
.stock-low { font-size: 12px; font-weight: 700; color: var(--danger); }
.card-out {
  position: absolute; top: 10px; left: 10px; background: #6b7280; color: #fff;
  font-size: 12px; font-weight: 800; padding: 4px 9px; border-radius: 999px;
}

/* Ürün galerisi (modal) */
.pm-thumbs { display: flex; gap: 8px; padding: 10px; flex-wrap: wrap; }
.pm-thumb { width: 54px; height: 66px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.pm-thumb.on { border-color: var(--accent); }

/* Değerlendirmeler (modal) */
.pm-reviews { padding: 20px 28px 28px; border-top: 1px solid var(--line); }
.rev-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.rev-head h3 { font-size: 18px; }
.rev-summary { font-size: 15px; }
.rev-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.rev-item { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.rev-item-top { display: flex; gap: 10px; align-items: center; }
.rev-date { font-size: 12px; color: var(--muted); margin: 2px 0 4px; }
.rev-item p { font-size: 14px; color: var(--ink-soft); }
.rev-form { background: var(--bg); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.rev-form-row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.rev-form textarea { font-family: inherit; font-size: 14px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; min-height: 60px; resize: vertical; }
.rev-form textarea:focus { outline: none; border-color: var(--accent); }
.rev-form .btn { align-self: flex-start; }

/* İndirim (ürün modalı) */
.pm-oldprice { font-size: 18px; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.pm-discount { font-size: 14px; color: var(--danger); font-weight: 800; }

/* Beden tablosu modal */
.sizeguide-modal { max-width: 560px; }
.fav-grid { grid-template-columns: repeat(2, 1fr); }

/* Yasal sayfalar */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 40px 20px 70px; }
.legal-wrap h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.legal-wrap .legal-sub { color: var(--muted); margin-bottom: 24px; }
.legal-wrap h2 { font-size: 19px; font-weight: 700; margin: 26px 0 10px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal-wrap ul { padding-left: 22px; margin: 8px 0; }
.legal-wrap a.back { display: inline-block; margin-bottom: 18px; font-weight: 700; color: var(--accent-dark); }
.legal-note {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px;
  padding: 14px 16px; font-size: 14px; color: #92400e; margin: 18px 0;
}
.legal-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.legal-table td { border: 1px solid var(--line); padding: 10px 12px; font-size: 14px; }
.legal-table td:first-child { background: var(--bg); font-weight: 600; width: 38%; }

/* Responsive */
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: grid; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 14px; border-radius: 8px; }
  .nav-mega-wrap { width: 100%; }
  .mega { position: static; width: 100%; max-width: none; box-shadow: none; border: none; border-radius: 0; padding: 4px 0 8px 14px; }
  .nav-mega-wrap:hover .mega { display: none; }
  .mega.open { display: block; }
  .mega-cols { grid-template-columns: 1fr 1fr; gap: 10px; }
  .search-input { min-width: 0; width: 100%; }
  .filters { flex-wrap: wrap; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 38px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .pm-grid { grid-template-columns: 1fr; }
  .pm-img img { border-radius: 20px 20px 0 0; height: 280px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
}
@media (max-width: 440px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
