/* ================================================
   ZEKRIN - Premium E-Commerce Design
   Luxury Cream & Beige Theme
   ================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --announcement-h: 36px;
  /* Üst satır ikonlar + alt satır hesap linkleri için yeterli boşluk */
  --header-bar-h: 81px;
  --header-stack-h: calc(var(--announcement-h) + var(--header-bar-h));
  /* Backgrounds */
  --bg-primary: #faf8f5;
  --bg-secondary: #f3f0eb;
  --bg-card: #ffffff;
  --bg-dark: #1a1a1a;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-light: #aaaaaa;
  --text-inverse: #ffffff;

  /* Brand */
  --brand: #9c7b56;
  --brand-dark: #7d6245;
  --brand-light: #c4a67d;

  /* Border */
  --border: #e5e0d8;
  --border-light: #f0ebe3;

  /* Status */
  --success: #4a7c59;
  --error: #b85450;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transition */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ================================================
   RESET & BASE
   ================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color-scheme: light;
  width: 100%;
  max-width: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

input,
textarea,
select,
button {
  color-scheme: light;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

/* iOS Safari / iPhone Chrome (WebKit): otomatik algılanan “gizli” bağlantılar */
a[x-apple-data-detectors] {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* ================================================
   LAYOUT
   ================================================ */

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

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ================================================
   HEADER
   ================================================ */

.header-fixed-stack {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  overflow: visible;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  height: auto;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: var(--text-primary);
}

.logo__img {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}

.logo:hover .logo__img {
  opacity: 0.88;
}

/* Desktop Navigation — tek satır. overflow:auto Koleksiyon açılır menüsünü keser; visible kalmalı. */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.5vw, 28px);
  flex: 1;
  min-width: 0;
  padding: 0 clamp(4px, 1.2vw, 18px);
  overflow: visible;
}

.main-nav > a,
.main-nav > .nav-dropdown {
  flex-shrink: 0;
}

@supports (justify-content: safe center) {
  .main-nav {
    justify-content: safe center;
  }
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 10px 0 9px;
  position: relative;
  white-space: nowrap;
  transition:
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  z-index: 1;
}

.nav-dropdown:hover,
.nav-dropdown:focus-within {
  z-index: 140;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 48px));
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--duration) var(--ease),
    visibility var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  box-shadow: var(--shadow-lg);
  z-index: 141;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.color-section {
  margin-top: 1.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  border-top: 1px solid var(--border-light);
  overflow: visible;
  max-width: 100%;
}

.color-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.85rem;
}

.color-section__head h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0;
}

.color-section__current {
  font-size: 0.8125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.color-variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  max-width: 100%;
  min-width: 0;
}

.color-variant {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: visible;
  border: 1.5px solid transparent;
  background: var(--bg-secondary);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.color-variant:hover {
  border-color: var(--border);
  transform: translateY(-1px);
  z-index: 2;
}

.color-variant.is-selected {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 1px var(--text-primary);
}

.color-variant__frame {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 1px);
}

.color-variant__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-variant__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(28, 25, 23, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.color-variant__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(28, 25, 23, 0.92);
}

.color-variant:hover .color-variant__tip,
.color-variant:focus-visible .color-variant__tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.size-section {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.shipping-note {
  margin-top: 0.35rem;
}

/* Gallery zoom */
.gallery-zoom-hint {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  text-align: left;
}

.gallery-zoom-hint img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.gallery-zoom-hint__badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox[hidden] {
  display: none !important;
}

.pdp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
}

.pdp-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 94vw);
  height: min(90vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox__stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  border-radius: var(--radius-md);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.pdp-lightbox__stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  flex: 0 0 auto;
}

.pdp-lightbox__stage img.is-zoomed {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  min-width: 150%;
  cursor: zoom-out;
}

.pdp-lightbox__stage.is-zoomed,
.pdp-lightbox__stage:has(img.is-zoomed) {
  align-items: flex-start;
  justify-content: flex-start;
}

.pdp-lightbox__close {
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pdp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pdp-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pdp-lightbox__nav--prev { left: -8px; }
.pdp-lightbox__nav--next { right: -8px; }

.pdp-lightbox__hint {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  text-align: center;
}

/* Catalog layout */
.page-header--catalog {
  padding-bottom: 28px;
}

.catalog-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.catalog-crumb a {
  color: var(--text-secondary);
}

.catalog-crumb a:hover {
  color: var(--text-primary);
}

.catalog-page {
  padding: 0 0 64px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-top: 28px;
}

.catalog-sidebar {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
}

.catalog-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.catalog-sidebar__head h2 {
  font-size: 1rem;
  margin: 0;
}

.catalog-sidebar__close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  padding: 4px;
}

.catalog-filter-block {
  margin-bottom: 22px;
}

.catalog-filter-block h3 {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.catalog-input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  font-size: 0.875rem;
  color: var(--text-primary);
}

.catalog-input:focus {
  outline: none;
  border-color: var(--text-muted);
}

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

.catalog-cat-nav > li + li {
  margin-top: 6px;
}

.catalog-cat-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.catalog-cat-nav a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.catalog-cat-nav a.is-active {
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
}

.catalog-cat-nav a span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.catalog-cat-nav__children {
  list-style: none;
  margin: 4px 0 8px 8px;
  padding: 0 0 0 10px;
  border-left: 1px solid var(--border-light);
}

.catalog-cat-nav__children a {
  font-size: 0.8125rem;
  padding: 6px 10px;
}

.catalog-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-chip {
  min-width: 42px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  background: var(--bg-primary);
  transition: all var(--duration) var(--ease);
}

.catalog-chip:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.catalog-chip.is-active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--text-inverse);
}

.catalog-filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.catalog-filter-toggle {
  display: none;
}

.catalog-toolbar__count {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex: 1;
}

.catalog-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.catalog-sort select {
  appearance: none;
  padding: 10px 36px 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E") no-repeat right 10px center;
  color: var(--text-primary);
  font-size: 0.8125rem;
  min-width: 200px;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.catalog-active-filters__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-secondary);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.catalog-active-filters__tag:hover {
  color: var(--text-primary);
}

.catalog-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-secondary);
}

.catalog-empty .btn-secondary {
  margin-top: 16px;
  display: inline-flex;
}

.catalog-sidebar-overlay {
  display: none;
}

@media (max-width: 980px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }

  .page-header--catalog {
    padding-bottom: 40px;
  }

  .catalog-toolbar {
    margin-top: 18px;
    padding-top: 6px;
  }

  .catalog-filter-toggle {
    display: inline-flex;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(360px, 88vw);
    z-index: 1100;
    border-radius: 0;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }

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

  .catalog-sidebar__close {
    display: inline-flex;
  }

  .catalog-sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 16, 0.45);
    z-index: 1090;
  }

  .catalog-sidebar-overlay[hidden] {
    display: none !important;
  }

  body.catalog-filters-open {
    overflow: hidden;
  }

  .color-variant-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  }

  .pdp-lightbox__nav--prev { left: 4px; }
  .pdp-lightbox__nav--next { right: 4px; }

  .pdp-lightbox__stage img.is-zoomed {
    min-width: 210%;
  }
}

/* Hide old flat category pills if leftover */
.category-pills {
  display: none;
}

/* Header Actions: araçlar + hesap aynı satır (masaüstü) */
.header-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.header-actions__primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}

.header-search {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.header-search svg {
  width: 20px;
  height: 20px;
}

.header-search:hover {
  color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: background var(--duration) var(--ease);
}

.mobile-menu-btn:hover {
  background: var(--bg-secondary);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   MOBILE NAVIGATION
   ================================================ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 260;
  pointer-events: none;
}

.mobile-nav.active {
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.52);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-nav.active .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 390px);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(148, 118, 86, 0.16), transparent 38%),
    linear-gradient(180deg, #fff 0%, var(--bg-card) 42%, var(--bg-primary) 100%);
  padding: calc(14px + env(safe-area-inset-top, 0px)) 20px 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform var(--duration) var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -18px 0 55px rgba(25, 20, 16, 0.18);
  display: flex;
  flex-direction: column;
  border-radius: 24px 0 0 24px;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.mobile-nav-header .logo__img {
  height: 32px;
  max-width: min(180px, 55vw);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-secondary);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.mobile-nav-intro {
  margin: 0 0 16px;
  padding: 16px 16px 15px;
  border: 1px solid rgba(148, 118, 86, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 235, 0.86)),
    var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.mobile-nav-intro__eyebrow,
.mobile-nav-section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.mobile-nav-intro__title {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

.mobile-nav-intro__text {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.mobile-nav-close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.mobile-nav-close svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
}

.mobile-nav-links > a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 13px;
  margin: 0 -12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: 14px;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.mobile-nav-links > a:hover,
.mobile-nav-links > a.active {
  background: rgba(148, 118, 86, 0.09);
  color: var(--brand);
}

.mobile-nav-section-label {
  margin: 12px 0 2px;
}

.mobile-nav-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

.mobile-nav-featured__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 118, 86, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mobile-nav-featured__link:hover,
.mobile-nav-featured__link.active {
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border-light));
  background: color-mix(in srgb, var(--brand) 9%, #fff);
  color: var(--brand);
}

.mobile-nav-details {
  border-radius: var(--radius-md);
  margin: 0 -12px;
}

.mobile-nav-details__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
  user-select: none;
}

.mobile-nav-details__summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-details__summary::marker {
  content: "";
}

.mobile-nav-details__summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition:
    transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
  flex-shrink: 0;
}

.mobile-nav-details[open] > .mobile-nav-details__summary {
  background: var(--bg-secondary);
  color: var(--brand);
}

.mobile-nav-details[open] > .mobile-nav-details__summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: var(--brand);
}

.mobile-nav-details__summary:hover {
  background: var(--bg-secondary);
}

.mobile-nav-sublist {
  display: flex;
  flex-direction: column;
  padding: 4px 8px 12px 20px;
  gap: 2px;
}

.mobile-nav-sublist .sub-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  margin: 0 -8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.mobile-nav-sublist .sub-link:hover,
.mobile-nav-sublist .sub-link.active {
  background: var(--bg-secondary);
  color: var(--brand);
}

