/**
 * Sosyalbakis - Oyun / teknoloji teması
 * Akıcı yapı, orantılı düzen, mobil uyumlu
 */

:root {
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --bg-card-hover: #21262d;
  --border: #30363d;
  --text: #e6edf3;
  --text-muted: #8b949e;
  --accent: #58a6ff;
  --accent-hover: #79b8ff;
  --success: #3fb950;
  --warning: #d29922;
  --danger: #f85149;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-h: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container - orantılı, kenarlara yaslanmayan */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Header */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  border: none;
  outline: none;
  box-shadow: none;
}
.site-logo:hover { color: var(--accent); }
.site-logo:focus { outline: none; }
.site-logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.site-nav a:hover {
  color: var(--text);
  background: var(--bg-card-hover);
}
.site-nav .btn { margin-left: 0.5rem; }

/* Butonlar - modern */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.1s;
}
.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-hover);
  color: #fff;
}
.btn-secondary {
  background: var(--bg-card-hover);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover:not(:disabled) {
  background: var(--border);
  color: var(--text);
}
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover:not(:disabled) { filter: brightness(1.1); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Modal - X ve ESC ile kapanan */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0.95);
  transition: transform 0.2s;
}
.modal-overlay.is-open .modal { transform: scale(1); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-size: 1.125rem;
  font-weight: 600;
}
.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover {
  color: var(--text);
  background: var(--bg-card-hover);
}
.modal-body { padding: 1.25rem; }
.modal-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* Form */
.form-group {
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 100px; resize: vertical; }

/* Bloklar - ana sayfa Epinpol tarzı */
.section {
  padding: 1.5rem 0 2rem;
}
.section:first-of-type {
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .section { padding: 2rem 0 3rem; }
  .section:first-of-type { padding-top: 1.25rem; }
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title { font-size: 1.75rem; margin-bottom: 1.5rem; text-align: left; }
}

/* Kategori kartları - Epinpol tarzı: görsel kartın büyük kısmı, oval kare */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 600px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
.category-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}
.category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin: 0 0 0.5rem;
  border-radius: 14px;
  display: block;
  flex-shrink: 0;
}
.category-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  flex: 0 0 auto;
}
.category-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  min-height: 0;
}

/* Ürün kartları */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.product-card-image {
  aspect-ratio: 1;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.product-card-body { padding: 1rem; }
.product-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-card-actions .btn { flex: 1; min-width: 100px; }

/* Kategori sayfası: HD afiş alanı (sadece banner_image ile doldurulur), 1920×600 oran */
.kategori-afis {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  width: 100%;
}
.kategori-afis-inner {
  aspect-ratio: 1920 / 600;
  width: 100%;
  display: block;
  background: var(--bg-dark);
  overflow: hidden;
}
.kategori-afis-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Kategori sayfası: e-pin kartları – kart 213×317px, görsel alanı 212×220px */
.epin-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 213px);
  gap: 1rem;
  justify-content: start;
}
@media (min-width: 768px) {
  .epin-product-grid { grid-template-columns: repeat(3, 213px); gap: 1rem; }
}
@media (min-width: 1024px) {
  .epin-product-grid { grid-template-columns: repeat(4, 213px); }
}
@media (min-width: 1280px) {
  .epin-product-grid { grid-template-columns: repeat(6, 213px); }
}
.epin-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 213px;
  height: auto;
  min-height: 317px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  background: var(--bg-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.epin-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.epin-card-top {
  position: relative;
  flex: 0 0 220px;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.epin-card-bg {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -106px;
  width: 212px;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.epin-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
/* Hızlı Teslimat rozeti: yeşil yuvarlak kutu, solda ikon, sağda iki satır yazı */
.epin-card-badge {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.18rem 0.38rem 0.2rem;
  background: #16a34a;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.epin-card-badge-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.epin-card-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.12;
  gap: 0;
}
.epin-card-badge-line {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.epin-card-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: #1e293b;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.epin-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
}
.epin-card-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.5rem;
}
.epin-card-add {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.epin-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  width: 100%;
  max-width: 120px;
}
.epin-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.epin-qty-btn:hover { background: rgba(255,255,255,0.08); }
.epin-qty-input {
  width: 2.5rem;
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}
.epin-qty-input::-webkit-outer-spin-button,
.epin-qty-input::-webkit-inner-spin-button { appearance: none; margin: 0; }
.epin-card-btn {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.epin-card-btn:hover { opacity: 0.95; }
.epin-card-nostock {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}
.epin-empty-msg {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
  margin: 0;
}

/* Slider üstü: altı çizili metin kategoriler + yuvarlak logo kategoriler (Epinpol tarzı – çerçeve/arka plan yok) */
.hero-category-strip {
  padding: 0.75rem 0 1rem;
  margin-bottom: 0.5rem;
}
.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  margin-bottom: 0.75rem;
  justify-content: center;
}
/* Kategori metin linkleri – sıfırdan: sadece yazı + hover’da neon alt çizgi, arka plan/çerçeve yok */
.hero-cat-link {
  display: inline-block;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
.hero-cat-link:hover,
.hero-cat-link:focus,
.hero-cat-link:active {
  color: var(--text);
  background: none;
  border: none;
  box-shadow: none;
}
.hero-cat-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hero-cat-link-txt {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.hero-cat-link-txt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.hero-cat-link:hover .hero-cat-link-txt::after,
.hero-cat-link:focus .hero-cat-link-txt::after {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.4);
}
.hero-category-strip a {
  -webkit-tap-highlight-color: transparent;
}
.hero-category-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.hero-cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
  background: transparent;
}
.hero-cat-circle:hover,
.hero-cat-circle:focus {
  opacity: 1;
  background: transparent;
}
.hero-cat-circle:hover .hero-cat-circle-name,
.hero-cat-circle:focus .hero-cat-circle-name {
  background: transparent;
}
.hero-cat-circle-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(96, 165, 250, 0.95);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.5), inset 0 0 8px rgba(96, 165, 250, 0.15);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-cat-circle:hover .hero-cat-circle-img {
  border-color: rgba(147, 197, 253, 1);
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.6), inset 0 0 10px rgba(96, 165, 250, 0.2);
}
.hero-cat-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.hero-cat-circle-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  max-width: 12ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: transparent;
}
@media (min-width: 768px) {
  .hero-category-strip { padding: 1rem 0 1.25rem; }
  .hero-cat-link { font-size: 0.9375rem; }
  .hero-cat-circle-img { width: 64px; height: 64px; }
  .hero-cat-circle-name { font-size: 0.75rem; max-width: 12ch; }
}

