/* aiBazar ana sayfa — D&R tarzı layout */

:root {
  --dr-mavi: #002855;
  --dr-mavi-acik: #1a4a8a;
  --dr-sari: #ffd200;
  --dr-kirmizi: #e4002b;
  --dr-yesil: #00a651;
  --dr-gri: #666;
  --dr-gri-acik: #f5f5f5;
  --dr-gri-cizgi: #e5e5e5;
  --dr-beyaz: #fff;
  --dr-golge: 0 2px 12px rgba(0, 0, 0, 0.08);
  --dr-radius: 8px;
  --dr-header-yuk: 56px;
  --dr-kategori-yuk: 44px;
  --dr-font: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --dr-kapsayici: min(1280px, 100% - 2rem);
  --dr-safe-top: env(safe-area-inset-top, 0px);
  --dr-safe-bottom: env(safe-area-inset-bottom, 0px);
  --dr-safe-left: env(safe-area-inset-left, 0px);
  --dr-safe-right: env(safe-area-inset-right, 0px);
  --logo-gold-light: #f2ca50;
  --logo-gold: #d4af37;
  --logo-gold-dark: #9a7512;
  --logo-gold-ring: linear-gradient(145deg, #f7e08a 0%, #d4af37 20%, #9a7512 42%, #f2ca50 65%, #c9a227 100%);
  --logo-silver: radial-gradient(ellipse 130% 90% at 50% 18%, #f3f3f3 0%, #e3e3e3 38%, #c8c8c8 100%);
  --logo-cerceve: 3px;
  --logo-cerceve-ikon: 1.5px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.dr-site {
  margin: 0;
  font-family: var(--dr-font);
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background: var(--dr-beyaz);
  padding-left: var(--dr-safe-left);
  padding-right: var(--dr-safe-right);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, p { margin: 0; }

.dr-atla {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--dr-mavi);
  color: var(--dr-beyaz);
}
.dr-atla:focus { left: 0; }

.dr-kapsayici {
  width: var(--dr-kapsayici);
  margin-inline: auto;
}

/* Promo bar */
.dr-promo-bar {
  background: var(--dr-sari);
  text-align: center;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

/* Utility nav */
.dr-ust-yardim {
  display: none;
  border-bottom: 1px solid var(--dr-gri-cizgi);
  padding: 0.35rem 0;
  font-size: 0.75rem;
}

.dr-yardim-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 1rem;
}

.dr-yardim-nav a {
  color: var(--dr-gri);
  white-space: nowrap;
}
.dr-yardim-nav a:hover { color: #9a7512; }

/* Header ikon — logodaki gümüş daire + gold halka (küçük, sabit gold) */
.dr-header-ikon {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
  min-height: 24px;
  max-height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--logo-silver);
  color: var(--logo-gold-dark);
  flex-shrink: 0;
  cursor: pointer;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.92),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
  -webkit-tap-highlight-color: transparent;
}

.dr-header-ikon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--logo-cerceve-ikon);
  background: var(--logo-gold-ring);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.dr-header-ikon svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  display: block;
  color: var(--logo-gold-dark);
}

.dr-header-ikon-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0;
  color: #555;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.dr-header-ikon-link:hover,
.dr-header-ikon-link:hover .dr-header-ikon,
.dr-header-ikon-link:hover .dr-header-ikon svg,
.dr-header-ikon:hover,
.dr-header-ikon:hover svg {
  color: var(--logo-gold-dark);
  transform: none;
}

.dr-header-etiket {
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  color: #555;
}

.dr-header-ikon-link:hover .dr-header-etiket {
  color: #555;
}

.dr-header-ikon-rozet {
  position: relative;
}

/* Header */
.dr-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding-top: var(--dr-safe-top);
}

.dr-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--logo-gold) 20%, var(--logo-gold-light) 50%, var(--logo-gold) 80%, transparent 100%);
  pointer-events: none;
}

.dr-header-ust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
}

.dr-header-menu {
  flex-shrink: 0;
}