.mobile-nav-linkbtn {
  display: block;
  width: 100%;
  padding: 14px 0;
  margin: 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text-primary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}

.mobile-nav-linkbtn:hover {
  color: var(--brand);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border-light);
  margin: 14px 0;
}

.mobile-nav-account {
  margin: 4px -12px 12px;
  padding: 14px 14px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.mobile-nav-account__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-account__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-light), var(--brand));
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-account__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mobile-nav-account__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-account__email {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-nav-account__link {
  display: block;
  padding: 10px 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}
.mobile-nav-account__link:hover {
  color: var(--brand-dark);
  background: var(--bg-secondary);
}
.mobile-nav-account__link--muted {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-overlay,
  .mobile-nav-content,
  .mobile-menu-btn span,
  .mobile-nav-details__summary::after {
    transition: none;
  }
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-stack-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.95) 0%,
    rgba(250, 248, 245, 0.7) 50%,
    rgba(250, 248, 245, 0.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-inverse);
  background: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: var(--bg-card);
}

.btn-sm {
  padding: 12px 20px;
  font-size: 0.8125rem;
}

/* ================================================
   FEATURED PRODUCTS SECTION
   ================================================ */

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 56px;
}

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

/* ================================================
   PRODUCT CARD
   ================================================ */

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-image {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.product-image a {
  display: block;
}

.product-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--text-primary);
  color: var(--text-inverse);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.product-badge--alt {
  left: auto;
  right: 12px;
  background: rgba(139, 90, 60, 0.92);
  color: #fff;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.625rem;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.08);
  cursor: pointer;
  opacity: 1;
  transform: none;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .product-wishlist {
    opacity: 0.96;
  }
  .product-card:hover .product-wishlist {
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.12);
  }
}

.product-wishlist svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  overflow: visible;
}

.product-wishlist svg path {
  fill: transparent;
  transition:
    fill 0.2s ease,
    stroke 0.2s ease;
}

.product-wishlist:hover svg {
  color: var(--error);
}

.product-wishlist.is-active {
  opacity: 1;
  border-color: var(--error);
}

.product-wishlist.is-active svg {
  color: var(--error);
}

.product-wishlist.is-active svg path {
  fill: var(--error);
  stroke: var(--error);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-title:hover {
  color: var(--brand);
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2px;
  min-height: 2.65rem;
}

.price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.price-old {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0.9;
}

/* ================================================
   LIFESTYLE SECTION
   ================================================ */

.lifestyle-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.lifestyle-image {
  position: relative;
}

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

.lifestyle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--bg-secondary);
}

.lifestyle-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.lifestyle-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ================================================
   COLLECTION BANNER
   ================================================ */

.collection-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.collection-banner-bg {
  position: absolute;
  inset: 0;
}

.collection-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.collection-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 24px;
}

.collection-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-inverse);
  margin-bottom: 16px;
}

.collection-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.collection-banner .btn-primary {
  background: var(--bg-card);
  color: var(--text-primary);
}

.collection-banner .btn-primary:hover {
  background: var(--brand);
  color: var(--text-inverse);
}

/* ================================================
   TRUST SECTION
   ================================================ */

.trust-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.trust-content h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 80px 0 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text-inverse);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
}

.footer-col a:hover {
  color: var(--text-inverse);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.payment-icons svg {
  opacity: 0.6;
}

/* ================================================
   PRODUCTS PAGE
   ================================================ */

.page-header {
  padding: 120px 0 60px;
  background: var(--bg-secondary);
  text-align: center;
  margin-top: var(--header-stack-h);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1rem;
  color: var(--text-muted);
}

.page-header-hint {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 0.8125rem !important;
  line-height: 1.5;
  color: var(--text-secondary) !important;
}

/* Category Pills */
.category-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
}

.category-pills a {
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
}

.category-pills a:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.category-pills a.active {
  color: var(--text-inverse);
  background: var(--text-primary);
  border-color: var(--text-primary);
}

/* Filter Toolbar */
.filter-toolbar {
  padding: 32px 0;
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all var(--duration) var(--ease);
}

.search-box input:focus {
  outline: none;
  border-color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.filter-actions {
  display: flex;
  gap: 12px;
}

.results-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 16px 0;
}

.results-count strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 0 0 80px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 0 0;
}

.pagination-info {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 24px;
}

/* ================================================
   PRODUCT DETAIL PAGE
   ================================================ */

.product-detail {
  padding: 120px 0 80px;
  margin-top: var(--header-stack-h);
  overflow-x: hidden;
  max-width: 100%;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap; /* kritik */
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb-sep svg {
  width: 14px;
  height: 14px;
}

/* Detail Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

/* Gallery */
.detail-gallery {
  position: sticky;
  top: 120px;
  min-width: 0;
  max-width: 100%;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
  z-index: 3;
}

.gallery-nav:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
}

.gallery-nav.prev {
  left: 16px;
}
.gallery-nav.next {
  right: 16px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
}

.gallery-thumbs .thumb-btn {
  flex: 0 0 auto;
}

.thumb-btn {
  width: 80px;
  height: 100px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.thumb-btn:hover {
  border-color: var(--text-muted);
}

.thumb-btn.active {
  border-color: var(--text-primary);
}

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

/* Detail Info */
.detail-info h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-price .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.detail-price .price-old {
  font-size: 1.125rem;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(74, 124, 89, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--success);
  margin-bottom: 32px;
}

.stock-status.out {
  background: rgba(184, 84, 80, 0.1);
  color: var(--error);
}

.stock-status svg {
  width: 18px;
  height: 18px;
}

.buy-button {
  width: 100%;
  padding: 18px 32px;
  font-size: 1rem;
  margin-bottom: 32px;
}

.size-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.size-chip {
  padding: 10px 16px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.size-chip--out {
  color: var(--text-muted);
  background: color-mix(in srgb, var(--bg-secondary) 88%, #bfc4cc 12%);
  border-color: color-mix(in srgb, var(--border-light) 75%, #bfc4cc 25%);
  opacity: 0.82;
  overflow: hidden;
}

.size-chip--out::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 145%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(148, 155, 165, 0.75) 12%,
    rgba(148, 155, 165, 0.75) 88%,
    transparent 100%
  );
  transform: translateY(-50%) rotate(142deg);
  transform-origin: center;
  pointer-events: none;
}

/* Description Panel */
.description-panel {
  margin-top: 64px;
  padding: 40px 40px 44px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.description-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--brand-light) 42%,
    transparent 72%
  );
  opacity: 0.9;
  pointer-events: none;
}

.description-panel__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 22px;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--brand);
  line-height: 1.3;
}

.description-panel h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.35;
}

.description-panel h3:not(.description-panel__title) {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 26px 0 10px;
  color: var(--text-primary);
  border: none;
  padding: 0;
}

.description-panel h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 22px 0 8px;
  color: var(--text-primary);
}

.description-panel p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0 0 1em;
}

.description-panel p:last-child {
  margin-bottom: 0;
}

.description-panel ul,
.description-panel ol {
  margin: 16px 0 22px;
  padding: 16px 20px 16px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.description-panel ul {
  list-style: disc;
}

.description-panel ul li::marker,
.description-panel ol li::marker {
  color: var(--brand);
}

.description-panel ol {
  list-style: decimal;
}

.description-panel li {
  padding: 5px 0;
  line-height: 1.65;
  color: var(--text-secondary);
}

.description-panel li strong,
.description-panel li b {
  color: var(--text-primary);
  font-weight: 600;
}

.description-panel .pdp-desc > p {
  margin-bottom: 14px;
}

.description-panel .pdp-spec-table,
.description-panel .pdp-filter-table {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  margin: 18px 0 8px;
  font-size: 0.92rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.description-panel .pdp-spec-table th,
.description-panel .pdp-filter-table th,
.description-panel .pdp-spec-table td,
.description-panel .pdp-filter-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.description-panel .pdp-spec-table tr:last-child th,
.description-panel .pdp-spec-table tr:last-child td,
.description-panel .pdp-filter-table tr:last-child th,
.description-panel .pdp-filter-table tr:last-child td {
  border-bottom: none;
}

.description-panel .pdp-spec-table th,
.description-panel .pdp-filter-table th {
  width: 38%;
  color: var(--text-muted, #6b635c);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.02);
}

.description-panel .pdp-desc > h4 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.description-panel blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--brand-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--bg-secondary);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* PDP: genel puan + yorumlar */
.pdp-rating-summary {
  margin: 10px 0 18px;
  font-size: 0.875rem;
}

.pdp-rating-summary__link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 0;
  transition: color var(--duration) var(--ease);
}

.pdp-rating-summary__link:hover {
  color: var(--text-primary);
}

.pdp-rating-summary__stars.pdp-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.pdp-rating-summary__avg {
  font-weight: 700;
  color: var(--text-primary);
}

.pdp-rating-summary__count {
  color: var(--text-muted);
}

.pdp-rating-summary__empty {
  color: var(--text-muted);
  margin-right: 10px;
}

.pdp-rating-summary__jump {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.pdp-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
  font-size: 0.95rem;
}

.pdp-stars__i {
  color: var(--border);
}

.pdp-stars__i--on {
  color: #c4a000;
}

/* —— PDP: müşteri yorumları (premium cream tema) —— */
.pdp-reviews {
  margin-top: 56px;
  padding: 44px 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.pdp-reviews__header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.pdp-reviews__title {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.pdp-reviews__flash {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 44px 16px 20px;
  border-radius: var(--radius-lg);
  margin: 0 0 24px;
  box-shadow: var(--shadow-sm);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.pdp-reviews__flash--hiding {
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.pdp-reviews__flash-dismiss {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-reviews__flash-dismiss:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.06);
}

.pdp-reviews__already {
  margin: 0 0 20px;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.pdp-reviews__flash-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}

.pdp-reviews__flash-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  padding-top: 2px;
}

.pdp-reviews__flash--ok {
  background: linear-gradient(
    135deg,
    rgba(74, 124, 89, 0.08) 0%,
    var(--bg-card) 55%
  );
  border: 1px solid rgba(74, 124, 89, 0.22);
  color: var(--text-primary);
}

.pdp-reviews__flash--ok .pdp-reviews__flash-icon {
  background: rgba(74, 124, 89, 0.18);
  color: var(--success);
}

.pdp-reviews__flash--err {
  background: linear-gradient(
    135deg,
    rgba(184, 84, 80, 0.07) 0%,
    var(--bg-card) 55%
  );
  border: 1px solid rgba(184, 84, 80, 0.22);
  color: var(--text-primary);
}

.pdp-reviews__flash--err .pdp-reviews__flash-icon {
  background: rgba(184, 84, 80, 0.15);
  color: var(--error);
}

.pdp-reviews__summary {
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: none;
  overflow: hidden;
}

.pdp-reviews__summary-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 12px 16px;
}

.pdp-reviews__summary-inner--empty {
  gap: 12px 14px;
}

.pdp-reviews__summary-empty-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  opacity: 0.9;
  flex-shrink: 0;
}

.pdp-reviews__score-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 0;
  border-right: 1px solid var(--border);
  padding-right: 16px;
  margin-right: 2px;
  flex-shrink: 0;
}

