:root {
  --bg: transparent;
  --text: #121212;
  --muted: #4b5563;
  /* WCAG AA: Darker gray for better contrast */
  --border: rgba(229, 231, 235, 0.4);
  --card: transparent;

  --brand: #111827;
  --accent: #e11d48;
  /* premium kırmızı */
  --accent2: #7c3aed;
  /* mor vurgu */
  --gold: #d4af37;

  --radius: 14px;
  --container: 1180px;
  --shadow: none;
  --headerH: 70px;
}

@keyframes color-flash {
  0% {
    color: black;
  }

  33% {
    color: #e11d48;
  }

  /* red */
  66% {
    color: #7c3aed;
  }

  /* purple */
  100% {
    color: black;
  }
}

.flashing-text {
  animation: color-flash 2s infinite;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
  line-height: 1.35
}

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

img {
  max-width: 100%;
  display: block
}

button,
input,
select {
  font: inherit
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px
}

/* Header Container - Sol Boşluğu Azalt */
#mainHeader .container {
  padding-left: 8px;
  padding-right: 8px;
}

/* ============================================
   KOMPAKT MİNİMAL HEADER STİLLERİ
   ============================================ */

/* Header ana wrapper */
#mainHeader {
  padding: 4px 0;
}

/* Header row - elemanlar arası boşluk */
#mainHeader .header-row {
  gap: 6px;
  padding: 2px 0;
  transform: scale(0.9);
  transform-origin: left center;
}

/* Logo küçültme */
#mainHeader .logo img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

#mainHeader .logo span {
  font-size: 13px;
  font-weight: 700;
}

/* Hamburger menü butonu */
#mainHeader .menuBtn {
  width: 32px;
  height: 32px;
  min-width: 32px;
}

#mainHeader .menuBtn svg {
  width: 18px;
  height: 18px;
}

/* WhatsApp ikonu küçültme */
#mainHeader a[href*="wa.me"] svg {
  width: 22px;
  height: 22px;
}

/* Arama kutusu küçültme */
#mainHeader .search {
  padding: 6px 10px;
  min-width: 120px;
  max-width: 200px;
}

#mainHeader .search input {
  font-size: 12px;
}

#mainHeader .search svg {
  width: 14px;
  height: 14px;
}

/* Desktop navigasyon linkleri */
.desktop-header-nav {
  gap: 4px !important;
}

.desktop-header-nav a {
  font-size: 11px !important;
  padding: 4px 8px !important;
  white-space: nowrap;
  border-radius: 6px;
}

.desktop-header-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Auth butonları (Üye Ol, Giriş Yap) */
#mainHeader .btn,
#mainHeader a.btn,
#mainHeader button.btn {
  padding: 4px 8px !important;
  font-size: 10px !important;
  height: 26px !important;
  line-height: 1 !important;
  border-radius: 6px !important;
}

/* Sepet ikonu */
#mainHeader .cartWrap {
  font-size: 16px;
}

/* Sepet badge */
#mainHeader .badge {
  min-width: 14px;
  height: 14px;
  font-size: 9px;
  transform: translate(10px, -10px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-image: url('../assets/backgrounds/premium-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}

.header {
  height: var(--headerH);
  display: flex;
  align-items: center;
  gap: 12px;
}

.iconbtn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.iconbtn:active {
  transform: translateY(1px)
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  transform: scale(1.3);
  clip-path: inset(18%);
}

.brand b {
  font-size: 18px;
  letter-spacing: .2px
}

.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 180px;
}

.search svg {
  opacity: .75
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  display: inline-grid;
  place-items: center;
  position: absolute;
  transform: translate(14px, -14px);
}

.cartWrap {
  position: relative;
  display: inline-block
}

.drawerBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: none;
  z-index: 2147483647 !important;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-image: url('../assets/backgrounds/premium-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-right: 1px solid var(--border);
  transform: translateX(-102%);
  transition: .2s ease;
  z-index: 2147483647 !important;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer.open {
  transform: translateX(0)
}

.drawerBackdrop.open {
  display: block
}

.drawer h3 {
  margin: 10px 0 8px 0;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.navlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}

.pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

main {
  padding: 22px 0 40px
}

.sectionTitle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0 10px;
}

.sectionTitle h2 {
  margin: 0;
  font-size: 20px
}

.sectionTitle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }
}