.dr-logo {
  flex-shrink: 0;
  line-height: 0;
}

.dr-logo img {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
}

.dr-header-orta {
  flex: 1;
  min-width: 0;
  display: none;
}

.dr-header-islemler {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}

.dr-arama {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.dr-arama input {
  width: 100%;
  height: 34px;
  padding: 0 2.35rem 0 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  font: inherit;
  font-size: 0.8125rem;
  outline: none;
  background: var(--logo-silver);
  -webkit-appearance: none;
}

.dr-arama input:focus {
  border-color: var(--logo-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.dr-header-ikon-ara {
  position: absolute;
  right: 2px;
  top: 2px;
}

.dr-sepet-adet {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 12px;
  height: 12px;
  padding: 0 2px;
  border-radius: 999px;
  background: var(--logo-gold-ring);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  line-height: 1;
}

@media (max-width: 991px) {
  .dr-header-menu {
    display: inline-flex;
  }

  .dr-header-etiket {
    display: none;
  }

  .dr-header-islemler {
    gap: 0.2rem;
  }
}

@media (min-width: 992px) {
  .dr-header-menu {
    display: none;
  }

  .dr-header-orta {
    display: block;
  }

  .dr-header-etiket {
    display: block;
  }

  .dr-logo img {
    height: 30px;
  }
}

/* Category nav */
.dr-kategori-bar {
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.dr-kategori-nav {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
  align-items: center;
}
.dr-kategori-nav::-webkit-scrollbar { display: none; }

/* Fırsat / Yeni etiketi ile ayni tasarim */
.dr-etiket {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--logo-gold-dark), var(--logo-gold-light));
  color: #111;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}

.dr-etiket:hover,
.dr-etiket:focus-visible {
  color: #111;
}

.dr-etiket-kirmizi {
  background: linear-gradient(135deg, #b8001f, var(--dr-kirmizi));
  color: #fff;
}

.dr-etiket-kirmizi:hover,
.dr-etiket-kirmizi:focus-visible {
  color: #fff;
}

.dr-etiket-gumus {
  background: var(--logo-silver);
  color: #333;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(170, 170, 170, 0.5);
}

.dr-etiket-gumus:hover,
.dr-etiket-gumus:focus-visible {
  color: #333;
}

.dr-kampanya-etiket-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dr-kategori-yukleniyor {
  font-size: 0.75rem;
  color: var(--dr-gri);
  padding: 0.35rem 0;
}

/* Mobile menu */
.dr-mobil-menu[hidden] { display: none; }
.dr-mobil-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.dr-mobil-menu-arkaplan {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.dr-mobil-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--dr-beyaz);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-top: calc(1rem + var(--dr-safe-top));
  padding-bottom: calc(1rem + var(--dr-safe-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  animation: drMenuGir 0.25s ease;
}

@keyframes drMenuGir {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.dr-mobil-menu-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dr-mobil-menu-baslik button {
  padding: 0;
  border: none;
  cursor: pointer;
}

.dr-mobil-menu .dr-header-ikon,
.dr-mobil-menu .dr-header-ikon svg {
  color: var(--logo-gold-dark);
}

.dr-mobil-yardim,
.dr-mobil-kategoriler {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.dr-mobil-yardim a,
.dr-mobil-kategoriler a {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--dr-gri-cizgi);
  font-size: 0.875rem;
  font-weight: 600;
}

.dr-mobil-islemler {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Buttons */
.dr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: var(--dr-radius);
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-tap-highlight-color: transparent;
}
.dr-btn-dolu { background: var(--dr-mavi); color: var(--dr-beyaz); }
.dr-btn-cizgili { border: 2px solid var(--dr-mavi); color: var(--dr-mavi); }
.dr-btn-kucuk { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* Main sections */
main { padding-bottom: calc(2rem + var(--dr-safe-bottom)); }

.dr-kampanya-serit {
  border-bottom: 1px solid var(--dr-gri-cizgi);
  padding: 0.5rem 0;
  background: var(--dr-gri-acik);
}

.dr-kampanya-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0;
}
.dr-kampanya-track::-webkit-scrollbar { display: none; }

.dr-kampanya-link {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dr-mavi);
  white-space: nowrap;
}

.dr-bolum {
  padding: 1.25rem 0;
}

.dr-bolum-gri {
  background: var(--dr-gri-acik);
  max-width: 100%;
}

.dr-bolum-gri .dr-kapsayici { width: var(--dr-kapsayici); }

.dr-bolum-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dr-bolum-baslik h2 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
}

.dr-hepsini-gor {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dr-mavi);
  white-space: nowrap;
}

/* Hero */
.dr-kahraman {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

/* Logo kutu — gümüş zemin + gold kenar şeridi (sezer-ai-logo) */
.dr-logo-kutu,
.dr-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--dr-radius);
  background: var(--logo-silver);
  color: #111;
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.85),
    inset 0 -3px 8px rgba(0, 0, 0, 0.05),
    0 4px 16px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
}

.dr-logo-kutu::before,
.dr-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--logo-cerceve);
  background: var(--logo-gold-ring);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.dr-logo-kutu::after,