.pdp-reviews__summary-inner--empty .pdp-reviews__summary-copy {
  border-left: none;
}

.pdp-reviews__summary-inner--has-rating .pdp-reviews__summary-copy {
  padding-left: 0;
  flex: 1;
  min-width: min(100%, 200px);
}

.pdp-reviews__score-num {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pdp-reviews__score-max {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.pdp-reviews__score-stars.pdp-stars {
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.pdp-reviews__summary-lead {
  margin: 0 0 2px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pdp-reviews__summary-text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pdp-reviews__callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  margin: 0 0 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.pdp-reviews__callout--muted {
  border-color: var(--border-light);
  background: linear-gradient(
    180deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
}

.pdp-reviews__callout--success {
  border-color: rgba(156, 123, 86, 0.35);
  background: linear-gradient(
    135deg,
    rgba(156, 123, 86, 0.06) 0%,
    var(--bg-card) 50%
  );
}

.pdp-reviews__callout-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
}

.pdp-reviews__callout--success .pdp-reviews__callout-icon {
  background: linear-gradient(145deg, var(--brand-dark), var(--brand));
  color: var(--text-inverse);
  border: none;
}

.pdp-reviews__callout-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pdp-reviews__callout-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.pdp-reviews__callout-text a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp-reviews__callout-text a:hover {
  color: var(--text-primary);
}

.pdp-review-form {
  margin-bottom: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pdp-review-form__head {
  padding: 22px 28px 18px;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-card) 100%
  );
  border-bottom: 1px solid var(--border-light);
}

.pdp-review-form__h {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.pdp-review-form__sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pdp-review-form__body {
  padding: 24px 28px 8px;
}

.pdp-review-form .form-group {
  margin-bottom: 22px;
}

.pdp-review-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pdp-review-form__rating {
  margin-bottom: 8px;
}

.pdp-review-stars-track {
  display: inline-flex;
  padding: 10px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pdp-review-stars {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 0;
  outline: none;
}

.pdp-review-stars:focus-visible {
  box-shadow:
    0 0 0 2px var(--bg-card),
    0 0 0 4px var(--brand-light);
  border-radius: 10px;
}

.pdp-review-stars__btn {
  margin: 0;
  padding: 4px 6px;
  border: none;
  background: none;
  font: inherit;
  font-size: 2.35rem;
  line-height: 1;
  color: #d4cfc6;
  cursor: pointer;
  transition:
    color 0.18s var(--ease),
    transform 0.15s var(--ease);
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

.pdp-review-stars__btn:hover {
  color: var(--brand-light);
  transform: scale(1.06);
}

.pdp-review-stars__btn.is-on {
  color: #b8860b;
}

.pdp-review-stars__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.pdp-review-stars__err {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--error);
}

.pdp-review-form__textarea {
  width: 100%;
  max-width: none;
  font: inherit;
  font-size: 0.9375rem;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.pdp-review-form__textarea:hover {
  border-color: var(--text-light);
}

.pdp-review-form__textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(156, 123, 86, 0.15);
}

.pdp-review-form__hint {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.pdp-review-form__actions {
  padding: 20px 28px 26px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.pdp-review-form__submit {
  min-width: 200px;
  padding-inline: 28px;
}

.pdp-review-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-review-list::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 12%,
    var(--border) 88%,
    transparent
  );
  margin-bottom: 22px;
}

.pdp-review-card {
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pdp-review-card__layout {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  align-items: flex-start;
}

.pdp-review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-inverse);
  background: linear-gradient(145deg, var(--brand-dark), var(--brand));
  letter-spacing: 0.02em;
}

.pdp-review-card__content {
  flex: 1;
  min-width: 0;
}

.pdp-review-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.pdp-review-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.pdp-review-card__stars.pdp-stars {
  font-size: 1rem;
  letter-spacing: 2px;
}

.pdp-review-card__date {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pdp-review-card__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .pdp-reviews__summary-inner,
  .pdp-reviews__summary-inner--empty {
    padding: 12px 14px;
    gap: 10px 12px;
  }

  .pdp-reviews__score-block {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .pdp-reviews__summary-inner--empty .pdp-reviews__summary-empty-icon {
    margin: 0 auto;
  }

  .pdp-reviews__summary-inner--empty {
    text-align: center;
  }

  .pdp-reviews__summary-inner--empty .pdp-reviews__summary-copy {
    text-align: center;
  }

  .pdp-review-form__head,
  .pdp-review-form__body,
  .pdp-review-form__actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pdp-review-form__submit {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pdp-reviews {
    margin-top: 40px;
    padding: 28px 18px 32px;
  }

  .pdp-reviews__header {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .pdp-review-card__date {
    margin-left: 0;
    flex-basis: 100%;
  }

  .pdp-review-stars__btn {
    font-size: 2rem;
    padding: 2px 4px;
  }
}

/* Related Products */
.related-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

/* ================================================
   CORPORATE PAGES
   ================================================ */

.corporate-page {
  padding: 120px 0 80px;
  margin-top: var(--header-stack-h);
}

.corporate-content {
  max-width: 800px;
  margin: 0 auto;
}

.corporate-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}

.corporate-content .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
}

.corporate-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 20px;
}

.corporate-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.corporate-content ul {
  list-style: none;
  margin: 20px 0;
}

.corporate-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.corporate-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-primary);
  transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--border);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ================================================
   RESPONSIVE
   ================================================ */

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

@media (max-width: 1024px) {
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-image {
    height: 400px;
  }

  .lifestyle-content {
    padding: 60px 40px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-gallery {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-bar-h: 64px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header */
  .header-container {
    min-height: 64px;
    height: auto;
    padding: 8px 12px;
    gap: 8px;
  }

  .logo__img {
    height: 32px;
    max-width: min(170px, 50vw);
  }

  .header-actions {
    gap: 2px;
    flex-wrap: nowrap;
  }

  .header-action-icon {
    width: 44px;
    height: 44px;
  }

  .header-search {
    width: 44px;
    height: 44px;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
    margin-top: var(--header-stack-h);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(250, 248, 245, 0.95) 0%,
      rgba(250, 248, 245, 0.85) 100%
    );
  }

  .hero-content {
    text-align: center;
    padding: 0 16px;
  }

  .hero-cta {
    justify-content: center;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  /* Grid */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-info {
    padding: 16px;
  }

  .product-title {
    font-size: 0.8125rem;
  }

  .product-price {
    min-height: 2.35rem;
    gap: 1px;
  }

  .product-price .price {
    font-size: 0.8125rem;
  }

  .product-price .price-old {
    font-size: 0.625rem;
  }

  /* Trust */
  .trust-section {
    padding: 48px 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Footer */
  .site-footer {
    padding: 48px 0 32px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Pages */
  .page-header {
    padding: 100px 0 40px;
    margin-top: var(--header-stack-h);
  }

  .product-detail {
    padding: 100px 0 60px;
    margin-top: var(--header-stack-h);
  }

  .corporate-page {
    padding: 100px 0 60px;
    margin-top: var(--header-stack-h);
  }

  /* Detail */
  .detail-info h1 {
    font-size: 1.5rem;
  }

  .detail-price .price {
    font-size: 2rem;
  }

  .gallery-thumbs {
    gap: 8px;
  }

  .thumb-btn {
    width: 60px;
    height: 75px;
  }

  .description-panel {
    padding: 22px 18px 26px;
    margin-top: 40px;
  }

  .description-panel__title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    padding-left: 12px;
  }

  .description-panel ul,
  .description-panel ol {
    padding: 14px 16px 14px 32px;
  }

  .pdp-actions {
    display: grid;
    grid-template-columns: 1fr 52px;
    gap: 10px;
    align-items: stretch;
  }

  .pdp-actions .btn-primary {
    grid-column: 1 / 2;
    order: 1;
    width: 100%;
    min-width: 0;
  }

  .pdp-actions .btn-icon-heart {
    grid-column: 2 / 3;
    order: 1;
    align-self: stretch;
    margin: 0;
  }

  /* Collection Banner */
  .collection-banner {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .logo__img {
    height: 30px;
    max-width: min(160px, 52vw);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 0.8125rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
  }

  .category-pills {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 16px;
    gap: 8px;
  }

  .category-pills a {
    flex-shrink: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .size-chip {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .toolbar-inner {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
}

/* ================================================
   UTILITIES
   ================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.product-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) {
  animation-delay: 0s;
}
.product-card:nth-child(2) {
  animation-delay: 0.05s;
}
.product-card:nth-child(3) {
  animation-delay: 0.1s;
}
.product-card:nth-child(4) {
  animation-delay: 0.15s;
}
.product-card:nth-child(5) {
  animation-delay: 0.2s;
}
.product-card:nth-child(6) {
  animation-delay: 0.25s;
}
.product-card:nth-child(7) {
  animation-delay: 0.3s;
}
.product-card:nth-child(8) {
  animation-delay: 0.35s;
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */

.announcement-bar {
  height: var(--announcement-h);
  background: var(--brand-dark);
  color: var(--text-inverse);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announcement-bar__track {
  display: flex;
  white-space: nowrap;
  animation: announcement-scroll 42s linear infinite;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-bar__track span {
  padding: 0 3rem;
}

@keyframes announcement-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================================
   HEADER: Sepet, İstek listesi, Giriş / Kayıt
   ================================================ */

.header-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font: inherit;
  transition: background var(--duration) var(--ease);
}

.header-action-item:hover {
  background: var(--bg-secondary);
}

.header-action-item:hover .header-action-label {
  color: var(--text-primary);
}

.header-action-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
}

.header-action-item:hover .header-action-icon {
  color: var(--text-primary);
}

.header-action-label {
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  max-width: 64px;
  text-align: center;
  white-space: nowrap;
}

/* Masaüstü: Sepet / İstek listesi alt yazıları gizli; mobilde (≤1024) görünür */
@media (min-width: 1025px) {
  .header-actions__primary .header-action-label {
    display: none;
  }

  .header-actions__primary
    .header-action-item:not(.header-action-item--icon-only) {
    gap: 0;
    padding: 4px 6px;
  }
}

.header-action-item--icon-only {
  gap: 0;
  padding: 4px 6px;
  justify-content: center;
}

.header-action-item--cargo {
  position: relative;
}

.header-action-item--cargo .header-action-label {
  display: none !important;
}

.header-action-item--cargo .header-action-icon {
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(148, 118, 86, 0.1), rgba(148, 118, 86, 0.03));
}

.header-action-item--cargo:hover .header-action-icon {
  color: var(--brand);
}

.header-action-icon .badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: 100px;
}

.header-action-icon .badge-count[hidden] {
  display: none;
}

.header-auth-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: none;
}

/* Masaüstü: hesap açılır menü */
.header-account {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-account__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 8px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.header-account__btn:hover {
  border-color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.header-account.is-open .header-account__btn {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-md);
}

.header-account__avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--brand-dark), var(--brand));
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.header-account__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 140px;
}

.header-account__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.2;
}

.header-account__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account__chev {
  display: flex;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.header-account.is-open .header-account__chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .header-account__chev {
    transition: none;
  }
}

.header-account__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 228px;
  max-width: min(288px, calc(100vw - 24px));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}

.header-account__panel[hidden] {
  display: none !important;
}

.header-account__panel-head {
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.header-account__panel-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.header-account__panel-email {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.header-account__panel-body {
  padding: 6px;
}

.header-account__panel-foot {
  padding: 6px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.header-account__item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: background var(--duration) var(--ease);
}

.header-account__item:hover {
  background: var(--bg-secondary);
}

.header-account__item--logout {
  color: var(--error);
}

.header-account__item--logout:hover {
  background: rgba(184, 84, 80, 0.1);
}

/* Dar masaüstü: hesap kutusu sadeleşir, taşmayı önler */
@media (max-width: 1180px) and (min-width: 1025px) {
  .header-account__eyebrow {
    display: none;
  }

  .header-account__meta {
    max-width: 100px;
  }

  .header-account__name {
    font-size: 0.78rem;
  }

  .header-account__avatar {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
    border-radius: 9px;
  }

  .header-account__btn {
    padding: 5px 8px 5px 6px;
    gap: 8px;
  }
}

@media (max-width: 1060px) and (min-width: 1025px) {
  .header-account__meta {
    display: none;
  }

  .header-account__btn {
    padding: 5px 7px;
    gap: 2px;
  }
}

@media (max-width: 1024px) {
  .header-auth-links {
    display: none;
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .header-actions__primary {
    gap: 4px;
  }

  .header-action-item {
    padding: 4px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-container {
    min-height: 64px;
    padding-block: 8px;
  }
}

/* ================================================
   PDP COUNTDOWN STRIP
   ================================================ */

.pdp-promo-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pdp-promo-strip__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(184, 84, 80, 0.12);
  color: #a8433f;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.pdp-promo-strip h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 6px;
}

.pdp-promo-strip__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pdp-countdown {
  text-align: right;
}

.pdp-countdown__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pdp-countdown__boxes {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.pdp-countdown__box {
  min-width: 56px;
  padding: 10px 8px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
}

.pdp-countdown__box strong {
  display: block;
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
  font-family: "Inter", sans-serif;
}

.pdp-countdown__box small {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ================================================
   PDP UTILITIES & SOCIAL PROOF
   ================================================ */

.detail-util-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 8px 0 4px;
  font-size: 0.8125rem;
}

.detail-util-links a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-util-links a:hover {
  color: var(--brand-dark);
}

.social-proof-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
}

.social-proof-row .proof-instock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 500;
}

.social-proof-row .proof-fire {
  color: #c43d2e;
  font-weight: 500;
}

.social-proof-row .proof-eye {
  color: var(--text-secondary);
}

.tax-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.detail-price-block .price-main {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.detail-price-block .price-old {
  font-size: 0.875rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.discount-label {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c45c28;
}

/* ================================================
   TIER PRICING CARDS
   ================================================ */

.tier-section {
  margin: 24px 0;
}

.tier-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tier-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tier-card {
  position: relative;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  -webkit-text-fill-color: currentColor;
}

.tier-card:hover {
  border-color: var(--text-muted);
}

.tier-card.is-selected {
  border-color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.tier-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.tier-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--text-primary);
  color: var(--text-inverse);
}

.tier-badge--muted {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.tier-card__qty {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--text-primary);
  -webkit-text-fill-color: currentColor;
}

.tier-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tier-card__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  -webkit-text-fill-color: currentColor;
}

.tier-card__old {
  font-size: 0.8125rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ================================================
   COMPLETE THE LOOK
   ================================================ */

.complete-look {
  margin-top: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.complete-look h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.complete-look > p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.complete-look-coupon-block {
  margin-bottom: 12px;
}

.complete-look-coupon__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.complete-look-coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.complete-look-coupon__feedback {
  font-size: 0.75rem;
  color: var(--success);
  margin-top: 6px;
  margin-bottom: 0;
}

.complete-look-coupon__feedback--error {
  color: var(--error);
}

.complete-look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}

.complete-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: box-shadow var(--duration) var(--ease);
}

.complete-card:hover {
  box-shadow: var(--shadow-md);
}

.complete-card__clickarea {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.complete-card__img {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  flex-shrink: 0;
  background: var(--bg-secondary);
  /* Eski max-height: 132px ikili gridde ürünü aşırı kırpıyordu */
}

.complete-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.complete-card__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  z-index: 2;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.06);
}

.complete-card__wish svg {
  width: 18px;
  height: 18px;
  display: block;
}

.complete-card__wish svg path {
  fill: transparent;
  transition:
    fill 0.2s ease,
    stroke 0.2s ease;
}

.complete-card__wish.is-active {
  color: var(--error);
  border-color: var(--error);
}

.complete-card__wish.is-active svg path {
  fill: var(--error);
  stroke: var(--error);
}

.complete-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 8px 10px 10px;
  min-height: 0;
}

.complete-card__title {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0;
  min-height: calc(0.6875rem * 1.35 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.complete-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  margin-top: auto;
  padding-top: 6px;
  min-height: 2.1rem;
}

.complete-card__prices .price {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
}

.complete-card__prices .price-old {
  font-size: 0.625rem;
  line-height: 1.2;
  text-decoration: line-through;
  color: var(--text-muted);
  white-space: nowrap;
}

.complete-card__add {
  display: block;
  width: 100%;
  flex-shrink: 0;
  margin-top: 0;
  padding: 8px 10px;
  background: var(--text-primary, #000);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.complete-card__add:hover {
  background: #333;
}

.quick-view__sizes {
  margin-bottom: 20px;
}
.quick-view__sizes label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.quick-view__sizes .size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ================================================
   SIZE CHIPS (button)
   ================================================ */

button.size-chip {
  font-family: inherit;
  cursor: pointer;
}

.size-chip.is-selected:not(:disabled) {
  border: 2px solid var(--text-primary);
  background: var(--bg-card);
  color: var(--text-primary);
  -webkit-text-fill-color: currentColor;
}

.size-chip:disabled {
  cursor: not-allowed;
}

/* ================================================
   PDP ACTIONS
   ================================================ */

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
  align-items: stretch;
}

.pdp-actions .btn-primary {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdp-actions .btn-icon-heart {
  width: 52px;
  min-width: 52px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
}

.pdp-actions .btn-icon-heart svg path {
  fill: transparent;
  transition:
    fill 0.2s ease,
    stroke 0.2s ease;
}

.pdp-actions .btn-icon-heart.is-active {
  color: var(--error);
  border-color: var(--error);
}

.pdp-actions .btn-icon-heart.is-active svg path {
  fill: var(--error);
  stroke: var(--error);
}

/* ================================================
   TRUST PAYMENT STRIP (PDP)
   ================================================ */

.pdp-trust-pay {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdp-post-complete {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.pdp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.pdp-ship-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pdp-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.8125rem;
}

.pdp-mini-links a,
.pdp-mini-links button {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.pdp-mini-links a:hover,
.pdp-mini-links button:hover {
  color: var(--brand-dark);
}

/* ================================================
   NEDEN ZEKRIN — karşılaştırma (kart düzeni, mobil öncelikli)
   ================================================ */

.why-zekrin {
  margin-top: 48px;
  margin-bottom: 48px;
}

.why-zekrin h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.why-zekrin > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 720px;
}

.why-compare {
  display: block;
  max-width: 920px;
  margin-inline: auto;
}

/* Sade ve modern tablo */
.why-compare-shell {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.why-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

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

.why-compare-table thead th {
  background: var(--bg-secondary);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-light);
}

.why-compare-table thead th.is-zekrin {
  color: var(--success);
}

.why-compare-table tbody th,
.why-compare-table tbody td {
  padding: 18px;
  font-size: 0.9375rem;
  line-height: 1.6;
  vertical-align: top;
  border-bottom: 1px solid var(--border-light);
}

.why-compare-table tbody tr:last-child th,
.why-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.why-compare-table tbody th {
  width: 28%;
  font-weight: 700;
  color: var(--text-primary);
  background: color-mix(in srgb, var(--bg-secondary) 70%, #ffffff 30%);
}

.why-compare-table tbody td {
  color: var(--text-secondary);
  background: var(--bg-card);
}

.why-compare-table tbody td.is-zekrin {
  color: var(--text-primary);
  font-weight: 500;
  background: linear-gradient(
    135deg,
    rgba(74, 124, 89, 0.08) 0%,
    rgba(250, 248, 245, 0.7) 100%
  );
}

@media (max-width: 767px) {
  .why-compare-shell {
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .why-compare-table thead {
    display: none;
  }

  .why-compare-table,
  .why-compare-table tbody,
  .why-compare-table tr,
  .why-compare-table th,
  .why-compare-table td {
    display: block;
    width: 100%;
  }

  .why-compare-table tbody tr {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    padding: 14px;
    margin-bottom: 12px;
  }

  .why-compare-table tbody th {
    width: 100%;
    padding: 0 0 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    font-size: 1rem;
  }

  .why-compare-table tbody td {
    padding: 12px 12px 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-top: 10px;
  }

  .why-compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 7px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .why-compare-table tbody td.is-zekrin::before {
    color: var(--success);
  }
}

/* ================================================
   PDP FAQ
   ================================================ */

.pdp-faq {
  margin-bottom: 48px;
}

.pdp-faq__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pdp-faq h2 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 10px;
}

.pdp-faq__intro {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 640px;
}

.pdp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pdp-faq-item [data-faq-toggle] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.pdp-faq-item [data-faq-toggle]:hover {
  background: var(--bg-secondary);
}

.pdp-faq-item .faq-chevron {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--text-muted);
}

.pdp-faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.pdp-faq-item [data-faq-panel] {
  padding: 0 18px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.pdp-faq-item [data-faq-panel][hidden] {
  display: none;
}

.btn-faq-more {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  color: var(--text-primary);
}

.btn-faq-more:hover {
  background: var(--bg-secondary);
}

/* ================================================
   CART DRAWER + FAB
   ================================================ */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 280;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration) var(--ease),
    visibility var(--duration) var(--ease);
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--bg-card);
  z-index: 290;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform var(--duration) var(--ease);
  overflow: hidden;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-light);
  flex: 0 0 auto;
}

.cart-drawer__head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.cart-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
}

.cart-drawer__close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.cart-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 22px;
  overscroll-behavior: contain;
}