.slider {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  position: relative;
  min-height: 240px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .3s ease;
}

.slide.active {
  opacity: 1
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sliderControls {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dots {
  display: flex;
  gap: 6px
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .12);
}

.dot.active {
  background: #fff
}

.smallCard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  padding: 16px;
}

.smallCard .kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase
}

.smallCard h3 {
  margin: 8px 0 10px
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border);
  color: var(--text);
}

.btn:active {
  transform: translateY(1px)
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media(max-width:1100px) {
  .grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:820px) {
  .grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Mobil için kart optimizasyonları - Trendyol tarzı */
  .card .thumb {
    height: 140px;
  }

  .card .body {
    padding: 8px;
    gap: 6px;
  }

  .card .title {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card .meta {
    font-size: 11px;
  }

  .card .price {
    font-size: 14px;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .thumb {
  height: 170px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card .body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card .title {
  font-weight: 650
}

.card .meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px
}

.price {
  font-weight: 750
}

.kbd {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
  background: transparent;
}

.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: transparent;
}

.toolbar label {
  font-size: 12px;
  color: var(--muted)
}

.toolbar select,
.toolbar input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
}

.toolbar .spacer {
  flex: 1
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table th {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.table tr:last-child td {
  border-bottom: 0
}

.qty {
  width: 90px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.qty button {
  width: 34px;
  height: 34px;
  border-radius: 10px
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}

.footer a {
  text-decoration: underline
}

.notice {
  border: 1px dashed var(--border);
  background: transparent;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
}

hr.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 18px 0
}

.policy h1 {
  margin: 0 0 10px
}

.policy p,
.policy li {
  color: #374151
}

.policy .muted {
  color: var(--muted);
  font-size: 13px
}

/* =========================
   HAMBURGER MENU SCROLL
========================= */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  /* ekran kadar */
  overflow: hidden;
  /* dış taşmayı kapat */
  display: flex;
  flex-direction: column;
}

/* Menü içeriği kayabilsin */
.drawer>* {
  flex-shrink: 0;
}

/* Kategoriler + linkler için scroll alanı */
.drawer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS smooth scroll */
}

.trustRow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.trustRow span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  font-weight: 500;
  letter-spacing: 0.2px;
}


:root {
  --bg: transparent;
  --text: #121212;
  --muted: #4b5563;
  /* WCAG AA: Darker gray for better contrast */
  --border: rgba(229, 231, 235, 0.4);
  --card: transparent;

  --brand: #111827;
  --accent: #e11d48;
  /* premium kırmızı */
  --accent2: #7c3aed;
  /* mor vurgu */
  --gold: #d4af37;

  --radius: 14px;
  --container: 1180px;
  --shadow: none;
  --headerH: 70px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
  line-height: 1.35
}

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

img {
  max-width: 100%;
  display: block
}

button,
input,
select {
  font: inherit
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-image: url('../assets/backgrounds/premium-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}

.header {
  height: var(--headerH);
  display: flex;
  align-items: center;
  gap: 12px;
}

.iconbtn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.iconbtn:active {
  transform: translateY(1px)
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  transform: scale(1.3);
  clip-path: inset(18%);
}

.brand b {
  font-size: 18px;
  letter-spacing: .2px
}

.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 180px;
}

.search svg {
  opacity: .55
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  display: inline-grid;
  place-items: center;
  position: absolute;
  transform: translate(14px, -14px);
}

.cartWrap {
  position: relative;
  display: inline-block
}

.drawerBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: none;
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-image: url('../assets/backgrounds/premium-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-right: 1px solid var(--border);
  transform: translateX(-102%);
  transition: .2s ease;
  z-index: 61;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer.open {
  transform: translateX(0)
}

.drawerBackdrop.open {
  display: block
}

.drawer h3 {
  margin: 10px 0 8px 0;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.navlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}

.pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

main {
  padding: 22px 0 40px
}

.sectionTitle {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin: 18px 0 10px;
}

.sectionTitle h2 {
  margin: 0;
  font-size: 20px
}

.sectionTitle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }
}

.slider {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  position: relative;
  min-height: 240px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .3s ease;
}

.slide.active {
  opacity: 1
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sliderControls {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dots {
  display: flex;
  gap: 6px
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(0, 0, 0, .12);
}

.dot.active {
  background: #fff
}

.smallCard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  padding: 16px;
}

.smallCard .kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase
}

.smallCard h3 {
  margin: 8px 0 10px
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--border);
  color: var(--text);
}