/* Slider - yumuşak geçiş, oklar, noktalar */
.hero-slider-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
@media (min-width: 768px) {
  .hero-slider { min-height: 380px; }
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .hero-slider img { height: 380px; }
}
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-slider-arrow:hover {
  background: rgba(0,0,0,.6);
  color: var(--accent);
}
.hero-slider-arrow:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hero-slider-arrow.prev { left: 8px; }
.hero-slider-arrow.next { right: 8px; }
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero-slider-dot {
  width: 12px;
  height: 12px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hero-slider-dot:hover {
  background: var(--border);
}
.hero-slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Güven rozetleri – ikonlu (footer üstü) */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 600px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}
.trust-badge {
  text-align: center;
  padding: 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-badge-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.trust-badge-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.trust-badge-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trust-badge strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin: 0;
}
.trust-badge span {
  line-height: 1.4;
  max-width: 220px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.footer-col ul { list-style: none; }
.footer-col a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sepet ikonu */
.cart-count {
  position: relative;
}
.cart-count .count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--danger);
  color: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Çerez / KVKK banner (modal stil) */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  z-index: 999;
  display: none;
}
.cookie-consent.is-visible { display: block; }
.cookie-consent p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.cookie-consent a { font-size: 0.875rem; }
.cookie-consent .btn { margin-right: 0.5rem; }

/* Main content alanı */
.main-content {
  flex: 1;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .main-content { padding: 2rem 0; }
}

/* Sayfa başlığı */
.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .page-title { font-size: 1.75rem; margin-bottom: 1.5rem; }
}

/* Boş durum */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-state .btn { margin-top: 1rem; }

/* Mobil menü (hamburger) */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) {
  .nav-toggle { display: none; }
}
.site-nav.desktop-only { display: none; }
@media (min-width: 768px) {
  .site-nav.desktop-only { display: flex; }
}
.site-nav.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1rem;
  gap: 0;
  z-index: 99;
  display: none;
}
.site-nav.mobile-menu.is-open { display: flex; }
.site-nav.mobile-menu a { padding: 0.75rem; width: 100%; }

/* Sıralama / filtre çubuğu */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.toolbar select.form-control { width: auto; min-width: 180px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { color: var(--text); }

/* Favori kalp */
.btn-fav {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.btn-fav:hover { color: var(--danger); }
.btn-fav.is-fav { color: var(--danger); }