.cart-drawer-empty {
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 24px 0;
}

.cart-drawer-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f7f7f7;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.cart-drawer-item-thumb {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}

.cart-drawer-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer-item-title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.35;
  margin-bottom: 4px;
}

.cart-drawer-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cart-drawer-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer-item-price {
  font-weight: 700;
  font-size: 0.9375rem;
}

.cart-drawer-item-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cart-drawer-remove {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
}

.qty-stepper button {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-primary);
  background: var(--bg-card);
}

.qty-stepper button:hover {
  background: var(--bg-secondary);
}

.qty-stepper span {
  min-width: 28px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.pdp-qty-section {
  margin: 18px 0 8px;
}

.pdp-qty-section h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.pdp-buy-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 20px 0 8px;
}

.pdp-buy-row .btn-primary {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-buy-row .btn-icon-heart {
  width: 52px;
  min-width: 52px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
}

.pdp-buy-row .btn-icon-heart svg path {
  fill: transparent;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.pdp-buy-row .btn-icon-heart.is-active {
  color: var(--error);
  border-color: var(--error);
}

.pdp-buy-row .btn-icon-heart.is-active svg path {
  fill: var(--error);
  stroke: var(--error);
}

.pdp-qty-stepper {
  height: 52px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
}

.pdp-qty-stepper button {
  width: 42px;
  height: 52px;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
}

.pdp-qty-input {
  width: 48px;
  height: 52px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-card);
  -moz-appearance: textfield;
  appearance: textfield;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-stock-line {
  margin: 0 0 14px;
  font-size: 0.875rem;
}

.pdp-stock-line .proof-instock {
  color: var(--success, #1a7f4b);
  font-weight: 600;
}

.pdp-reviews__empty-hint,
.pdp-reviews__login-hint {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pdp-reviews__login-hint a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-drawer__foot {
  flex: 0 0 auto;
  padding: 12px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-light);
  background: var(--bg-card);
  overflow: visible;
}

.cart-drawer__sub {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.cart-drawer__totals {
  font-size: 0.8125rem;
  color: var(--text-muted, #616161);
  margin-bottom: 0;
}

.cart-drawer-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.cart-drawer-total-row--save {
  color: #2e7d32;
}

.cart-drawer-total-row--muted {
  color: var(--text-muted, #757575);
  font-size: 0.8125rem;
}

.cart-drawer-total-row--grand {
  display: none;
}

.cart-drawer__sub--grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  font-size: 1.05rem;
  color: var(--text-primary);
}

.cart-drawer__sub--grand strong {
  font-weight: 700;
}

.cart-drawer__foot .btn-primary {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  display: block;
  padding: 14px 16px;
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-drawer__actions .btn-ghost {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-primary);
}

.cart-drawer__actions .btn-ghost:hover {
  background: var(--bg-secondary);
}

.cart-drawer__foot .cart-drawer__promo {
  padding: 0 0 10px;
  margin: 0 0 8px;
  border-top: none;
  border-bottom: 1px solid var(--border-light);
  background: transparent;
}

.cart-drawer__foot .cart-drawer__ship-track {
  margin-bottom: 6px;
}

.cart-drawer__foot .cart-drawer__ship-text {
  font-size: 0.75rem;
}

.cart-page-ship-promo {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.cart-page-ship-promo.is-complete .cart-page-ship-promo__fill {
  background: linear-gradient(90deg, #2d6a4f, #40916c);
}

.cart-page-ship-promo__track {
  height: 6px;
  border-radius: 100px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 8px;
}

.cart-page-ship-promo__fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transition: width 0.35s var(--ease);
}

.cart-page-ship-promo__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.cart-drawer-coupon {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.cart-drawer-coupon__head {
  margin-bottom: 4px;
}

.cart-drawer-coupon__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-drawer-coupon__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.cart-drawer-coupon__row {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: stretch;
}

.cart-drawer-coupon__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 10px;
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  background: var(--bg-card);
}

.cart-drawer-coupon__apply {
  flex: 0 0 auto;
  height: 36px;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 6px;
  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.cart-drawer-coupon__apply:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.cart-drawer-coupon__clear {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.6875rem;
  font-family: inherit;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

.cart-drawer-coupon__msg {
  font-size: 0.6875rem;
  margin-top: 4px;
  margin-bottom: 0;
  color: var(--success);
}

.cart-drawer-coupon__msg--error {
  color: var(--error);
}

.cart-drawer__promo {
  padding: 12px 20px 4px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.cart-drawer__promo.is-complete .cart-drawer__ship-fill {
  background: linear-gradient(90deg, #2d6a4f, #40916c);
}

.cart-drawer__ship-track {
  height: 6px;
  border-radius: 100px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 8px;
}

.cart-drawer__ship-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  transition: width 0.35s var(--ease);
}

.cart-drawer__ship-text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

/* Newsletter strip (lead capture) */
.newsletter-strip {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #3d2a1f 100%);
  color: var(--text-inverse);
}

.newsletter-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter-strip__text {
  flex: 1 1 280px;
  max-width: 520px;
}

.newsletter-strip__text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}

.newsletter-strip__text p {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 300px;
  max-width: 440px;
  align-items: stretch;
}

.newsletter-form input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form__btn {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 12px 18px;
  font-size: 0.8125rem;
  background: #fff;
  color: var(--brand-dark);
  border: none;
}

.newsletter-form__btn:hover {
  filter: brightness(1.05);
}

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

/* Mobile bottom tab bar */
.mobile-tab-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  padding: 6px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  justify-content: space-around;
  align-items: flex-end;
  gap: 4px;
}

.mobile-tab-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  max-width: 88px;
}

.mobile-tab-bar__item svg {
  flex-shrink: 0;
}

.mobile-tab-bar__item.is-active {
  color: var(--text-primary);
}

.mobile-tab-bar__item.is-active svg {
  color: var(--brand);
}

.mobile-tab-bar__badge {
  position: absolute;
  top: 2px;
  right: 18%;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: 100px;
}

.mobile-tab-bar__badge[hidden] {
  display: none;
}

.mobile-tab-bar__badge--wl {
  right: 12%;
}

@media (max-width: 768px) {
  .mobile-tab-bar {
    display: flex;
  }

  body.cart-drawer-open .mobile-tab-bar,
  body.cart-drawer-open .whatsapp-fab {
    visibility: hidden;
    pointer-events: none;
  }

  .cart-drawer {
    max-width: none;
    width: 100%;
  }

  .cart-drawer__head {
    padding: 14px 16px;
  }

  .cart-drawer__body {
    padding: 12px 16px;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-fab {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .back-to-top {
    bottom: calc(136px + env(safe-area-inset-bottom, 0px));
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 255;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.back-to-top:hover {
  transform: translateY(-2px);
  border-color: var(--text-muted);
}

.back-to-top[hidden] {
  display: none;
}

.cart-ship-hint {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.cart-ship-hint.is-complete {
  border-color: rgba(45, 106, 79, 0.35);
  background: rgba(45, 106, 79, 0.08);
  color: var(--text-primary);
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 260;
  width: 58px;
  height: 58px;
  overflow: visible;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fe676 0%, #25d366 45%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.whatsapp-fab:hover {
  transform: scale(1.06) translateY(-2px);
  color: #fff;
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.14);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  color: #fff;
}

.whatsapp-fab__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: whatsapp-fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsapp-fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.whatsapp-fab__icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fab__icon-wrap svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.whatsapp-fab__hint {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translate(10px, -50%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    visibility 0.22s;
  background: #1a2e24;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
}

.whatsapp-fab:hover .whatsapp-fab__hint,
.whatsapp-fab:focus-visible .whatsapp-fab__hint {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 34px);
  }
  .whatsapp-fab__hint {
    display: none;
  }
}

/* ================================================
   CART PAGE
   ================================================ */

.cart-page {
  padding: 48px 0 80px;
  margin-top: var(--header-stack-h);
}

.cart-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.cart-page-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cart-page-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.cart-page-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cart-page-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.cart-page-table td {
  padding: 18px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-light);
}

.cart-page-table tr:last-child td {
  border-bottom: none;
}

.cart-page-product {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 320px;
}

.cart-page-product img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

.cart-page-title {
  font-weight: 600;
  line-height: 1.35;
}

.cart-page-size {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cart-page-line-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cart-page-remove {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.8125rem;
}

.cart-page-summary {
  max-width: 480px;
}

.cart-page-summary .sub {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.cart-page-coupon {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-page-coupon__label {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 6px;
}

.cart-page-coupon__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.cart-page-coupon__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: stretch;
}

.cart-page-coupon__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 10px;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-family: inherit;
}

.zekrin-coupon-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.zekrin-coupon-chip:hover {
  border-color: var(--brand);
  background: var(--bg-card);
  color: var(--brand-dark);
}

.cart-page-coupon__msg {
  font-size: 0.8125rem;
  margin-top: 8px;
  color: #2e7d32;
}

.cart-page-coupon__msg--error {
  color: #c62828;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.cart-summary-row--save {
  color: #2e7d32;
  font-weight: 500;
}

.cart-summary-row--muted {
  color: var(--text-muted, #757575);
  font-size: 0.8125rem;
}

.cart-summary-row--grand {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.checkout-summary-discounts {
  margin: 8px 0 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.checkout-discount-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.checkout-discount-row--save {
  color: #2e7d32;
}

.checkout-discount-row--muted {
  color: var(--text-muted, #757575);
  font-size: 0.8125rem;
}

.checkout-discount-row--grand {
  font-weight: 700;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

.checkout-summary-discounts--pay {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.checkout-coupon-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.checkout-coupon-box__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.checkout-coupon-box__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.checkout-coupon-box__input {
  flex: 1 1 120px;
  min-width: 100px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-family: inherit;
}

.checkout-coupon-box__clear {
  margin-top: 8px;
  font-size: 0.8125rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted, #616161);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.checkout-coupon-box__msg {
  font-size: 0.8125rem;
  margin-top: 8px;
  color: #2e7d32;
}

.checkout-coupon-box__msg--error {
  color: #c62828;
}

.cart-page-summary .disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cart-page-summary .btn-primary {
  width: 100%;
  padding: 16px;
  margin-bottom: 10px;
  text-align: center;
  display: inline-block;
}

.cart-page-summary .foot-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.cart-page-empty {
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
}

/* Sepet: mobilde yatay kaydırma yerine kart satırları */
@media (max-width: 768px) {
  .cart-page {
    padding: 28px 0 72px;
  }

  .cart-page-table-wrap {
    overflow-x: visible;
    margin-bottom: 24px;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .cart-page-table {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .cart-page-table thead {
    display: none;
  }

  .cart-page-table tbody {
    display: block;
    width: 100%;
  }

  .cart-page-table tbody tr[data-cart-row] {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
  }

  .cart-page-table tbody tr[data-cart-row] td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
  }

  .cart-page-table tbody tr[data-cart-row] td:not(:first-child) {
    display: grid;
    grid-template-columns: minmax(5.25rem, auto) minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
  }

  .cart-page-table tbody tr[data-cart-row] td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    grid-column: 1;
  }

  .cart-page-table
    tbody
    tr[data-cart-row]
    td:not(:first-child)
    .cart-page-cell-value {
    grid-column: 2;
    justify-self: end;
    text-align: right;
    min-width: 0;
  }

  .cart-page-table
    tbody
    tr[data-cart-row]
    td[data-label="Adet"]
    .cart-page-cell-value {
    justify-self: end;
  }

  .cart-page-table tbody tr[data-cart-row] td:first-child {
    display: block;
    padding-top: 0;
  }

  .cart-page-table tbody tr[data-cart-row] td:first-child::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .cart-page-table tbody tr[data-cart-row] td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-page-table tbody tr[data-cart-row] .cart-page-product {
    max-width: none;
    width: 100%;
  }

  .cart-page-table
    tbody
    tr[data-cart-row]
    td[data-label="İşlem"]
    .cart-page-cell-value {
    width: 100%;
  }

  .cart-page-table
    tbody
    tr[data-cart-row]
    td[data-label="İşlem"]
    .cart-page-remove {
    margin-top: 0;
    text-align: right;
    width: 100%;
  }

  .cart-page-table tbody tr:not([data-cart-row]) td.cart-page-empty {
    display: block;
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 36px 16px;
  }

  .cart-page-table tbody tr:not([data-cart-row]) td.cart-page-empty::before {
    content: none;
  }

  .cart-page-summary {
    max-width: none;
  }

  .cart-page-coupon__row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  .cart-page-coupon__input {
    flex: 1 1 calc(100% - 88px);
    min-width: 120px;
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.8125rem;
  }

  .cart-page-coupon__row .btn-secondary.btn-sm {
    flex: 0 0 auto;
    padding: 7px 12px;
    min-height: 36px;
    font-size: 0.75rem;
  }

  .cart-page-coupon__row .btn-ghost.btn-sm {
    flex: 1 0 100%;
    width: 100%;
    min-height: auto;
    padding: 4px 0;
    font-size: 0.75rem;
    text-align: center;
  }

}

/* ================================================
   WISHLIST PAGE
   ================================================ */

.wishlist-page {
  padding: 48px 0 80px;
  margin-top: var(--header-stack-h);
}

.wishlist-page h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.wishlist-page-intro {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.wishlist-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

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

.wishlist-card > a {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.wishlist-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--bg-secondary);
  display: block;
}

.wishlist-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 14px 16px 16px;
}

.wishlist-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.35;
  margin-bottom: 0;
  flex: 1;
}

.wishlist-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
}

.wishlist-card__actions a.btn-primary {
  color: var(--text-inverse);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wishlist-card__actions button {
  font-size: 0.8125rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
}

.wishlist-card__actions button:hover {
  border-color: var(--text-primary);
}

.wishlist-page-empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  grid-column: 1 / -1;
}

/* ================================================
   YARDIM / COMPARE PAGES
   ================================================ */

.yardim-page .corporate-content {
  max-width: 720px;
  text-align: left;
}

.yardim-page .corporate-content h1 {
  text-align: left;
}

.yardim-section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--header-stack-h) + 16px);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.compare-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}

.compare-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg-secondary);
}

.compare-card__body {
  padding: 20px;
}

.compare-card__body h2 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .pdp-promo-strip {
    grid-template-columns: 1fr;
  }
  .pdp-countdown {
    text-align: left;
  }
  .pdp-countdown__boxes {
    justify-content: flex-start;
  }
  .tier-cards {
    grid-template-columns: 1fr;
  }
  .complete-look-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-gallery {
    position: relative;
    top: auto;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Hesap / ödeme */
.auth-page .lead a {
  color: var(--text-primary);
  text-decoration: underline;
}
.auth-error {
  color: #b42318;
  font-size: 0.9375rem;
  margin: 0 0 16px;
}
.auth-success {
  color: #0d6b3c;
  font-size: 0.9375rem;
  margin: 0 0 16px;
  padding: 10px 12px;
  background: rgba(13, 107, 60, 0.08);
  border-radius: 8px;
}
.auth-hint {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: -8px 0 16px;
}
.auth-switch {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(156, 123, 86, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(250, 248, 245, 0.94), rgba(255, 255, 255, 0.98));
}
.auth-switch p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.auth-switch p + p {
  margin-top: 7px;
}
.auth-switch a {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-auth-name {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pdp-actions button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
}
.paytr-frame-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}
.paytr-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 400px;
  max-width: 100%;
  border: 0;
}
.paytr-frame-wrap--elevated {
  box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
}

/* Checkout (odeme.php) */
.page-odeme .checkout-main {
  margin-top: var(--header-stack-h);
  padding: 24px 0 80px;
  min-height: 48vh;
  box-sizing: border-box;
}
.checkout-container {
  max-width: 1120px;
  width: 100%;
  min-width: 0;
}
.checkout-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.checkout-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
.checkout-breadcrumb a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}
.checkout-breadcrumb__here {
  color: var(--text-primary);
  font-weight: 500;
}

.checkout-steps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  counter-reset: none;
}
.checkout-steps__item {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.checkout-steps__item a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.checkout-steps__item a:hover {
  color: var(--text-primary);
}
.checkout-steps__num {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.checkout-steps__item--done {
  color: var(--text-secondary);
}
.checkout-steps__item--done .checkout-steps__num {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--text-inverse);
}
.checkout-steps__item--active {
  background: var(--bg-card);
  border-color: var(--text-primary);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
}
.checkout-steps__item--active .checkout-steps__num {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.checkout-page-head {
  margin-bottom: 32px;
  max-width: 640px;
}
.checkout-page-head h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.checkout-page-head__sub {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.checkout-alert {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: #fef3f2;
  border-radius: var(--radius-md);
  border: 1px solid #fecdca;
}

.checkout-layout,
.checkout-payment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.checkout-summary-card,
.checkout-form-panel,
.checkout-iframe-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.04);
}
.checkout-summary-card--sticky {
  position: sticky;
  top: 100px;
}
.checkout-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.checkout-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  max-height: min(420px, 50vh);
  overflow-y: auto;
  padding-right: 4px;
}
.checkout-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}
.checkout-line__body {
  min-width: 0;
}
.checkout-line__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}
.checkout-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-line__ph {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-secondary), #e8e4de);
}
.checkout-line__title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
}
.checkout-line__meta,
.checkout-line__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.checkout-line__price {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-primary);
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
}
.checkout-summary-total strong {
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-microcopy {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 16px 0 0;
}

.checkout-text-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: underline;
}
.checkout-text-link:hover {
  color: var(--text-primary);
}
.checkout-text-link--back {
  margin-top: 20px;
}