.btn:active {
  transform: translateY(1px)
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media(max-width:1100px) {
  .grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:820px) {
  .grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:520px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Mobil için kart optimizasyonları - Trendyol tarzı */
  .card .thumb {
    height: 140px;
  }

  .card .body {
    padding: 8px;
    gap: 6px;
  }

  .card .title {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card .meta {
    font-size: 11px;
  }

  .card .price {
    font-size: 14px;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .thumb {
  height: 170px;
  background: transparent;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.card .body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.card .title {
  font-weight: 650
}

.card .meta {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px
}

.price {
  font-weight: 750
}

.kbd {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 999px;
  background: transparent;
}

.row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: transparent;
}

.toolbar label {
  font-size: 12px;
  color: var(--muted)
}

.toolbar select,
.toolbar input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
}

.toolbar .spacer {
  flex: 1
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.table th {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.table tr:last-child td {
  border-bottom: 0
}

.qty {
  width: 90px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.qty button {
  width: 34px;
  height: 34px;
  border-radius: 10px
}

.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}

.footer a {
  text-decoration: underline
}

.notice {
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
}

hr.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 18px 0
}

.policy h1 {
  margin: 0 0 10px
}

.policy p,
.policy li {
  color: #374151
}

.policy .muted {
  color: var(--muted);
  font-size: 13px
}

/* =========================
   HAMBURGER MENU SCROLL
========================= */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  /* ekran kadar */
  overflow: hidden;
  /* dış taşmayı kapat */
  display: flex;
  flex-direction: column;
}

/* Menü içeriği kayabilsin */
.drawer>* {
  flex-shrink: 0;
}

/* Kategoriler + linkler için scroll alanı */
.drawer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS smooth scroll */
}

.trustRow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.trustRow span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  font-weight: 500;
  letter-spacing: 0.2px;
}


/* =====================================================
   PRODUCT CARD – PREMIUM GRID STYLE
===================================================== */

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* Görsel kart */
.product-image {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

/* Alt bilgi alanı */
.product-info {
  padding: 2px 2px 6px;
}

/* Ürün başlığı */
.product-title {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text, #111827);
  margin-bottom: 4px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Kategori + Fiyat */
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Kategori etiketi */
.product-meta .kbd {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #374151;
  white-space: nowrap;
}

/* Fiyat */
.product-price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #111827;
}

/* Mobil optimizasyon */
@media (max-width: 640px) {
  .product-title {
    font-size: 13.5px;
  }

  .product-price {
    font-size: 14px;
  }
}

/* ================================
   PRODUCT IMAGE GALLERY
================================ */

.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
}

.thumbs img:hover {
  transform: scale(1.05);
}

.thumbs img.active {
  border-color: #111827;
}

/* ================================
   LIVE SUPPORT WIDGET
================================ */

.live-support {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 280px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  overflow: hidden;
  z-index: 9999;
  font-family: inherit;
}

.live-header {
  background: #111827;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.live-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.live-body {
  padding: 12px;
}

.live-welcome {
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}

.live-support textarea {
  width: 100%;
  height: 70px;
  resize: none;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 8px;
  font-size: 13px;
  outline: none;
}

.live-support textarea:focus {
  border-color: #111827;
}

.live-support button#sendSupport {
  width: 100%;
  margin-top: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s;
}