.dr-banner:not(.dr-banner-gorselli)::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0 5px,
    rgba(212, 175, 55, 0.07) 5px 6px,
    transparent 6px 11px
  );
  pointer-events: none;
  z-index: 0;
}

.dr-banner {
  display: flex;
  align-items: flex-end;
  min-height: 160px;
}

.dr-banner-gorselli {
  color: var(--dr-beyaz);
  background-color: #222;
}

.dr-banner-gorselli::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.15));
  z-index: 1;
  pointer-events: none;
}

.dr-banner-icerik {
  position: relative;
  z-index: 2;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dr-banner-icerik strong { font-size: 1rem; font-weight: 800; }
.dr-banner-icerik span { font-size: 0.8125rem; opacity: 0.75; }
.dr-banner-gorselli .dr-banner-icerik { color: var(--dr-beyaz); }
.dr-banner-gorselli .dr-banner-icerik span { opacity: 0.92; }

.dr-banner > span:not(.dr-banner-icerik) {
  position: relative;
  z-index: 2;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  width: 100%;
  text-align: center;
}

.dr-logo-kutu-metin,
.dr-logo-kutu-harf {
  position: relative;
  z-index: 2;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.dr-logo-kutu-metin {
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem;
}

.dr-logo-kutu-harf {
  font-size: 2rem;
  background: linear-gradient(135deg, #9a7512, #f2ca50, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dr-banner-buyuk { min-height: 200px; }

/* Sezer AI ana banner — sadece gorsel, kirpma yok */
.dr-sezer-banner {
  display: block;
  border-radius: var(--dr-radius);
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dr-sezer-banner img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.dr-firsat-alani {
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  padding: 0.75rem;
  background: var(--dr-beyaz);
}

.dr-firsat-baslik {
  margin-bottom: 0.75rem;
}

.dr-firsat-etiket {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--logo-gold-dark), var(--logo-gold-light));
  color: #111;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

.dr-firsat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dr-firsat-grid .dr-urun-kart {
  flex: unset;
  width: auto;
  min-width: 0;
  max-width: none;
}

.dr-gunun-firsati {
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  padding: 0.75rem;
  background: var(--dr-beyaz);
  height: 100%;
}

.dr-gunun-baslik {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.dr-rozet-kirmizi,
.dr-rozet-mavi {
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 3px;
  color: var(--dr-beyaz);
}
.dr-rozet-kirmizi { background: var(--dr-kirmizi); }
.dr-rozet-mavi { background: var(--dr-mavi); }

/* Promo grids */
.dr-promo-grid {
  display: grid;
  gap: 0.75rem;
}
.dr-promo-grid-1 { grid-template-columns: 1fr; }
.dr-promo-grid-2 { grid-template-columns: 1fr; }
.dr-promo-grid-3 { grid-template-columns: 1fr 1fr; }
.dr-promo-grid-4 { grid-template-columns: 1fr 1fr; }

.dr-banner-orta { min-height: 120px; }
.dr-banner-kare { min-height: 100px; aspect-ratio: 1; align-items: center; justify-content: center; text-align: center; }
.dr-banner-genis { min-height: 100px; align-items: center; }
.dr-banner-kampanya { min-height: 90px; align-items: center; justify-content: center; text-align: center; font-size: 0.8125rem; }
.dr-banner-store { min-height: 140px; }

/* Hafta section */
.dr-hafta-grid {
  display: grid;
  gap: 1rem;
}

.dr-hafta-kart {
  background: var(--dr-beyaz);
  border-radius: var(--dr-radius);
  padding: 1rem;
  border: 1px solid var(--dr-gri-cizgi);
}
.dr-hafta-kart h3 { font-size: 1rem; font-weight: 700; margin: 0.75rem 0 0.35rem; }
.dr-hafta-kart p { font-size: 0.8125rem; color: var(--dr-gri); margin-bottom: 0.75rem; }

/* Store grid */
.dr-store-grid {
  display: grid;
  gap: 1rem;
}

/* Carousel */
.dr-carousel {
  position: relative;
}

.dr-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.dr-carousel-track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.dr-carousel-ok {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dr-beyaz);
  box-shadow: var(--dr-golge);
  color: var(--dr-mavi);
  font-size: 1.25rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.dr-carousel-ok-onceki { left: -8px; }
.dr-carousel-ok-sonraki { right: -8px; }

/* Product card */
.dr-urun-kart {
  flex: 0 0 calc(50% - 0.375rem);
  background: var(--dr-beyaz);
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.dr-carousel-tekil .dr-urun-kart { flex: 0 0 100%; }

.dr-urun-gorsel {
  aspect-ratio: 1;
  background: var(--dr-gri-acik);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dr-urun-gorsel.dr-logo-kutu {
  border-radius: 0;
}
.dr-urun-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dr-urun-rozet {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.dr-etiket,
.dr-urun-rozet {
  background: linear-gradient(135deg, var(--logo-gold-dark), var(--logo-gold-light));
  color: #111;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

.dr-urun-bilgi { padding: 0.65rem; }

.dr-urun-ad {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
  margin-bottom: 0.35rem;
}

.dr-urun-marka {
  font-size: 0.6875rem;
  color: var(--dr-gri);
  margin-bottom: 0.35rem;
}

.dr-urun-fiyat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.dr-fiyat-yeni {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--dr-yesil);
}

.dr-fiyat-eski {
  font-size: 0.75rem;
  color: var(--dr-gri);
  text-decoration: line-through;
}

.dr-favori-btn {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dr-beyaz);
  box-shadow: var(--dr-golge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dr-gri);
}
.dr-favori-btn svg { width: 16px; height: 16px; }

/* Category tile */
.dr-kategori-karo {
  flex: 0 0 100px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.dr-kategori-gorsel {
  width: 100px;
  height: 100px;
  border-radius: var(--dr-radius);
  background: var(--dr-gri-acik);
  overflow: hidden;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dr-gri-cizgi);
}

.dr-kategori-gorsel.dr-logo-kutu {
  border: none;
}
.dr-kategori-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dr-kategori-ad {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Placeholders */
.dr-placeholder-gorsel {
  background: var(--logo-silver);
  border-radius: var(--dr-radius);
}
.dr-placeholder-gorsel.dr-logo-kutu::after {
  inset: 8%;
}
.dr-placeholder-gorsel-buyuk { aspect-ratio: 4/3; width: 100%; }

.dr-bos-mesaj {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--dr-gri);
  font-size: 0.875rem;
  width: 100%;
}

.dr-iskelet-kart {
  flex: 0 0 calc(50% - 0.375rem);
  border-radius: var(--dr-radius);
  overflow: hidden;
  border: 1px solid var(--dr-gri-cizgi);
}
.dr-iskelet-gorsel {
  aspect-ratio: 1;
  border-radius: 0;
}
.dr-iskelet-metin { height: 12px; margin: 0.65rem; border-radius: 4px; background: #eee; }
.dr-iskelet-metin-kisa { width: 60%; }

/* Footer — logo gümüş + gold çerçeve */
.dr-footer {
  position: relative;
  isolation: isolate;
  margin-top: 1.5rem;
  padding: 2.25rem 0 calc(1.5rem + var(--dr-safe-bottom));
  background: radial-gradient(ellipse 130% 70% at 50% 0%, #fafafa 0%, #ececec 48%, #d6d6d6 100%);
  color: #1a1a1a;
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.85),
    inset 0 -2px 6px rgba(0, 0, 0, 0.04),
    0 -6px 24px rgba(0, 0, 0, 0.06);
}

.dr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--logo-gold-ring);
  z-index: 2;
}

.dr-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 120%,
    transparent 0 28px,
    rgba(212, 175, 55, 0.05) 28px 29px,
    transparent 29px 56px
  );
  pointer-events: none;
  z-index: 0;
}

.dr-footer > .dr-kapsayici {
  position: relative;
  z-index: 1;
}

.dr-footer-ust {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.dr-footer-marka p {
  font-size: 0.8125rem;
  color: #444;
  margin: 0.75rem 0;
  max-width: 280px;
  line-height: 1.55;
}

.dr-sosyal {
  display: flex;
  gap: 0.5rem;
}

.dr-sosyal a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #e8e8e8 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 2px var(--logo-gold),
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #9a7512;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dr-sosyal a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px var(--logo-gold-light),
    0 4px 12px rgba(154, 117, 18, 0.2);
}

.dr-footer-sutunlar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dr-footer-sutun h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--logo-gold) 0%, rgba(212, 175, 55, 0.15) 100%) 1;
}

.dr-footer-sutun a {
  display: block;
  font-size: 0.8125rem;
  color: #555;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.dr-footer-sutun a:hover {
  color: #9a7512;
}

.dr-footer-odeme,
.dr-footer-app {
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.dr-footer-odeme h3,
.dr-footer-app h3 {
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #111;
  letter-spacing: 0.03em;
}

.dr-odeme-logolar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dr-odeme-logo {
  padding: 0.4rem 0.85rem;
  background: linear-gradient(145deg, #fff 0%, #ededed 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #444;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.dr-footer-app p {
  font-size: 0.8125rem;
  color: #555;
  margin-bottom: 0.75rem;
  max-width: 480px;
  line-height: 1.55;
}

.dr-app-butonlar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dr-app-btn {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(145deg, #fff 0%, #e6e6e6 100%);
  color: #111;
  border: 2px solid var(--logo-gold);
  border-radius: var(--dr-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dr-app-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(154, 117, 18, 0.18);
}

.dr-footer-alt {
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}

.dr-logo-footer img {
  filter: none;
  height: 52px;
  width: auto;
}

/* Kategori public sayfalari (uyumluluk) */
.kategori-public { padding: 1.5rem 0 3rem; }
.kategori-public .kapsayici,
.kategori-public .dr-kapsayici { width: var(--dr-kapsayici); margin-inline: auto; }
.kategori-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--dr-gri);
  margin-bottom: 1rem;
}
.kategori-breadcrumb a { color: var(--dr-mavi); }
.kategori-public-baslik {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.kategori-public-gorsel {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--dr-radius);
  border: 1px solid var(--dr-gri-cizgi);
}
.bolum-baslik { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.35rem; }
.bolum-alt-baslik { color: var(--dr-gri); font-size: 0.9375rem; }
.kategori-alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.kategori-kart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  background: var(--dr-beyaz);
  transition: box-shadow 0.2s;
}
.kategori-kart:hover { box-shadow: var(--dr-golge); }
.kategori-kart .kategori-resim {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--dr-radius);
}
.kategori-yazi .ad { font-weight: 700; font-size: 0.875rem; display: block; }
.kategori-yazi .sayi { font-size: 0.75rem; color: var(--dr-gri); }
.kategori-ozellikler {
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  padding: 1rem;
  background: var(--dr-gri-acik);
}
.kategori-ozellik-baslik { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.kategori-ozellik-listesi { list-style: none; padding: 0; margin: 0; }
.kategori-ozellik-listesi li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--dr-gri-cizgi);
  font-size: 0.875rem;
}
.kategori-ozellik-tip,
.kategori-ozellik-zorunlu {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--dr-gri);
}
.bolum { padding: 1.5rem 0; }