.checkout-empty {
  text-align: center;
  padding: 24px 12px;
}
.checkout-empty p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.checkout-form .form-group {
  margin-bottom: 18px;
}
.checkout-form .form-group label .req {
  color: #b42318;
  font-weight: 400;
}
.checkout-form-panel .checkout-form {
  margin: 0;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-primary);
  transition:
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--text-primary);
}

.checkout-form select,
.checkout-form .checkout-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-primary);
  cursor: pointer;
  transition:
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.checkout-form select:focus,
.checkout-form .checkout-select:focus {
  outline: none;
  background: var(--bg-card);
  border-color: var(--text-primary);
}

.checkout-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 8px 0 24px;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.btn-primary--wide {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 16px 24px;
  font-size: 0.9375rem;
}
.checkout-secondary-link {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: underline;
}
.checkout-secondary-link:hover {
  color: var(--text-primary);
}

/* Ödeme adımı: kısa başlık (dikey alan tasarrufu) */
.checkout-pay-compact {
  margin: 0 0 16px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}
.checkout-pay-compact__eyebrow {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.checkout-pay-compact h1 {
  margin: 0 0 8px;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.checkout-pay-compact__sub {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.page-odeme--pay-step .checkout-main {
  padding-top: 16px;
  padding-bottom: 48px;
}
.page-odeme--pay-step .checkout-breadcrumb {
  margin-bottom: 10px;
}
.page-odeme--pay-step .checkout-steps {
  margin-bottom: 14px;
}
.page-odeme--pay-step .checkout-steps__item {
  padding-top: 10px;
  padding-bottom: 10px;
}
.page-odeme--pay-step .checkout-summary-card .checkout-microcopy {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 10px;
}
.page-odeme--pay-step .checkout-summary-card .checkout-text-link {
  font-size: 0.8125rem;
  margin-top: 6px;
  display: inline-block;
}

@media (min-width: 901px) {
  .page-odeme--pay-step .checkout-payment-layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 18px;
  }
  .page-odeme--pay-step .checkout-summary-card,
  .page-odeme--pay-step .checkout-iframe-panel {
    padding: 16px 18px;
  }
  .page-odeme--pay-step .checkout-card-title {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 1rem;
  }
  .page-odeme--pay-step .checkout-lines {
    max-height: min(260px, 36vh);
    gap: 10px;
    margin-bottom: 14px;
  }
  .page-odeme--pay-step .checkout-line {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .page-odeme--pay-step .checkout-line__thumb {
    width: 48px;
    height: 48px;
  }
  .page-odeme--pay-step .checkout-line__thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
  }
}

.checkout-pay-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  margin-bottom: 28px;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
}
.checkout-pay-hero__inner {
  max-width: 720px;
}
.checkout-pay-hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin: 0 0 10px;
}
.checkout-pay-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.checkout-pay-hero__lead {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.88;
}
.checkout-trust-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.8125rem;
  opacity: 0.85;
}
.checkout-trust-inline li {
  padding-left: 14px;
  position: relative;
}
.checkout-trust-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