.live-support button#sendSupport:hover {
  opacity: .9;
}

/* Mobilde küçült */
@media (max-width: 640px) {
  .live-support {
    width: 92%;
    right: 4%;
    bottom: 10px;
  }
}

/* =========================
   HOME SLIDER
========================= */

.home-slider {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-track img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .slider-track img {
    height: 220px;
  }
}

/* ===============================
   SLIDER PERFECT FIT (NO CROP)
================================ */

.slider {
  position: relative;
  width: 100%;
  height: 420px;
  /* Desktop */
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  /* Boş alan olursa siyah */
}

@media (max-width: 768px) {
  .slider {
    height: 260px;
    /* Mobil */
  }
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* 🚫 KIRPMA YOK */
  object-position: center;
  display: block;
}

/* Slider kontrol butonları SABİT */

.sliderControls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 5;
}

.sliderControls button {
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
}

/* Dotlar sabit */

.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* 🔥 Ürün kartlarında kategori slug gizle */
.product-meta .kbd {
  display: none !important;
}

/* ============================================
   🔥 GLOBAL TEXT COLOR OVERRIDE - HARD BLACK
   Tüm sayfalarda tüm metinler siyah (#000)
============================================ */

/* Base text color override */
html,
body,
div,
span,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
ol,
label,
small,
strong,
em,
b,
i,
th,
td,
caption,
figcaption,
blockquote,
cite,
nav,
header,
footer,
main,
section,
article,
aside {
  color: #000 !important;
}

/* Form elements text color */
input,
select,
textarea,
button,
option {
  color: #000 !important;
}

/* Placeholder text color */
::placeholder {
  color: #000 !important;
  opacity: 0.7;
}

::-webkit-input-placeholder {
  color: #000 !important;
  opacity: 0.7;
}

::-moz-placeholder {
  color: #000 !important;
  opacity: 0.7;
}

:-ms-input-placeholder {
  color: #000 !important;
}

/* Links */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: #000 !important;
}

/* Buttons text */
.btn,
button,
[type="submit"],
[type="button"] {
  color: #000 !important;
}

/* Primary button exception - keep white text */
.btn.primary,
button.primary {
  color: #fff !important;
}

/* Navigation and menu text */
.navlink,
.nav-link,
.menu-item,
.drawer a {
  color: #000 !important;
}

/* Badge text stays white */
.badge {
  color: #fff !important;
}

/* Muted text override */
.muted,
[class*="muted"],
.text-muted {
  color: #000 !important;
}

/* ============================================
   ADIM 1 - SEPET İKONU %100 ORTALAMA
   Header'daki sepet ikonunu tam ortala
============================================ */

/* Sepet ikon kapsayıcısı - tam ortalama */
.cartWrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* Sepet içindeki emoji/svg düzgün hizalansın */
.cartWrap svg,
.cartWrap img {
  display: block !important;
}

/* Badge (kırmızı sayı) - absolute, ikonu itmesin */
.cartWrap .badge {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  transform: none !important;
}

/* Tüm iconbtn'leri ortalı yap */
.iconbtn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ============================================
   ADIM 2 - MOBİL PWA UI (max-width: 768px)
   Uygulama hissi, taşma yok, dokunmatik uyum
============================================ */