/* Tablet */
@media (min-width: 640px) {
  .dr-urun-kart { flex: 0 0 calc(33.333% - 0.5rem); }
  .dr-iskelet-kart { flex: 0 0 calc(33.333% - 0.5rem); }
  .dr-kategori-karo { flex: 0 0 120px; }
  .dr-kategori-gorsel { width: 120px; height: 120px; }
  .dr-promo-grid-2 { grid-template-columns: 1fr 1fr; }
  .dr-promo-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .dr-promo-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .dr-hafta-grid { grid-template-columns: 1fr 1fr; }
  .dr-store-grid { grid-template-columns: 1fr 1.5fr; align-items: stretch; }
  .dr-carousel-ok { display: flex; }
}

@media (min-width: 768px) {
  .dr-firsat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 992px) {
  .dr-ust-yardim { display: block; }
  .dr-kahraman {
    gap: 1rem;
  }
  .dr-urun-kart { flex: 0 0 calc(20% - 0.6rem); }
  .dr-firsat-grid .dr-urun-kart { flex: unset; }
  .dr-iskelet-kart { flex: 0 0 calc(20% - 0.6rem); }
  .dr-kategori-karo { flex: 0 0 140px; }
  .dr-kategori-gorsel { width: 140px; height: 140px; }
  .dr-footer-ust { grid-template-columns: 1fr 2fr; }
  .dr-footer-sutunlar { grid-template-columns: repeat(4, 1fr); }
  .dr-bolum-baslik h2 { font-size: 1.25rem; }
}