.checkout-panel--solo {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.page-odeme--pay-step .site-header {
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}

@media (max-width: 900px) {
  .checkout-layout,
  .checkout-payment-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .checkout-summary-card--sticky {
    position: static;
  }
}

/* Ödeme: mobil — yatay adımlar, özet + form taşmasız */
@media (max-width: 768px) {
  .page-odeme .checkout-main {
    padding: 16px 0 100px;
    padding-bottom: max(100px, env(safe-area-inset-bottom, 0px) + 80px);
  }

  .page-odeme--pay-step .checkout-main {
    padding-bottom: max(72px, env(safe-area-inset-bottom, 0px) + 48px);
  }

  .checkout-breadcrumb {
    margin-bottom: 16px;
    font-size: 0.75rem;
  }

  .checkout-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 24px;
  }

  .checkout-steps__item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 12px 6px;
    font-size: 0.6875rem;
    line-height: 1.25;
  }

  .checkout-steps__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .checkout-steps__num {
    position: static;
    transform: none;
    margin: 0 0 8px;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .checkout-page-head {
    margin-bottom: 20px;
  }

  .checkout-page-head h1 {
    font-size: 1.5rem;
  }

  .checkout-page-head__sub {
    font-size: 0.875rem;
  }

  .checkout-summary-card,
  .checkout-form-panel,
  .checkout-iframe-panel {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    min-width: 0;
  }

  .checkout-card-title {
    font-size: 1rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .checkout-lines {
    max-height: none;
    overflow: visible;
    gap: 12px;
    margin-bottom: 16px;
  }

  .checkout-line {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .checkout-line__thumb {
    width: 48px;
    height: 48px;
  }

  .checkout-line__title {
    font-size: 0.8125rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  .checkout-line__price {
    font-size: 0.8125rem;
  }

  .checkout-summary-total {
    gap: 12px;
  }

  .checkout-summary-total strong {
    font-size: 1.125rem;
  }

  .checkout-pay-compact {
    margin-bottom: 12px;
    padding: 12px 14px;
  }

  .checkout-pay-compact h1 {
    font-size: 1.125rem;
  }

  .checkout-pay-compact__sub {
    font-size: 0.75rem;
  }

  .checkout-pay-hero {
    padding: 24px 18px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
  }

  .checkout-pay-hero__lead {
    font-size: 0.875rem;
  }

  .checkout-trust-inline {
    flex-direction: column;
    gap: 8px;
  }

  .paytr-frame-wrap iframe {
    min-height: 360px;
  }

  .cart-drawer {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .checkout-steps__item {
    font-size: 0.625rem;
    padding: 10px 4px;
  }

  .checkout-steps__num {
    width: 26px;
    height: 26px;
    font-size: 0.6875rem;
  }
}

.quick-view-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration) var(--ease),
    visibility var(--duration) var(--ease);
}
.quick-view-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background: var(--bg-card);
  width: 90%;
  max-width: 600px;
  z-index: 1001;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition:
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease),
    visibility var(--duration) var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quick-view-modal.is-active {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.quick-view__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: background var(--duration);
}
.quick-view__close:hover {
  background: var(--border-light);
}

.quick-view__content {
  display: flex;
  flex-direction: row;
  height: 100%;
  max-height: 80vh;
}

.quick-view__img-col {
  width: 45%;
  flex-shrink: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-view__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view__info-col {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.quick-view__info-col h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.quick-view__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 16px;
}
.quick-view__prices .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  white-space: nowrap;
}
.quick-view__prices .price-old {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  line-height: 1.2;
  white-space: nowrap;
}

.quick-view__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}