/* PWA body ayarları */
html,
body {
  /* overscroll-behavior: none removed to allow natural scroll initiation */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Safe area padding (notch desteği) */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Yatay scroll engelle */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Görseller taşmasın */
img,
video,
iframe {
  max-width: 100% !important;
  height: auto !important;
}

/* Form input zoom sorununu engelle (iOS) */
input,
select,
textarea {
  font-size: 16px !important;
}

@media (max-width: 768px) {

  /* Container mobil padding */
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Header mobilde düzgün dursun */
  .header {
    gap: 8px !important;
  }

  /* Arama kutusu mobilde küçülsün */
  .search {
    min-width: auto !important;
    flex: 1 !important;
  }

  .search input {
    font-size: 16px !important;
  }

  /* Dokunmatik hedefler min 44px */
  .iconbtn,
  .btn,
  button,
  a.navlink {
    min-height: 44px !important;
    min-width: 44px !important;
  }

  /* Grid tek kolona insin */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Hero mobilde tek kolon */
  .hero {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Kartlar mobilde tam genişlik */
  .card,
  .smallCard {
    width: 100% !important;
  }

  /* Drawer tam ekran hissi */
  .drawer {
    width: 85vw !important;
    max-width: 320px !important;
  }

  /* Footer mobilde ortalı */
  .footer .container {
    text-align: center !important;
  }

  /* Section'lar mobilde padding */
  .home-hero,
  .delivery-zone,
  .map-zone,
  .contact-zone,
  .qr-zone,
  .about-zone,
  .faq-zone,
  .security-zone {
    padding: 20px 16px !important;
    margin: 16px 0 !important;
  }

  /* Row/Flex mobilde sarılsın */
  .row,
  .ctaRow,
  .trustRow,
  .contact-links {
    flex-wrap: wrap !important;
  }

  /* Butonlar mobilde tam genişlik */
  .btn.primary {
    width: 100% !important;
    text-align: center !important;
  }

  /* Live support mobilde */
  .live-support {
    width: 92% !important;
    right: 4% !important;
    left: 4% !important;
    bottom: 10px !important;
  }
}

/* Küçük mobil (max-width: 480px) */
@media (max-width: 480px) {

  /* Header brand küçülsün */
  .brand b {
    font-size: 14px !important;
  }

  .brand img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    transform: scale(1.3) !important;
    clip-path: inset(18%) !important;
  }

  /* Başlıklar küçülsün */
  h1 {
    font-size: 1.5rem !important;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  h3 {
    font-size: 1.1rem !important;
  }

  /* Section padding azalsın */
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ============================================
   ADIM 3 - DESKTOP %100 UYUM (min-width: 1024px)
   Container sınırları, grid dengesi, hizalama
============================================ */

@media (min-width: 1024px) {

  /* Container max-width ve ortalama */
  .container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Grid desktop'ta 4 kolon */
  .grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }

  /* Hero desktop'ta düzgün oran */
  .hero {
    grid-template-columns: 1.4fr 0.6fr !important;
    gap: 20px !important;
  }

  /* Header elemanları hizalı */
  .header {
    gap: 16px !important;
  }

  /* Arama kutusu genişliği */
  .search {
    max-width: 400px !important;
  }

  /* Section'lar desktop padding */
  .home-hero,
  .delivery-zone,
  .map-zone,
  .contact-zone,
  .qr-zone,
  .about-zone,
  .faq-zone,
  .security-zone {
    padding: 40px !important;
    margin: 30px 0 !important;
  }
}

/* Geniş ekran (min-width: 1440px) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px !important;
  }
}

/* =====================================================
   PC HEADER NAV - SADECE DESKTOP (min-width: 1024px)
===================================================== */

/* Varsayılan: Mobil ve tablet'te gizli */
.desktop-header-nav {
  display: none;
}

/* Desktop'ta görünür */
@media (min-width: 1024px) {
  .desktop-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
  }

  .desktop-header-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .desktop-header-nav a:hover {
    background: var(--accent);
    color: #fff !important;
    border-color: var(--accent);
  }
}

/* ============================================
   MOBİL ARAMA TOGGLE - SADECE MOBİLDE
============================================ */

/* Desktop'ta toggle butonu gizle */
.searchToggleBtn {
  display: none !important;
}

/* Mobilde toggle butonu göster, arama kutusu gizle */
@media (max-width: 768px) {

  /* Toggle butonu görünsün */
  .searchToggleBtn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Arama kutusu varsayılan gizli */
  .search {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--border) !important;
    z-index: 100 !important;
  }

  /* Arama kutusu açıkken göster */
  .search.search-open {
    display: flex !important;
  }

  /* Topbar relative olsun ki search absolute çalışsın */
  .topbar {
    position: sticky !important;
  }
}