@media (min-width: 1200px) {
  .dr-urun-kart { flex: 0 0 calc(16.666% - 0.625rem); }
  .dr-iskelet-kart { flex: 0 0 calc(16.666% - 0.625rem); }
}

@media (prefers-reduced-motion: reduce) {
  .dr-carousel-track { transition: none; }
  .dr-mobil-menu-panel { animation: none; }
}

/* Arama sayfasi */
.dr-arama-sayfa-icerik {
  padding: 1rem 0 3rem;
  min-height: 50vh;
}

.dr-arama-baslik {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dr-gri-cizgi);
}

.dr-arama-baslik-metin {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #111;
}

.dr-arama-alt-metin {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--dr-gri);
}

.dr-arama-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dr-arama-kart {
  flex: none !important;
  width: 100%;
}

.dr-arama-bos {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  background: var(--dr-gri-acik);
}

.dr-arama-bos p {
  margin: 0 0 1rem;
  color: var(--dr-gri);
}

.dr-arama-yukleniyor {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--dr-gri);
  padding: 2rem;
}

.dr-arama-sayfalama {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dr-arama-sayfa-btn {
  min-height: 40px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dr-gri-cizgi);
  border-radius: var(--dr-radius);
  background: var(--dr-beyaz);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dr-mavi);
}

.dr-arama-sayfa-metin {
  font-size: 0.8125rem;
  color: var(--dr-gri);
  font-weight: 600;
}

.dr-favori-btn.aktif svg {
  fill: var(--dr-kirmizi);
  stroke: var(--dr-kirmizi);
}

#drOturumAlani {
  display: contents;
}

@media (min-width: 640px) {
  .dr-arama-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .dr-arama-baslik-metin {
    font-size: 1.75rem;
  }

  .dr-arama-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dr-arama-sayfa-icerik {
    padding: 0.75rem 0 2rem;
  }
}