.quick-view__actions {
  margin-top: auto;
}
.quick-view__actions .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 14px;
}

/* RESPONSIVE POLISH */
@media (max-width: 480px) {
  /* PDP Actions - force wrap */
  .pdp-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px;
  }
  .pdp-actions .btn-primary {
    flex: 1;
    order: 1;
    min-width: 0;
  }
  .pdp-actions .btn-icon-heart {
    flex: 0 0 52px;
    order: 2;
  }

  .pdp-buy-row {
    flex-wrap: wrap;
  }
  .pdp-buy-row .pdp-qty-stepper {
    order: 1;
  }
  .pdp-buy-row .btn-icon-heart {
    order: 2;
    margin-left: auto;
  }
  .pdp-buy-row .btn-primary {
    flex: 1 1 100%;
    order: 3;
  }

  /* Modal adjustments */
  .quick-view__content {
    flex-direction: column;
  }
  .quick-view__img-col {
    width: 100%;
    height: 200px;
  }
  .quick-view__info-col {
    padding: 16px;
  }
  .quick-view__desc {
    font-size: 0.8rem;
  }

  /* FAQ Polish */
  .pdp-faq-item {
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: none;
  }
  .pdp-faq-item [data-faq-toggle] {
    padding: 18px 20px;
    font-size: 1rem;
  }
}

/* ================================================
   NEW MOBILE UI TWEAKS
   ================================================ */

@media (max-width: 768px) {
  /* Hide top-header cart & wishlist icons on mobile (they are in bottom bar) */
  .header-actions .header-action-item[data-open-cart],
  .header-actions .header-action-item[href*="favoriler"] {
    display: none !important;
  }

  /* Reduce excessive top gap on product detail page */
  .product-detail {
    padding-top: 24px !important;
    overflow-x: hidden;
    width: 100%;
  }

  .product-detail > .container {
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
  }

  .detail-info {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .detail-info h1,
  .detail-tags,
  .social-proof-row,
  .pdp-promo-strip,
  .pdp-promo-strip h2,
  .pdp-promo-strip__sub {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pdp-promo-strip {
    padding: 16px;
    gap: 16px;
  }

  .pdp-countdown__boxes {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .pdp-countdown__box {
    min-width: 48px;
    flex: 1 1 auto;
  }

  /* Renk tooltip: mobilde yatay kalsın (harf harf kırılma olmasın) */
  .color-section {
    overflow: visible;
  }

  .color-variant__tip {
    white-space: nowrap;
    width: max-content;
    max-width: min(220px, 85vw);
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .color-variant:first-child .color-variant__tip {
    left: 0;
    transform: translateX(0) translateY(4px);
  }

  .color-variant:first-child:hover .color-variant__tip,
  .color-variant:first-child:focus-visible .color-variant__tip {
    transform: translateX(0) translateY(0);
  }

  .color-variant:first-child .color-variant__tip::after {
    left: 16px;
    transform: none;
  }

  .color-variant:last-child .color-variant__tip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(4px);
  }

  .color-variant:last-child:hover .color-variant__tip,
  .color-variant:last-child:focus-visible .color-variant__tip {
    transform: translateX(0) translateY(0);
  }

  .color-variant:last-child .color-variant__tip::after {
    left: auto;
    right: 16px;
    transform: none;
  }

  .description-panel,
  .description-panel * {
    max-width: 100%;
  }

  .description-panel img,
  .description-panel table,
  .description-panel iframe,
  .description-panel video {
    max-width: 100% !important;
    height: auto !important;
  }

  .description-panel table {
    display: block;
    overflow-x: auto;
  }

  .complete-look,
  .pdp-faq,
  .why-compare {
    max-width: 100%;
    overflow-x: hidden;
  }

  .detail-util-links {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

/* Modals for Kargo, Beden, İade */
.info-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background: var(--bg-card);
  width: 90%;
  max-width: 500px;
  z-index: 1001;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition:
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease),
    visibility var(--duration) var(--ease);
  padding: 24px 32px 32px 32px;
  max-height: 85vh;
  overflow-y: auto;
}

.info-modal.is-active {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.info-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
  color: var(--text-primary);
}
.info-modal__close:hover {
  background: var(--border-light);
}

.info-modal h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.info-modal p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ================================================
   HESAP PANELİ (siparişler, profil, detay)
   ================================================ */

/* Adreslerim: üst duyuru şeridi kapalı; header yüksekliği buna göre */
body.page-adreslerim {
  --announcement-h: 0px;
}

.account-body.account-page,
.account-body .account-page {
  padding-top: 100px;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.account-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-stack-h) + 16px);
}

.account-sidebar__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.account-sidebar__name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 4px;
}