/* ============================================
   SLIDER OK BUTONLARI - SOL/SAĞ KENAR
============================================ */

/* Slider controls container'ı düzelt */
.sliderControls {
  position: absolute !important;
  bottom: 16px !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 12px !important;
}

/* Sol ok butonu - en sola */
.sliderControls #prev {
  order: 1 !important;
}

/* Dots ortada */
.sliderControls .dots {
  order: 2 !important;
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
}

/* Sağ ok butonu - en sağa */
.sliderControls #next {
  order: 3 !important;
}

/* Ok butonları görünümü */
.sliderControls .btn {
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
}

/* Mobilde slider controls düzgün görünsün */
@media (max-width: 768px) {
  .sliderControls {
    padding: 0 8px !important;
    bottom: 10px !important;
  }

  .sliderControls .btn {
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 1.2rem !important;
  }
}

/* ============================================
   SLIDER ARROWS - HIDE COMPLETELY (MADDE 3)
============================================ */

.sliderControls #prev,
.sliderControls #next {
  display: none !important;
}

.sliderControls {
  justify-content: center !important;
}

/* ============================================
   PRODUCT CARD - SEPETE EKLE BUTTON (MADDE 4)
============================================ */

.product-cart-action {
  padding: 8px 10px 10px;
  margin-top: auto;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: var(--accent, #e11d48);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
  background: #c81d42;
  transform: translateY(-1px);
}

.cart-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.counter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.counter-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.counter-minus {
  border-right: 1px solid var(--border);
}

.counter-plus {
  border-left: 1px solid var(--border);
}

.counter-qty {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  min-width: 40px;
}

/* ============================================
   CART ACTION ROW - KOMPAKT TASARIM
============================================ */
.cart-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.cart-counter-mini {
  flex: 0 0 auto;
  width: auto;
  min-width: 90px;
}

.cart-counter-mini .counter-btn {
  width: 28px;
  height: 32px;
  font-size: 14px;
}

.cart-counter-mini .counter-qty {
  min-width: 24px;
  font-size: 13px;
}

.cart-go-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  background: var(--accent, #9333ea);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.cart-go-btn:hover {
  background: #7c3aed;
}

@media (max-width: 400px) {
  .cart-action-row {
    gap: 4px;
    width: 100%;
  }

  .cart-counter-mini .counter-btn {
    width: 26px;
    height: 32px;
    font-size: 13px;
  }

  .cart-counter-mini .counter-qty {
    min-width: 20px;
    font-size: 12px;
    padding: 0 2px;
  }

  .cart-go-btn {
    padding: 8px 10px;
    font-size: 12px;
    min-width: 80px;
    flex: 1;
  }
}

/* ============================================
   LIVE SUPPORT MINIMAL (MADDE 8)
============================================ */

.live-support {
  width: 260px;
  background-image: url('../assets/backgrounds/premium-bg.webp');
  background-size: cover;
}

#minimizeSupport {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.live-support-mini {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: liveSupportWobble 3s ease-in-out infinite;
}

.live-support-mini.active {
  display: flex;
}

@keyframes liveSupportWobble {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-3px) rotate(-2deg);
  }

  75% {
    transform: translateY(-3px) rotate(2deg);
  }
}

