/* Gorki - Static Export for C# MVC */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
}

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease-out forwards; }
.animate-slide-right { animation: slideRight 0.5s ease-out forwards; }

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.15s; opacity: 0; }
.delay-3 { animation-delay: 0.2s; opacity: 0; }
.delay-4 { animation-delay: 0.25s; opacity: 0; }
.delay-5 { animation-delay: 0.3s; opacity: 0; }
.delay-6 { animation-delay: 0.35s; opacity: 0; }

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.hover-scale { transition: transform 0.4s ease; }
.hover-scale:hover { transform: scale(1.03); }

.scroll-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar { display: none; }

.icon-btn {
  transition: opacity 0.2s ease, transform 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: inherit;
}
.icon-btn:hover {
  opacity: 0.6;
  transform: scale(1.1);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 960;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
}
.site-header--lux:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-header.scrolled {
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
}
.site-header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.site-header.transparent .logo,
.site-header.transparent .nav-link,
.site-header.transparent .nav-btn,
.site-header.transparent .nav-menu-trigger,
.site-header.transparent .header-icons { color: #fff; }
.site-header.scrolled .logo,
.site-header.scrolled .nav-link,
.site-header.scrolled .nav-btn,
.site-header.scrolled .nav-menu-trigger,
.site-header.scrolled .header-icons { color: #000; }

.site-logo-img {
  height: 28px;
  width: auto;
  display: block;
  max-width: 100%;
}

.site-title-text {
  display: block;
  max-width: min(520px, 68vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--site-title-color, currentColor);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  overflow: visible;
}

/* Lüks header: hamburger + (logo) + ikonlar; yan panel hamburger altına bağlı */
.header-inner--lux {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.header-inner--with-sidebar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  position: relative;
}

.nav-sidebar-anchor {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  z-index: 970;
}

.header-inner--with-sidebar .nav-menu-trigger {
  flex: 0 0 auto;
}

.header-center-cluster {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  width: 100%;
}

.header-center-cluster .logo--header {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  max-width: min(560px, calc(100% - 220px));
}

.header-inner--with-sidebar .header-icons {
  flex: 0 0 auto;
  margin-left: auto;
  justify-self: unset;
  grid-column: unset;
}

.header-currency-wrap,
.header-lang-wrap {
  display: flex;
  align-items: center;
  margin-right: 8px;
  min-width: 0;
}

.search-inline {
  display: none;
  min-width: 0;
}

.search-inline__input {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  padding: 8px 0;
  width: 180px;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: inherit;
  min-width: 0;
}

.site-header.scrolled .search-inline__input {
  border-bottom-color: rgba(0,0,0,0.35);
}

.icon-btn--cart {
  position: relative;
}
.nav-menu-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.nav-menu-trigger:hover {
  opacity: 0.85;
}
.nav-menu-trigger__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.nav-menu-trigger__icon span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
body.nav-menu-open .nav-menu-trigger__icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.nav-menu-open .nav-menu-trigger__icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-menu-open .nav-menu-trigger__icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.logo--header {
  justify-self: center;
  grid-column: 2;
}

.header-inner--with-sidebar .logo--header {
  justify-self: unset;
  grid-column: unset;
}

.header-inner--lux .header-icons {
  justify-self: end;
  grid-column: 3;
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 12px;
  }

  .header-inner--with-sidebar {
    gap: 10px;
  }

  .header-icons {
    gap: 12px;
  }

  .site-header .logo {
    font-size: 24px;
  }

  .header-center-cluster .logo--header { max-width: calc(100% - 150px); }

  .site-title-text {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: 0.12em;
  }

  .nav-menu-trigger__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 520px) {
  .header-currency-wrap,
  .header-lang-wrap {
    display: none !important;
  }

  .header-center-cluster .logo--header { max-width: calc(100% - 116px); }
}

/* ——— Kadın/Erkek sütunları (sidebar içindeki NavbarCategoryMega) ——— */
.nav-mega-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav-mega-gender {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff4d4d;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-mega-gender:hover,
.nav-mega-gender:focus-visible {
  color: #e03d3d;
  transform: translateX(4px);
  outline: none;
}

.nav-mega-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mega-section-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-mega-section-title:hover,
.nav-mega-section-title:focus-visible {
  color: #ff4d4d;
  transform: translateX(4px);
  outline: none;
}

.nav-mega-sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mega-sublist a {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #444;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-mega-sublist a:hover,
.nav-mega-sublist a:focus-visible {
  color: #111;
  transform: translateX(5px);
  outline: none;
}

.nav-mega-empty {
  padding: 8px 0;
  font-size: 0.85rem;
  color: #666;
  max-width: 520px;
}

/* Yan menü içi: aynı Kadın/Erkek + üst/alt kategori ağacı */
.nav-sidebar-mega .nav-mega-columns {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: none;
  margin: 0;
}


@media (max-width: 640px) {
  .header-center-cluster {
    gap: 12px;
  }
}

/* ——— Yan menü: masaüstünde hamburger altında (viewport’a yapışmaz); mobilde tam yükseklik ——— */
.nav-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}
.nav-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .nav-menu-overlay {
    display: none !important;
  }
}

.nav-sidebar {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

/* Masaüstü: FLAW tarzı sol sabit şerit — tam yükseklik, başta şeffaf, hover’da beyaz, büyük tipografi */
@media (min-width: 992px) {
  .nav-sidebar-anchor {
    display: contents;
  }

  .nav-menu-trigger {
    display: none !important;
  }

  .nav-sidebar.nav-sidebar--rail {
    position: fixed;
    left: 0;
    top: 0;
    margin-top: 0;
    width: clamp(260px, 22vw, 360px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: none;
    z-index: 955;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: background 0.38s ease, box-shadow 0.38s ease;
  }

  .nav-sidebar.nav-sidebar--rail:hover {
    background: #ffffff;
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.08);
  }

  /* Hero üzerinde: şeffaf şerit + beyaz metin; hover’da beyaz zemin + koyu metin */
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__title,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__section-label,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-mega-gender,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-mega-section-title,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-mega-sublist a,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--gender,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--section,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--sub,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--in-panel,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__muted {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__gender-panel .nav-sidebar__column-title-link:not(.nav-sidebar__column-title-link--static) {
    color: #ff8a8a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__gender-panel {
    border-left-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--accent {
    color: #ff8a8a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__title,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__section-label,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-mega-gender,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-mega-section-title,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-mega-sublist a,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--gender,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--section,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--sub,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--in-panel,
  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__muted {
    color: #111;
    text-shadow: none;
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--gender {
    color: #ff4d4d;
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__gender-panel .nav-sidebar__column-title-link:not(.nav-sidebar__column-title-link--static) {
    color: #ff4d4d;
    text-shadow: none;
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__gender-panel {
    border-left-color: rgba(255, 77, 77, 0.45);
    background: rgba(0, 0, 0, 0.02);
  }

  .site-header.transparent .nav-sidebar.nav-sidebar--rail:hover .nav-sidebar__link--accent {
    color: #ff4d4d;
    text-shadow: none;
  }

  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__title,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__section-label,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-mega-gender,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-mega-section-title,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-mega-sublist a,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--gender,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--section,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--sub,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--in-panel,
  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__muted {
    color: #111;
    text-shadow: none;
  }

  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--accent {
    color: #ff4d4d;
  }

  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__gender-panel .nav-sidebar__column-title-link:not(.nav-sidebar__column-title-link--static) {
    color: #ff4d4d;
    text-shadow: none;
  }

  .site-header.scrolled .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--gender {
    color: #ff4d4d;
  }

  /* Büyük “eski” menü ölçüsü — referans görsel */
  .nav-sidebar.nav-sidebar--rail .nav-sidebar__inner {
    min-height: 100%;
    padding: calc(72px + env(safe-area-inset-top, 0px)) clamp(28px, 2.8vw, 48px) 56px clamp(24px, 2.4vw, 44px);
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__title {
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 clamp(2rem, 4vh, 3rem);
    text-transform: none;
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__list {
    gap: clamp(26px, 3.2vh, 38px);
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__link {
    font-size: clamp(0.9rem, 1.05vw, 1.0625rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.25;
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__divider {
    margin: clamp(36px, 5vh, 52px) 0 clamp(28px, 4vh, 40px);
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
  }

  .nav-sidebar.nav-sidebar--rail .nav-mega-gender {
    font-size: clamp(0.88rem, 1vw, 1rem);
  }

  .nav-sidebar.nav-sidebar--rail .nav-mega-section-title {
    font-size: 0.78rem;
  }

  .nav-sidebar.nav-sidebar--rail .nav-mega-sublist a {
    font-size: 0.82rem;
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--gender {
    font-size: clamp(0.88rem, 1vw, 1rem);
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__column-title,
  .nav-sidebar.nav-sidebar--rail .nav-sidebar__column-title-link {
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    letter-spacing: 0.11em;
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--section {
    font-size: 0.78rem;
  }

  .nav-sidebar.nav-sidebar--rail .nav-sidebar__link--sub {
    font-size: 0.82rem;
  }
}

/* Masaüstü — banner altına kayınca: sol şerit kalkar, hamburger + hover ile açılan panel */
@media (min-width: 992px) {
  body.nav-past-hero .nav-sidebar-anchor {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 970;
  }

  body.nav-past-hero .nav-menu-trigger {
    display: inline-flex !important;
  }

  /* Banner’daki sol şerit ile birebir: fixed, tam yükseklik, aynı genişlik; iç padding rail kurallarından (override yok) */
  body.nav-past-hero .nav-sidebar.nav-sidebar--rail {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    width: clamp(260px, 22vw, 360px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: none;
    z-index: 955;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: none;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      background 0.38s ease,
      box-shadow 0.38s ease;
  }

  body.nav-past-hero .nav-sidebar.nav-sidebar--rail.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-past-hero .nav-sidebar.nav-sidebar--rail.is-open:hover {
    background: #ffffff;
    box-shadow: 16px 0 48px rgba(0, 0, 0, 0.08);
  }

  body.nav-past-hero .nav-sidebar-anchor:has(.nav-sidebar.is-open) .nav-menu-trigger__icon span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  body.nav-past-hero .nav-sidebar-anchor:has(.nav-sidebar.is-open) .nav-menu-trigger__icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.nav-past-hero .nav-sidebar-anchor:has(.nav-sidebar.is-open) .nav-menu-trigger__icon span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* Mobil: klasik tam yükseklik çekmece + overlay */
@media (max-width: 991.98px) {
  .nav-sidebar-anchor {
    position: static;
  }

  .nav-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: min(320px, 92vw);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    min-height: 0;
    margin-top: 0;
    background: #ffffff;
    box-shadow: 12px 0 48px rgba(0, 0, 0, 0.08);
    transform: translateX(-105%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-radius: 0;
    border: none;
  }

  .nav-sidebar.is-open {
    transform: translateX(0);
  }
}

.nav-sidebar__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: calc(70px + 28px) 32px 40px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .nav-sidebar:not(.nav-sidebar--rail) .nav-sidebar__inner {
    min-height: 0;
    padding: 22px 28px 32px;
  }
}

.nav-sidebar__title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 36px;
}

.nav-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ——— Kadın / Erkek: Menü başlığının altında, promolardan önce; alt menü hissi ——— */
.nav-sidebar__gender-region {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-sidebar__gender-region--empty {
  padding: 4px 0 8px;
}

.nav-sidebar__gender-panels {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

/* Blok: "Menü"nün alt seviyesi gibi — çizgi + iç boşluk */
.nav-sidebar__gender-panel {
  margin: 0;
  padding: 10px 12px 12px 14px;
  border-left: 3px solid rgba(255, 77, 77, 0.35);
  border-radius: 0 6px 6px 0;
  background: rgba(0, 0, 0, 0.02);
}

.nav-sidebar__column-title {
  margin: 0 0 14px;
  padding: 0;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-sidebar__column-title-link {
  color: #ff4d4d;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-sidebar__column-title-link:hover,
.nav-sidebar__column-title-link:focus-visible {
  color: #e03d3d;
  outline: none;
  transform: translateX(4px);
}

.nav-sidebar__column-title-link--static {
  cursor: default;
  transform: none;
}

.nav-sidebar__gender-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-sidebar__link--gender-inline {
  display: inline-block;
  margin-bottom: 10px;
}

.nav-sidebar__link--in-panel {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.nav-sidebar__section {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-sidebar__sublist {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(17, 17, 17, 0.12);
}

.nav-sidebar__list-divider {
  list-style: none;
  height: 1px;
  margin: 6px 0 4px;
  padding: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02));
  align-self: stretch;
}

.nav-sidebar__link {
  display: inline-block;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  line-height: 1.35;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
  will-change: transform;
}
.nav-sidebar__link:hover,
.nav-sidebar__link:focus-visible {
  transform: translateX(5px);
  color: #ff4d4d;
  outline: none;
}
.nav-sidebar__link--accent {
  color: #ff4d4d;
}
.nav-sidebar__link--accent:hover,
.nav-sidebar__link--accent:focus-visible {
  color: #e03d3d;
}

.nav-sidebar__footer {
  padding-top: 10px;
}

.nav-sidebar__switchers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-sidebar__switch {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}

.nav-sidebar__footer .currency-switcher,
.nav-sidebar__footer .lang-switcher {
  width: 100%;
}

/* Kadın/Erkek + alt kategoriler (ana menü listesi içinde) */
.nav-sidebar__gender-block {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-sidebar__gender-sections {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
}

.nav-sidebar__section-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-sidebar__section-subs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-sidebar__link--gender {
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff4d4d;
}

.nav-sidebar__link--gender:hover,
.nav-sidebar__link--gender:focus-visible {
  color: #e03d3d;
}

.nav-sidebar__link--section {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
}

/* Panel içi en alt seviye (üst başlıktan küçük) */
.nav-sidebar__gender-panel .nav-sidebar__link--sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #444;
  opacity: 0.95;
}

.nav-sidebar__cat-inline-empty {
  list-style: none;
}

.nav-sidebar__muted {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}

.nav-sidebar__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.02));
  margin: 40px 0 28px;
}

.nav-sidebar__section-label {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 16px;
}

.nav-sidebar__cat-wrap .cat-menu {
  gap: 0;
}
.nav-sidebar__cat-wrap .cat-root-link,
.nav-sidebar__cat-wrap .cat-root-toggle {
  padding: 12px 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-radius: 0;
}
.nav-sidebar__cat-wrap .cat-root-toggle:hover,
.nav-sidebar__cat-wrap .cat-root-link:hover {
  background: transparent;
  color: #ff4d4d;
}
.nav-sidebar__cat-wrap .cat-links {
  margin: 0 0 8px;
  padding: 4px 0 8px 12px;
  border-top: none;
  border-left: 2px solid #f0f0f0;
}
.nav-sidebar__cat-wrap .cat-link-item,
.nav-sidebar__cat-wrap .cat-link-all {
  padding: 8px 0;
  font-size: 0.75rem;
}

.nav-sidebar__footer {
  margin-top: auto;
  padding-top: 48px;
}
.nav-sidebar__custom {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.nav-sidebar__tag {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0;
}

@media (max-width: 991.98px) {
  body.nav-menu-open {
    overflow: hidden;
  }
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.nav-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 16px 0;
  min-width: 180px;
  margin-top: 16px;
  z-index: 200;
  display: none;
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 12px;
  color: #000;
  letter-spacing: 0.08em;
  transition: background 0.2s ease;
}
.dropdown-menu a:hover { background: #f5f5f5; }

.dropdown-menu-categories {
  min-width: 340px;
  border-radius: 12px;
  border: 1px solid #ece7df;
  padding: 12px 0;
}

.cat-menu {
  display: flex;
  flex-direction: column;
}

.cat-root-link,
.cat-root-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
}

.cat-root-link:hover,
.cat-root-toggle:hover {
  background: #f8f5ef;
}

.cat-arrow {
  font-size: 10px;
  opacity: .8;
}

.cat-links {
  display: none;
  padding: 4px 0 8px;
  border-top: 1px solid #f0ece4;
  margin: 0 12px;
}

.cat-links.open {
  display: block;
}

.cat-link-all,
.cat-link-item {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  color: #2a241d;
  border-radius: 8px;
}

.cat-link-all {
  font-weight: 600;
}

.cat-link-item:hover,
.cat-link-all:hover {
  background: #f6f0e5;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.site-header.transparent .cart-badge { background: #fff; color: #000; }
.site-header.scrolled .cart-badge { background: #000; color: #fff; }

/* Hero */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 24px;
}

/* Main content */
.main-wrap {
  position: relative;
  z-index: 1;
  background: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: -24px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

/* Sections */
.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.home-category-section {
  padding-top: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid #f0f0f0;
}

.product-slider {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider-track {
  display: flex;
  gap: 24px;
}

.product-slide {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 220px;
}

.slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Responsive product grid (mobile-first) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .product-slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-slide {
    flex: 0 0 80%;
  }
  .product-card .img-wrap {
    margin-bottom: 12px;
  }
}

@media (max-width: 520px) {
  /* Mobilde ürün odağı: daha büyük kartlar */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .product-card .img-wrap {
    margin-bottom: 14px;
  }
  .product-card h3 {
    font-size: 16px !important;
    line-height: 1.25 !important;
  }
  .product-card .text-small {
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .product-grid {
    gap: 12px;
  }
}

.product-card {
  display: block;
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f8f8f8;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.05); }

.product-card.is-out-of-stock .img-wrap img {
  filter: grayscale(1) blur(1.4px);
}
.product-card.is-out-of-stock {
  opacity: 0.78;
}
.product-card.is-out-of-stock:hover {
  transform: none;
  box-shadow: none;
}
.product-card.is-out-of-stock p,
.product-card.is-out-of-stock h3,
.product-card.is-out-of-stock span,
.product-card.is-out-of-stock div {
  color: #777 !important;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge.badge-right { left: auto; right: 12px; }
.badge.badge-sale { background: #c41e3a; }
.badge.badge-stockout {
  background: #4b5563;
  left: 12px;
  right: auto;
  z-index: 2;
}

/* Category cards */
.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-right: 24px;
}
.category-card {
  flex-shrink: 0;
  width: 220px;
  position: relative;
  overflow: hidden;
}
.category-card .img-wrap {
  aspect-ratio: 3/4;
  position: relative;
}
.category-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.category-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* CTA Banner */
.cta-banner {
  background: #000;
  color: #fff;
  padding: 100px 24px;
  text-align: center;
}
.cta-banner .section-title { color: #fff; }
.cta-banner .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #fff;
  color: #fff;
  padding: 18px 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Footer — fixed hero (z-index:0) viewport’ta kaldığı için üstte görünmeli */
.site-footer {
  position: relative;
  z-index: 2;
  background: #fafafa;
  padding: 48px 24px;
  border-top: 1px solid #eee;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  color: var(--footer-brand-color, #000);
}
.footer-links {
  display: flex;
  gap: 80px;
}
.footer-col h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { font-size: 13px; color: #666; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 0;
}

.footer-social a,
.footer-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #444;
}

.footer-social a {
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.18);
  outline: none;
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

/* Floating social contact widget */
.floating-social-widget {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  animation: social-widget-in 420ms ease-out forwards;
}

.floating-social-widget__tab,
.floating-social-widget__list {
  pointer-events: auto;
}

.floating-social-widget__tab {
  border: none;
  background: #111;
  color: #fff;
  padding: 12px 10px;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.floating-social-widget__tab:hover,
.floating-social-widget__tab:focus-visible {
  background: #000;
}

.floating-social-widget__list {
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 12px 0 0 12px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transform: translateX(115%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.24s ease, visibility 0.24s ease;
}

.floating-social-widget:hover .floating-social-widget__list,
.floating-social-widget:focus-within .floating-social-widget__list,
.floating-social-widget.is-open .floating-social-widget__list {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.floating-social-widget:hover .floating-social-widget__tab,
.floating-social-widget.is-open .floating-social-widget__tab {
  transform: rotate(180deg) translateX(-2px);
}

.floating-social-widget .footer-social a {
  width: 38px;
  height: 38px;
}

@keyframes social-widget-in {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@media (max-width: 991px) {
  .floating-social-widget {
    top: auto;
    bottom: 76px;
    right: 12px;
    transform: none;
    animation-name: social-widget-in-mobile;
  }

  .floating-social-widget__tab {
    writing-mode: initial;
    transform: none;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .floating-social-widget:hover .floating-social-widget__tab,
  .floating-social-widget.is-open .floating-social-widget__tab {
    transform: translateY(-1px);
  }

  .floating-social-widget__list {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    border-radius: 12px;
    transform: translateY(8px);
  }

  .floating-social-widget:hover .floating-social-widget__list,
  .floating-social-widget:focus-within .floating-social-widget__list,
  .floating-social-widget.is-open .floating-social-widget__list {
    transform: translateY(0);
  }

  .floating-social-widget .footer-social a {
    width: 34px;
    height: 34px;
  }
}

@keyframes social-widget-in-mobile {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-credit {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 16px 24px;
  text-align: center;
}
.footer-credit p { font-size: 11px; color: #666; letter-spacing: 0.05em; }
.footer-credit a { color: #888; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  padding: 18px 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #000;
  color: #fff;
  padding: 16px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.btn-primary:hover { background: #333; }
.btn-secondary {
  background: transparent;
  color: #000;
  border: 1px solid #ddd;
}

/* Cart Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  transition: opacity 0.3s ease;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.cart-drawer.open {
  right: 0;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none;
  font-family: inherit;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #333;
}

/* Page layouts */
.page-header-simple {
  padding: 24px;
  border-bottom: 1px solid #e8e8e3;
  text-align: center;
}
.page-header-simple .logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #000;
}

.content-box {
  background: #fff;
  padding: 32px;
  margin-bottom: 24px;
}

/* Filter pills */
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
  font-family: inherit;
}
.filter-pill.active {
  border-color: #000;
  background: #000;
  color: #fff;
}

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.error-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 32px;
}
.error-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Utility */
.text-muted { color: #888; }
.text-small { font-size: 13px; color: #666; }
.mb-0 { margin-bottom: 0; }

/* Dil seçici + genel responsive yardımcılar */
.lang-switcher {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher__link {
  color: inherit;
  text-decoration: none;
  opacity: 0.88;
}
.lang-switcher__link:hover {
  opacity: 1;
  text-decoration: underline;
}
.lang-switcher__sep {
  opacity: 0.4;
  margin: 0 4px;
  user-select: none;
}
.lang-switcher__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}
.site-header.scrolled .lang-switcher__flag {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.03);
}

.currency-switcher {
  font-size: 11px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.currency-switcher__item {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
}
.currency-switcher__item:hover {
  text-decoration: underline;
}
.currency-switcher__sep {
  opacity: 0.45;
  margin: 0 4px;
}
@media (max-width: 520px) {
  .header-lang-wrap {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

body {
  overflow-x: clip;
}
.main-wrap img,
section img {
  max-width: 100%;
  height: auto;
}

/* Cart/Checkout/Order responsive fixes */
.cart-page,
.checkout-page,
.order-success-page,
.order-tracking-page {
  overflow-x: hidden;
}

.cart-page__header,
.checkout-page__header-inner {
  flex-wrap: wrap;
}

.cart-page__layout,
.checkout-page__layout {
  align-items: start;
}

.cart-page__item-body,
.checkout-page__summary-item > div,
.order-success-page__item-head,
.order-tracking-page__item {
  min-width: 0;
}

@media (max-width: 1024px) {
  .cart-page__layout,
  .checkout-page__layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .cart-page__summary,
  .checkout-page__summary {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {
  .cart-page__main,
  .checkout-page__main,
  .order-success-page__main,
  .order-tracking-page__main {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .cart-page__item {
    flex-direction: column;
    gap: 12px !important;
  }

  .cart-page__item-media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3/4;
  }

  .cart-page__qty-row {
    flex-wrap: wrap;
    gap: 8px !important;
  }

  .checkout-page__steps {
    width: 100%;
    justify-content: space-between;
    gap: 8px !important;
  }

  .checkout-page__steps > div[style*="width: 80px"] {
    width: 36px !important;
  }

  .checkout-page__two-col {
    grid-template-columns: 1fr !important;
  }

  .checkout-page__actions,
  .order-success-page__actions {
    flex-direction: column;
  }

  .checkout-page__actions .btn,
  .order-success-page__actions .btn {
    width: 100%;
  }

  .checkout-page input,
  .checkout-page select,
  .checkout-page textarea,
  .order-tracking-page input {
    font-size: 16px;
  }

  .order-success-page__item {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .order-success-page__item-head {
    flex-direction: column;
    gap: 6px !important;
  }

  .order-success-page__meta {
    grid-template-columns: 1fr !important;
  }

  .order-tracking-page__progress {
    grid-template-columns: 1fr 1fr !important;
  }

  .order-tracking-page__item {
    grid-template-columns: 56px 1fr !important;
  }

  .order-tracking-page__item > div:last-child {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 520px) {
  /* Sol tarafta logo üstüne binen TL/USD yazısını kapat */
  .currency-switcher { display: none !important; }
  /* Logo alanını dar ekrana göre sınırla */
  .site-logo-img { height: 24px; max-width: 140px; }
  .site-title-text {
    max-width: min(180px, 50vw);
    font-size: clamp(20px, 6.6vw, 26px);
    letter-spacing: 0.1em;
  }
  /* Biraz daha sıkı yerleşim */
  .header-inner--with-sidebar { gap: 8px; }
}