.account-sidebar__email {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  word-break: break-word;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.account-nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.account-nav__link:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.account-nav__link.is-active {
  background: rgba(156, 123, 86, 0.12);
  color: var(--brand-dark);
}

.account-sidebar__logout {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.account-sidebar__logout:hover {
  color: var(--error);
}

.account-main {
  min-width: 0;
}

.account-body .account-main .account-title {
  text-align: left;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}

.account-body .account-main .account-lead {
  text-align: left;
  margin-bottom: 28px;
  max-width: 52ch;
}

.account-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.account-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.account-breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.account-flash {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.account-flash--ok {
  background: rgba(74, 124, 89, 0.1);
  color: #2d5a3d;
  border: 1px solid rgba(74, 124, 89, 0.25);
}

.account-note {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.account-note--pending {
  background: rgba(156, 123, 86, 0.1);
  border-color: rgba(156, 123, 86, 0.25);
  color: var(--text-primary);
}

.account-note--pending p {
  margin: 0;
}

.account-note--ok {
  background: rgba(74, 124, 89, 0.1);
  border-color: rgba(74, 124, 89, 0.28);
  color: var(--text-primary);
}

.account-note--warn {
  background: rgba(184, 84, 80, 0.08);
  border-color: rgba(184, 84, 80, 0.22);
  color: var(--text-primary);
}

.account-note--info {
  background: rgba(59, 99, 140, 0.08);
  border-color: rgba(59, 99, 140, 0.22);
  color: var(--text-primary);
}

.account-note__reason {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(156, 123, 86, 0.2);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.account-note__reason-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 0.8125rem;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.account-badge--pending {
  background: rgba(136, 136, 136, 0.15);
  color: #555;
}
.account-badge--processing {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}
.account-badge--shipped {
  background: rgba(124, 58, 237, 0.12);
  color: #5b21b6;
}
.account-badge--delivered {
  background: rgba(74, 124, 89, 0.15);
  color: #2d5a3d;
}
.account-badge--cancelled {
  background: rgba(184, 84, 80, 0.12);
  color: #a8433f;
}

.account-order-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.account-order-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.account-order-card__no {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.account-order-card__date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.account-order-card__mid {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 24px;
  margin-bottom: 16px;
}

.account-order-card__total {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.account-order-card__flags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.account-order-card__flags li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  padding-left: 0;
}

.account-order-card__flags li::before {
  display: none;
}

.account-empty {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
}

.account-empty p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.account-order-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.account-order-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.account-order-hero__date {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.account-order-hero__sub {
  flex-basis: 100%;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.account-order-hero__total span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.account-order-hero__total strong {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Kargo takip (sipariş detay + kargo-takip sayfası) */
.cargo-track-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 20px 0 24px;
  box-shadow: var(--shadow-sm);
}
.cargo-track-panel__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.cargo-track-panel__lead {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 18px;
  line-height: 1.55;
}
.cargo-track-panel__code {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-all;
  color: var(--text-primary);
}
.cargo-track-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cargo-track-panel__actions .btn-primary,
.cargo-track-panel__actions .btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cargo-track-panel__actions .btn-primary {
  background: var(--brand);
  color: var(--text-inverse);
}
.cargo-track-panel__actions .btn-primary:hover {
  filter: brightness(0.95);
}
.cargo-track-panel__actions .btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.cargo-track-panel__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 14px 0 0;
  line-height: 1.5;
}
.cargo-track-page {
  max-width: 560px;
  margin: 0 auto;
}
.cargo-track-page .form-group {
  margin-bottom: 16px;
}
.cargo-track-page label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.cargo-track-page input[type="text"],
.cargo-track-page select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.9375rem;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.cargo-track-page button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

.account-action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.account-action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.account-action-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.account-action-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.account-action-card__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.account-action-card__btn {
  margin-top: auto;
}

.account-action-card--cancel .account-action-card__field {
  width: 100%;
  align-self: stretch;
  margin-bottom: 0;
}

.account-action-card--cancel textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
}

.account-action-card--cancel textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(156, 123, 86, 0.15);
}

.account-action-card--cancel .req {
  color: var(--error);
  font-weight: 700;
}

.account-toolbar {
  margin-bottom: 20px;
}

.account-address-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-address-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.account-address-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}

.account-address-card__label {
  font-size: 1rem;
  color: var(--text-primary);
  min-width: 0;
  word-break: break-word;
}

.account-address-card__def {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
}

.account-address-card__name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 8px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-address-card__addr {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-address-card__inv {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.account-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.account-address-card__del {
  display: inline;
  margin: 0;
}

.account-address-editor {
  margin-top: 8px;
}

.account-inv-type {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}

.account-inv-type__legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding: 0;
}

.account-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.account-radio input {
  accent-color: var(--brand);
}

.account-inv-block[hidden] {
  display: none !important;
}

.account-form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0 16px;
}

.account-checkbox-row {
  margin-top: 8px;
}

.account-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.account-checkbox input {
  accent-color: var(--brand);
}

/* .form-group label { display:block; width:100% input } checkbox satırını bozmasın */
.form-group label.account-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-weight: 500;
  cursor: pointer;
}

.form-group label.account-checkbox input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  align-self: center;
  border-radius: 4px;
  vertical-align: middle;
}

.form-group label.account-checkbox span {
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}

.account-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.account-body .btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.account-body .btn-ghost:hover {
  color: var(--error);
  border-color: rgba(184, 84, 80, 0.4);
  background: rgba(184, 84, 80, 0.06);
}

.account-section-title {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text-primary);
}

.account-order-lines {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-order-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.account-order-line__img {
  display: block;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-secondary);
}

.account-order-line__img--placeholder {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--border-light) 100%
  );
  border: 1px dashed var(--border);
}

.account-order-line__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-line__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 8px;
}

.account-order-line__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.45;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.account-order-line__title:hover {
  color: var(--brand);
}

.account-order-line__var {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.account-order-line__meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.account-order-line__sum {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: right;
  align-self: center;
  padding-left: 8px;
}

.account-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.account-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.account-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.account-card__ledger-h {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 1.25rem 0 0.5rem;
}

.account-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.account-card__text a {
  color: var(--brand-dark);
  font-weight: 500;
}

.account-card__muted {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.account-card--form {
  margin-bottom: 24px;
}

.account-card--form .contact-form {
  margin-top: 8px;
  padding: 0;
  border: none;
  background: transparent;
}

.form-hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  .account-order-line {
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .account-order-line__img,
  .account-order-line__img--placeholder {
    width: 56px;
    height: 56px;
  }

  .account-order-line__body {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
  }

  .account-order-line__sum {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: end;
    text-align: right;
    align-self: start;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
    padding-top: 10px;
    width: 100%;
  }
}

/* ================================================
   BİRLİKTE TAMAMLA MOBILE GRID FIX
   ================================================ */
@media (max-width: 480px) {
  .complete-look-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

/* SweetAlert2 — zekrin-confirm-submit.js (hesap / sipariş onayları) */
.swal2-popup.zekrin-swal-dialog {
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}
.swal2-popup.zekrin-swal-dialog .swal2-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text, #181c32);
}
.swal2-popup.zekrin-swal-dialog .swal2-html-container {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted, #3f4254);
}
.swal2-popup.zekrin-swal-dialog .swal2-actions {
  margin-top: 1.35rem;
  gap: 0.65rem;
}

/* Site giriş duyuru modali (admin ayarları) — tema ile uyumlu, mobil öncelikli */
.zekrin-entry-banner {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top))
    max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom))
    max(1rem, env(safe-area-inset-left));
  box-sizing: border-box;
}
.zekrin-entry-banner[hidden] {
  display: none !important;
}
.zekrin-entry-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.zekrin-entry-banner__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(28rem, calc(100vw - 2rem));
  max-height: min(85vh, calc(100dvh - 2rem));
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    165deg,
    var(--surface, #faf8f5) 0%,
    var(--bg-card, #fff) 45%
  );
  border-radius: clamp(0.75rem, 3vw, 1.125rem);
  padding: 0;
  box-shadow:
    0 4px 6px -1px rgba(22, 20, 18, 0.06),
    0 24px 48px -12px rgba(22, 20, 18, 0.2);
  border: 1px solid var(--border-light, #e8e4df);
  overflow: hidden;
}
.zekrin-entry-banner__dialog::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--brand-dark) 0%,
    var(--brand) 50%,
    var(--brand-light) 100%
  );
  flex-shrink: 0;
}
.zekrin-entry-banner__shell {
  padding: 1.5rem clamp(1.1rem, 4vw, 1.75rem) 1.35rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.zekrin-entry-banner__media {
  margin: -0.25rem 0 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light, #e8e4df);
  background: var(--bg-secondary, #f3f0eb);
}
.zekrin-entry-banner__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  vertical-align: middle;
}
.zekrin-entry-banner__x {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  color: var(--text-muted, #5c5c5c);
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.zekrin-entry-banner__x:hover {
  background: var(--bg-secondary, #f0ebe4);
  color: var(--text, #1a1a1a);
}
.zekrin-entry-banner__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.zekrin-entry-banner__title {
  font-size: clamp(1.125rem, 4vw, 1.35rem);
  font-weight: 700;
  margin: 0 2.25rem 0.75rem 0;
  line-height: 1.25;
  color: var(--text, #161412);
  letter-spacing: -0.02em;
}
.zekrin-entry-banner__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted, #4a4a4a);
  margin-bottom: 1.35rem;
}
.zekrin-entry-banner__body p {
  margin: 0 0 0.5rem;
}
a.zekrin-entry-banner__cta {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.zekrin-entry-banner__cta {
  width: 100%;
  border: none;
  border-radius: var(--radius-md, 0.5rem);
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand) 55%,
    var(--brand-light) 100%
  );
  box-shadow: 0 2px 12px rgba(124, 98, 68, 0.22);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
}
.zekrin-entry-banner__cta:hover {
  box-shadow: 0 4px 18px rgba(124, 98, 68, 0.28);
  filter: brightness(1.03);
}
.zekrin-entry-banner__cta:active {
  transform: scale(0.98);
}
@media (min-width: 480px) {
  .zekrin-entry-banner__cta {
    width: auto;
    min-width: 11rem;
    align-self: flex-start;
  }
}