@media (display-mode: standalone) {
  .live-support {
    width: 220px;
    font-size: 12px;
  }

  .live-support-mini {
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   PRODUCT LIGHTBOX (MADDE 5,6)
============================================ */

.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.product-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 70vh;
  overflow: hidden;
  cursor: zoom-in;
}

.lightbox-image-wrap.zoomed {
  cursor: move;
  overflow: auto;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.15s ease;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  max-width: 90vw;
}

.lightbox-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
}

.lightbox-thumbs img.active {
  border-color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .lightbox-image-wrap {
    max-width: 100vw;
    max-height: 65vh;
    touch-action: pinch-zoom;
  }

  .lightbox-thumbs img {
    width: 50px;
    height: 50px;
  }
}

/* =====================================================
   TRENDYOL MOBİL UI STİLLERİ
   Sadece 520px altı mobil için geçerli
===================================================== */

/* Mobil Üst Nav - PC'de gizli */
.mobile-top-nav {
  display: none;
}

@media (max-width: 520px) {

  /* ===== MOBİL ÜST NAV BUTONLARI ===== */
  .mobile-top-nav {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: transparent;
    border-bottom: 1px solid var(--border);
  }

  .mobile-top-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-top-nav a {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text);
    text-decoration: none;
  }

  .mobile-top-nav a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }

  /* ===== MOBİL TOOLBAR SADELEŞTİRME ===== */
  /* ===== MOBİL TOOLBAR DİKEY DÜZEN ===== */
  .toolbar {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 12px !important;
  }

  .toolbar>div {
    width: 100% !important;
    flex: none !important;
    min-width: 100% !important;
  }

  /* Sıralama: Kategori → Sıralama → Filtreleri Sıfırla */
  .toolbar div:has(#cat) {
    order: 1 !important;
  }

  .toolbar div:has(#sort) {
    order: 2 !important;
  }

  .toolbar #clearFilters {
    order: 3 !important;
    width: 100% !important;
  }

  .toolbar .spacer {
    display: none !important;
  }

  /* Mobilde gizlenecek alanlar */
  .toolbar .mobile-hide,
  .toolbar #rating,
  .toolbar [for="rating"],
  .toolbar div:has(#rating),
  .toolbar #price,
  .toolbar [for="price"],
  .toolbar div:has(#price) {
    display: none !important;
  }

  /* ===== MOBİL KATEGORİ SCROLL ===== */
  .toolbar select#cat,
  .toolbar select#sort {
    width: 100%;
    padding: 12px;
  }
}

/* =====================================================
   MOBİL ÜRÜN GRİD - 2'Lİ TRENDYOL TARZI
   Sadece ürün listeleme alanları için geçerli
   Desktop/tablet ETKİLENMEZ
===================================================== */
@media (max-width: 768px) {

  /* Ürün grid container'ları - 2 kolon */
  #productsGrid,
  #popularGrid,
  .container>.grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  /* Kartlar taşmasın */
  #productsGrid>.card,
  #popularGrid>.card,
  .container>.grid>.card {
    min-width: 0;
    width: 100%;
  }

  /* Kart başlığı 2 satırda kesilsin */
  #productsGrid .card .title,
  #popularGrid .card .title,
  .container>.grid>.card .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
  }

  /* Görsel oranı korunsun */
  #productsGrid .card .thumb,
  #popularGrid .card .thumb,
  .container>.grid>.card .thumb {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  #productsGrid .card .thumb img,
  #popularGrid .card .thumb img,
  .container>.grid>.card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ================================
   BLUR-SENSITIVE PRODUCT CARDS
================================ */
.blur-sensitive .product-image img {
  filter: blur(5px) saturate(0.9);
  transition: filter 0.25s ease;
}

.blur-sensitive:hover .product-image img {
  filter: blur(0);
}

.blur-reveal .product-image img {
  filter: blur(0) !important;
}

/* Blog Image Placeholder */
.blog-img {
  background-color: #e5e7eb;
  min-height: 200px;
  object-fit: cover;
  display: block;
  width: 100%;
}