﻿:root {
  --bg: #faf8f5;
  --bg-elev: #ffffff;
  --panel: #f3f0eb;
  --line: rgba(62, 52, 44, 0.1);
  --line-strong: rgba(62, 52, 44, 0.17);
  --text: #2c2620;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body.store {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.78; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.announce {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  color: rgba(15, 23, 42, 0.88);
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-head .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
@media (max-width: 1023px) {
  .site-head .inner {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
    grid-template-areas: "menu brand tools";
    align-items: center;
    gap: 8px 10px;
    padding: 12px min(14px, 4vw);
  }
  .site-head .head-actions {
    display: contents;
  }
  .site-head .head-menu-search {
    grid-area: menu;
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: start;
  }
  .site-head .head-menu-search .search--head {
    display: none !important;
  }
  .site-head .head-menu-search .nav-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin: 0;
  }
  .site-head .brand {
    grid-area: brand;
    justify-self: center;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .site-head .brand img {
    max-height: 28px;
    margin-left: auto;
    margin-right: auto;
    object-position: center center;
  }
  .site-head .brand-text {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.2em;
  }
  .site-head .tools {
    grid-area: tools;
    flex: 0 0 auto;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-end;
    justify-self: end;
    gap: 6px;
  }
  .site-head .cart-link {
    padding: 6px 8px;
    margin: 0;
    gap: 4px;
  }
}
.brand {
  flex: 1 1 auto;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: var(--text);
}
.brand img {
  display: block;
  filter: none;
}
@media (min-width: 1024px) {
  .brand img {
    max-height: 22px;
  }
}
.nav {
  display: none;
  flex: 1 0 100%;
  order: 10;
  gap: clamp(16px, 2.2vw, 28px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.82);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.tools { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 1; min-width: 0; }
.search {
  flex: 0 1 auto;
  min-width: 0;
}
.search input {
  width: clamp(76px, 19vw, 104px);
  max-width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--text);
  padding: 5px 0 6px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font);
}
.search input::placeholder {
  color: var(--muted);
  opacity: 0.82;
}
.search input:focus { outline: none; border-bottom-color: rgba(15, 23, 42, 0.35); }
@media (min-width: 1024px) {
  .search input {
    width: 108px;
  }
}
.search--page { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search--page input { flex: 1 1 220px; width: auto; min-width: 200px; }
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px;
  margin: 0 2px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.1),
    0 4px 14px rgba(15, 23, 42, 0.1);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.cart-link:hover {
  opacity: 1;
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(15, 23, 42, 0.1),
    0 8px 22px rgba(15, 23, 42, 0.12);
}
.cart-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cart-icon {
  display: block;
  width: 22px;
  height: 22px;
}
.cart-lbl { display: none !important; }
.cart-link .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 0 0 2px var(--bg),
    0 2px 8px rgba(15, 23, 42, 0.15);
}

.account-menu {
  position: relative;
  flex-shrink: 0;
}
/* Düğme ile açılan panel arasında boşluk kalmasın — fare menüye giderken kapanmayı önler */
.account-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  pointer-events: auto;
}
.account-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.account-menu-toggle:hover {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
.account-menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.account-menu-icon {
  display: flex;
  color: var(--text);
  flex-shrink: 0;
}
.account-menu-label,
.account-menu-chevron {
  display: none !important;
}
.account-menu-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: clamp(216px, 72vw, 272px);
  max-width: calc(100vw - 48px);
  padding: 8px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  z-index: 230;
}
.account-menu-dropdown[hidden] {
  display: none !important;
}
.account-menu-meta {
  padding: 8px 10px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--muted);
  word-break: break-word;
}
.account-menu-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.9);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.account-menu-link:hover {
  opacity: 1;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
.account-menu-link--primary {
  color: var(--accent);
}
.account-menu-link--primary:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

/* WhatsApp — sol alt sabit düğme */
.wa-float-fab {
  position: fixed;
  z-index: 130;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.wa-float-fab:hover {
  opacity: 1;
  filter: brightness(1.06);
  transform: scale(1.03);
}
.wa-float-fab-icon {
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .wa-float-fab:hover {
    transform: none;
  }
}

body.store.drawer-open {
  overflow: hidden;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.2);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle-bars {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.nav-toggle-line {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .site-head .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 10px 20px;
    padding-top: 18px;
    padding-bottom: 14px;
  }
  .brand {
    flex: initial;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }
  .brand img {
    max-height: 42px;
    margin: 0 auto;
  }
  .brand-text {
    display: inline-block;
    font-size: 0.8125rem;
    letter-spacing: 0.34em;
  }
  .head-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
    align-self: center;
    position: relative;
    z-index: 2;
  }
  .head-menu-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: none;
    background: transparent;
    max-width: none;
  }
  .head-menu-search .nav-toggle {
    display: none;
  }
  .head-menu-search .search--head {
    display: flex;
    align-items: center;
  }
  .head-menu-search .search--head input {
    width: 108px;
  }
  .drawer-search {
    display: none;
  }
  .tools {
    margin-left: 0;
    flex-shrink: 0;
  }
  .nav {
    display: flex;
    flex: initial;
    order: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid var(--line);
    justify-self: center;
    width: 100%;
  }
  .nav-toggle { display: none; }
  .drawer {
    display: none !important;
  }
}

.nav-item { position: relative; }
.nav-submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: 100%;
  min-width: 200px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-submenu a::after { display: none; }
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
/* Mobil tam ekran menü (overlay + panel) */
.drawer[hidden] {
  display: none !important;
}
@media (max-width: 1023px) {
  .tools .account-menu {
    display: none !important;
  }
  .drawer:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    z-index: 200;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
  }
  .drawer-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(100%, 360px);
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    background: linear-gradient(195deg, #ffffff 0%, #f4f6f9 45%);
    border-right: 1px solid var(--line);
    box-shadow: 16px 0 48px rgba(15, 23, 42, 0.14);
    min-height: 0;
    box-sizing: border-box;
  }
  .drawer-panel-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    text-decoration: none;
    color: inherit;
  }
  .drawer-brand img {
    display: block;
    max-height: 32px;
    width: auto;
    max-width: min(200px, 58vw);
    object-fit: contain;
    object-position: left center;
  }
  .drawer-panel-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.88);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .drawer-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--muted);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-close:hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.04);
  }
  .drawer-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .drawer-close svg {
    display: block;
  }
  .drawer-search {
    flex-shrink: 0;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.02);
  }
  .drawer-search .search--drawer {
    display: block;
    margin: 0;
  }
  .drawer-search .search--drawer input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--bg-elev);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9375rem;
    letter-spacing: normal;
    text-transform: none;
  }
  .drawer-search .search--drawer input::placeholder {
    color: var(--muted);
    opacity: 0.85;
  }
  .drawer-search .search--drawer input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
  }
  .drawer-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .drawer-link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.82);
    text-decoration: none;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-link:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text);
  }
  .drawer-link--sub {
    min-height: 44px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding-left: 22px;
  }
  .drawer-link--sub:hover {
    color: var(--text);
  }
  .drawer-account {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .drawer-account-meta {
    margin: 0 0 8px;
    padding: 0 14px 4px;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--muted);
    word-break: break-word;
  }
  .drawer-link--accent {
    margin-top: 0;
    padding-top: 12px;
    border-top: none;
    border-radius: 10px;
    color: var(--accent);
  }
  .drawer-link--accent:hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.05);
  }
  .drawer-link--account {
    color: rgba(15, 23, 42, 0.88);
  }
  .drawer-link--logout {
    color: #991b1b;
    font-weight: 600;
  }
  .drawer-link--logout:hover {
    color: #7f1d1d;
    background: rgba(185, 28, 28, 0.08);
  }
  .drawer-branch {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2px;
  }
  .drawer-branch-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.82);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-branch-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text);
  }
  .drawer-branch-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .drawer-branch-label {
    min-width: 0;
    flex: 1;
  }
  .drawer-branch-chevron {
    flex-shrink: 0;
    display: flex;
    color: var(--muted);
    transition: transform 0.2s ease;
  }
  .drawer-branch-toggle[aria-expanded='true'] .drawer-branch-chevron {
    transform: rotate(-180deg);
    color: rgba(250, 250, 250, 0.75);
  }
  .drawer-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 8px 6px;
    margin: 0 0 4px;
    border-left: 2px solid var(--line-strong);
  }
  .drawer-sub[hidden] {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-line {
    transition: none;
  }
  .drawer-branch-chevron {
    transition: none;
  }
  .account-menu-chevron {
    transition: none;
  }
}
.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(36px, 6vw, 72px);
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 22px clamp(72px, 11vw, 140px);
}
.site-main > * {
  min-width: 0;
  box-sizing: border-box;
}
/* Tam genişlik hero / slider üst menüye yapışsın */
.site-main:has(> .hero-slider:first-child),
.site-main:has(> .category-hero:first-child) {
  padding-top: 0;
}
.hero-slider {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.hero-slider-viewport {
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  background: var(--bg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide--solid {
  background-image: none !important;
  background: radial-gradient(ellipse 100% 90% at 50% 85%, #e8ecf2 0%, #f8f9fb 50%);
}
.hero-slide:not(.hero-slide--solid)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 6vw, 72px) clamp(22px, 5vw, 64px);
}
.hero-season {
  position: absolute;
  top: clamp(22px, 5vw, 52px);
  left: clamp(22px, 5vw, 64px);
  z-index: 4;
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}
.hero-slider--fallback .hero-slide-inner { justify-content: center; align-items: flex-start; }
.hero-slide h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.12;
}
.hero-slide p { margin: 0 0 24px; font-size: 0.9375rem; color: rgba(255,255,255,0.68); max-width: 420px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(0,0,0,0.45);
  color: var(--text);
  cursor: pointer;
}
.hero-arrow-prev { left: 14px; }
.hero-arrow-next { right: 14px; }
.hero-arrow-prev::before { content: "‹"; }
.hero-arrow-next::before { content: "›"; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; transform: scale(1.15); }
.section { padding-top: clamp(48px, 8vw, 88px); }
.section--tight { padding-top: clamp(36px, 6vw, 64px); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.section-kicker {
  margin: 0 0 6px;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head h2 {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-meta {
  margin: 14px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* Kategori ürün listesi — yan sıralama/filtre */
.cat-layout {
  display: block;
}
.cat-layout--with-sidebar {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (min-width: 900px) {
  .cat-layout--with-sidebar {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  }
  .cat-layout__aside {
    position: sticky;
    top: 88px;
    padding-right: 4px;
    margin-top: -2px;
  }
}

.cat-toolbar {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 22px);
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(15,23,42,0.02);
}
.cat-layout__aside .cat-toolbar-submit {
  flex-direction: column;
  align-items: stretch;
}
.cat-layout__aside .cat-toolbar-submit .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.cat-toolbar-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
/* Özel sıralama açılır listesi (.bc-select mağaza koyu temasıyla) */
.cat-toolbar-fieldset.cat-toolbar-sort .cat-toolbar-legend {
  margin-bottom: 7px;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
}
.bc-select.bc-select--sort {
  position: relative;
  width: 100%;
}
.bc-select-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 8px 9px 8px 10px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.6875rem;
  line-height: 1.38;
  letter-spacing: 0.035em;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.4);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.bc-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.05),
    0 3px 10px rgba(0, 0, 0, 0.35);
}
.bc-select.is-open > .bc-select-trigger {
  border-color: rgba(15, 23, 42, 0.22);
}
.bc-select-trigger:focus-visible {
  outline: 2px solid rgba(15, 23, 42, 0.45);
  outline-offset: 2px;
}
.bc-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}
.bc-select-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.05);
}
.bc-select-arrow::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(250, 250, 250, 0.72);
  border-bottom: 1.5px solid rgba(250, 250, 250, 0.72);
  transform: rotate(45deg) translate(-0.5px, -0.5px);
  transition: transform 0.22s ease, translate 0.22s ease;
}
.bc-select.is-open > .bc-select-trigger .bc-select-arrow::before {
  transform: rotate(-135deg) translate(-0.5px, -0.5px);
}
.bc-select-panel {
  list-style: none;
  margin: 5px 0 0;
  padding: 4px 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 60;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.38),
    0 14px 32px rgba(0, 0, 0, 0.55);
  max-height: min(220px, 44vh);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}
.bc-select-panel::-webkit-scrollbar {
  width: 5px;
}
.bc-select-panel::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 4px;
}
.bc-select-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 11px;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.85);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.028em;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.bc-select-option:hover {
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.96);
}
.bc-select-option:focus-visible {
  outline: none;
  background: rgba(15, 23, 42, 0.06);
}
.bc-select-option.is-active {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font-weight: 500;
}
.bc-select-panel li + li .bc-select-option {
  margin-top: 0;
}
.cat-toolbar-filter {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: stretch;
}
.cat-toolbar-filter .cat-toolbar-money {
  flex: 0 1 auto;
  max-width: none;
  width: 100%;
}
.cat-toolbar-legend {
  margin: 0 0 10px;
  padding: 0;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}
.cat-toolbar-label {
  display: flex;
  gap: 8px;
  margin: 0;
  align-items: center;
}
.cat-toolbar-label > span:first-child {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
}
.cat-toolbar-money {
  flex-direction: column;
  align-items: stretch !important;
  gap: 6px !important;
}
.cat-toolbar-money input {
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
  width: 100%;
}
.cat-toolbar-money input::placeholder {
  color: rgba(250,250,250,0.28);
}
.cat-toolbar-money input:focus {
  outline: 1px solid rgba(250,250,250,0.45);
  outline-offset: 1px;
}
.cat-toolbar-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  cursor: pointer;
  flex: 0 1 auto;
  min-height: auto;
}
.cat-toolbar-checkbox input {
  margin: 4px 0 0;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.cat-toolbar-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.cat-toolbar-beden-fieldset {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.cat-toolbar-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cat-toolbar-reset {
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.strip-shell {
  position: relative;
  margin: 0 -22px;
}
.strip-products {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 52px 14px;
  margin: 0;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.strip-products::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.strip-products:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}
.strip-nav {
  position: absolute;
  top: min(42%, 180px);
  z-index: 5;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.strip-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 1);
}
.strip-nav:disabled {
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
}
.strip-nav--prev {
  left: 10px;
}
.strip-nav--prev::before {
  content: "‹";
  margin-right: 2px;
}
.strip-nav--next {
  right: 10px;
}
.strip-nav--next::before {
  content: "›";
  margin-left: 2px;
}
@media (max-width: 519px) {
  .strip-products { padding-left: 46px; padding-right: 46px; }
  .strip-nav { width: 34px; height: 34px; top: min(38%, 150px); }
  .strip-nav--prev { left: 8px; }
  .strip-nav--next { right: 8px; }
}
.strip-products .card { flex: 0 0 74%; max-width: 280px; }
@media (min-width: 520px) { .strip-products .card { flex: 0 0 45%; max-width: 300px; } }
@media (min-width: 900px) { .strip-products .card { flex: 0 0 calc(25% - 14px); max-width: none; } }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .collections-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .collections-grid { grid-template-columns: repeat(4, 1fr); } }
.collection-tile {
  position: relative;
  display: block;
  min-height: 200px;
  background: var(--panel);
  overflow: hidden;
}
.collection-tile-bg {
  position: absolute;
  inset: 0;
  background-color: #e8eaed;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-tile:hover .collection-tile-bg { transform: scale(1.07); }
.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.collection-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.collection-tile:hover .collection-tile-label {
  color: #ffffff;
}
.blog-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.blog-card-visual {
  aspect-ratio: 16 / 10;
  background-color: var(--panel);
  background-size: cover;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}
.blog-card-body h3 {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.blog-card-body p { margin: 0; font-size: 0.8125rem; color: rgba(15,23,42,0.55); }
.blog-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}
.cart-recommendations {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
/* İletişim sayfası */
.contact-page { max-width: 1100px; }
.contact-hero {
  margin: 18px 0 clamp(28px, 5vw, 48px);
  max-width: 640px;
}
.contact-hero-kicker {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.contact-hero-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  padding: clamp(22px, 3vw, 32px);
}
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:first-child { padding-top: 0; }
.contact-info-row:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-info-ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
}
.contact-info-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-info-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-value {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}
a.contact-info-value { transition: color 0.2s ease; }
a.contact-info-value:hover { color: var(--accent); }
.contact-map {
  margin-top: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  filter: none;
}

.contact-form-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: clamp(24px, 3.4vw, 40px);
}
.contact-form-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 500;
}
.contact-form-sub {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-field--full { grid-column: 1 / -1; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.contact-submit { margin-top: 22px; }
.contact-flash--ok {
  border-left: 3px solid #46c46e;
}
.blog-card-date {
  display: block;
  margin-bottom: 8px;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.blog-head {
  margin-bottom: 8px;
  max-width: 720px;
}
.blog-head .section-kicker { margin-bottom: 10px; }
.blog-head-lead {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(15,23,42,0.6);
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font);
  cursor: pointer;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.grid-prod {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 700px) { .grid-prod { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .grid-prod { grid-template-columns: repeat(4, 1fr); } }
.card .thumb-wrap { position: relative; overflow: hidden; background: var(--panel); }
.card .thumb {
  aspect-ratio: 3 / 4;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .thumb { transform: scale(1.04); }
.card .info { padding: 16px 4px 8px; }
.card h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.prices { display: flex; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.price { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; }
.compare { font-size: 0.75rem; text-decoration: line-through; color: var(--muted); }
.page-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdp {
  display: grid;
  gap: 40px;
  padding-top: 24px;
}
@media (min-width: 960px) {
  .pdp { grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
}
.pdp-related.section {
  margin-top: clamp(36px, 7vw, 80px);
  padding-top: clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--line);
}
.pdp-gallery-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.pdp-gallery-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.42s ease;
  will-change: opacity;
  pointer-events: none;
}
.pdp-gallery-slide.is-active {
  opacity: 1;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .pdp-gallery-slide {
    transition: none;
  }
}
.pdp-gallery .thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pdp-gallery .thumbs button,
.pdp-gallery .thumbs .pdp-thumb {
  width: 68px;
  height: 86px;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  background: var(--panel) center/cover no-repeat;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.pdp-gallery .thumbs button.is-active,
.pdp-gallery .thumbs .pdp-thumb.is-active {
  border-color: var(--accent);
  opacity: 1;
}
.pdp-gallery .thumbs button:not(.is-active),
.pdp-gallery .thumbs .pdp-thumb:not(.is-active) {
  opacity: 0.72;
}
.pdp-gallery .thumbs button:hover,
.pdp-gallery .thumbs .pdp-thumb:hover {
  opacity: 1;
}
.pdp-info h1 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pdp-info .lead { color: rgba(15,23,42,0.62); margin: 0 0 24px; }
.proc-form { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.proc-form input[type="number"] {
  width: 72px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.pdp-stock-line {
  font-size: 0.8125rem;
  margin: 14px 0 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 36em;
}
.proc-form--pdp {
  margin-top: 22px;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 3vw, 26px);
}
.proc-form--pdp .pdp-cart-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}
.proc-form--pdp .pdp-add-btn {
  min-height: 46px;
  padding-left: clamp(22px, 4vw, 32px);
  padding-right: clamp(22px, 4vw, 32px);
}
.pdp-size-picker {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.pdp-size-picker__legend {
  padding: 0;
  margin: 0 0 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}
.pdp-size-picker__legend span {
  display: inline-block;
}
.pdp-size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp-size-chip {
  cursor: pointer;
  margin: 0;
}
.pdp-size-chip--disabled {
  cursor: not-allowed;
}
.pdp-size-chip__face {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .pdp-size-chip:hover:not(.pdp-size-chip--disabled) .pdp-size-chip__face {
    border-color: rgba(15, 23, 42, 0.28);
    background: rgba(15, 23, 42, 0.05);
  }
}
.pdp-size-chip-input:checked + .pdp-size-chip__face {
  border-color: rgba(15, 23, 42, 0.9);
  background: rgba(250, 250, 250, 0.1);
  box-shadow: inset 0 0 0 1px rgba(250, 250, 250, 0.12);
}
.pdp-size-chip-input:focus-visible + .pdp-size-chip__face {
  outline: 2px solid rgba(250, 250, 250, 0.88);
  outline-offset: 3px;
}
.pdp-size-chip--disabled .pdp-size-chip__face {
  opacity: 0.42;
  border-style: dashed;
}
.pdp-size-chip__label {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.pdp-qty-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.data th, table.data td {
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: left;
}
table.data th {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.cart-table {
  min-width: 0;
  width: 100%;
}
@media (min-width: 960px) {
  table.cart-table {
    min-width: 560px;
  }
}
.cart-product-cell {
  vertical-align: middle;
}
.cart-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.cart-product-link:hover .cart-product-name {
  text-decoration: underline;
}
.cart-product-name {
  font-weight: 500;
}
.cart-thumb {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.cart-thumb--empty {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 2px;
}
.cart-remove-form {
  display: none;
}
.cart-table input[type="number"] {
  width: 72px;
  max-width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.cart-qty-cell {
  vertical-align: middle;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
}
.qty-stepper-display {
  min-width: 2rem;
  padding: 0 10px;
  text-align: center;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}
.qty-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1;
  font-family: var(--font);
  cursor: pointer;
}
.qty-btn:hover:not(:disabled) {
  background: var(--line);
}
.qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.qty-btn--down {
  border-right: 1px solid var(--line-strong);
}
.qty-btn--up {
  border-left: 1px solid var(--line-strong);
}
.checkout-form label { display: block; margin-bottom: 16px; font-size: 0.8125rem; }
.checkout-form input, .checkout-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.cart-page-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .cart-page-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
  }
}
.cart-summary-aside {
  border: 1px solid var(--line);
  padding: 20px 22px;
  background: var(--bg);
}
.cart-summary-title {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-summary-line {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.35;
}
.cart-price-unit-cell {
  white-space: nowrap;
}
.cart-line-subtotal-cell {
  font-weight: 500;
}
.cart-update-row {
  margin-top: 16px;
}
@media (max-width: 959px) {
  .cart-page-layout {
    gap: 22px;
    min-width: 0;
  }
  .cart-page-layout .table-scroll {
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
  }
  table.cart-table {
    border: 0;
    display: block;
    width: 100%;
  }
  table.cart-table thead {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
  }
  table.cart-table tbody {
    display: block;
    width: 100%;
  }
  table.cart-table tbody tr {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 14px min(14px, 4vw);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-elev);
  }
  table.cart-table tbody td {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: right;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 0.875rem;
  }
  table.cart-table tbody td:first-child {
    padding-top: 0;
    border-bottom: none;
  }
  table.cart-table tbody td:nth-child(2) {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 14px;
  }
  table.cart-table tbody td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  table.cart-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    margin-right: auto;
    text-align: left;
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 44%;
    line-height: 1.35;
  }
  table.cart-table tbody td[data-label='']::before {
    display: none;
    content: none;
  }
  table.cart-table .cart-product-cell {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  table.cart-table .cart-product-cell::before {
    display: none;
  }
  table.cart-table .cart-product-cell .cart-product-link {
    justify-content: flex-start;
    text-align: left;
  }
  table.cart-table .cart-qty-cell .qty-stepper {
    flex-shrink: 0;
  }
  table.cart-table .cart-actions-cell {
    justify-content: stretch;
    margin-top: 4px;
  }
  table.cart-table .cart-actions-cell .btn {
    width: 100%;
    justify-self: stretch;
    text-align: center;
    box-sizing: border-box;
  }
  .cart-update-row .cart-update-submit {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cart-summary-aside {
    padding: 16px 16px;
  }
  .coupon-inline-row {
    flex-direction: column;
    align-items: stretch;
  }
  .coupon-inline-row input[type='text'] {
    min-width: 0;
    width: 100%;
  }
  .coupon-inline-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.checkout-form--full {
  max-width: 520px;
}
.checkout-section-title {
  margin: 0 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.35fr 1fr; } }
.checkout-coupon-block {
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.coupon-inline-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.coupon-inline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.coupon-inline-row input[type="text"] {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.coupon-remove-form {
  margin-top: 10px;
}
.checkout-remove-coupon {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.checkout-remove-coupon:hover {
  color: var(--text);
}
.checkout-discount {
  color: var(--muted);
  font-size: 0.875rem;
}
.free-ship-label {
  color: var(--muted);
  font-weight: 500;
}
.flash {
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  margin-bottom: 24px;
  background: var(--bg-elev);
}
.flash.flash--err {
  border-color: rgba(200, 90, 90, 0.45);
  color: rgba(255, 225, 225, 0.95);
}
.breadcrumb {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-top: 8px;
}
.empty { color: var(--muted); padding: 48px 0; }
.prose {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(15, 23, 42, 0.88);
}
.prose.prose--deep {
  max-width: 42rem;
  font-size: 0.96875rem;
  line-height: 1.8;
}
.prose > * + * {
  margin-top: 1.12em;
}
.prose > :first-child {
  margin-top: 0;
}
.prose h2,
.prose h3,
.prose h4 {
  margin-top: 1.65em;
  margin-bottom: 0.5em;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(252, 252, 252, 0.96);
}
.prose h2 {
  margin-top: 1.35em;
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  text-transform: uppercase;
}
.prose h3 {
  font-size: clamp(0.975rem, 1.55vw, 1.0825rem);
}
.prose h4 {
  font-size: clamp(0.9375rem, 1.4vw, 1.025rem);
  color: rgba(248, 248, 248, 0.9);
}
.prose hr {
  border: none;
  height: 1px;
  margin: clamp(1.85em, 4vw, 2.65em) 0;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15, 23, 42, 0.25);
}
.prose a:hover {
  filter: brightness(1.06);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.prose figure {
  margin: 1.5em 0 0;
}
.prose figure img {
  display: block;
}
.prose figcaption {
  margin-top: 0.55em;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}
.prose ul,
.prose ol {
  margin: 0.35em 0 0;
  padding-inline-start: 1.35em;
}
.prose li + li {
  margin-top: 0.42em;
}
.prose strong {
  color: rgba(15, 23, 42, 0.93);
}
.prose blockquote {
  margin: 1.35em 0 0;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.78);
}
.prose blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--muted);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8825rem;
  margin: 1.25em 0 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.prose thead {
  background: rgba(15, 23, 42, 0.04);
}
.prose th,
.prose td {
  padding: 10px 12px;
  text-align: start;
  border-bottom: 1px solid var(--line);
}
.prose tbody tr:last-child td {
  border-bottom: none;
}
.prose code,
.prose kbd {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.86em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.prose pre {
  margin: 1.15em 0 0;
  padding: 16px 18px;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
}
.prose pre code {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.82rem;
}

/* CMS sayfası (sayfa.php) — kapak görseli + başlık + gövde */
.cms-page {
  width: 100%;
}
.cms-page-kicker {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}
.cms-page-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.85vw, 1.6875rem);
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.cms-page-head {
  margin-bottom: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cms-page-head::after {
  content: "";
  display: block;
  width: min(140px, 28vw);
  height: 2px;
  margin-top: clamp(18px, 3vw, 26px);
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.75;
}
.cms-page-head .cms-page-title {
  max-width: 28rem;
}
.cms-page-head .cms-page-lead {
  margin-top: 16px;
  max-width: 40rem;
}
.cms-page-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.025em;
  font-weight: 400;
}
.cms-page-hero-overlay .cms-page-kicker {
  color: rgba(15, 23, 42, 0.5);
}
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(32px, 5.5vw, 56px);
  border: 1px solid var(--line-strong);
}
.cms-page-hero-fig {
  margin: 0;
  aspect-ratio: 21 / 9;
  max-height: min(44vh, 440px);
  min-height: 180px;
  background: var(--panel) center/cover;
}
@media (max-width: 700px) {
  .cms-page-hero-fig {
    aspect-ratio: 16 / 10;
    max-height: min(52vh, 320px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .cms-page-hero-fig img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.cms-page-hero-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cms-page-hero:hover .cms-page-hero-fig img {
  transform: scale(1.02);
}
.cms-page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(18px, 4vw, 40px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
.cms-page-title--hero {
  font-size: clamp(1.35rem, 3.75vw, 2.0625rem);
  letter-spacing: 0.07em;
  color: rgba(253, 253, 253, 0.98);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.85),
    0 22px 40px rgba(0, 0, 0, 0.6);
}
.cms-page-body {
  padding-bottom: clamp(8px, 2vw, 16px);
}

@media (prefers-reduced-motion: reduce) {
  .cms-page-hero:hover .cms-page-hero-fig img {
    transform: none;
  }
}
/* ——— Footer (vitrin); body içinde main ile kardeş — tam genişlik ——— */
.site-foot {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: clamp(52px, 9vw, 96px) clamp(22px, 5vw, 48px) clamp(44px, 7vw, 72px);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, transparent 42%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(15, 23, 42, 0.04), transparent 55%),
    var(--bg-elev);
  text-align: center;
}
.foot-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foot-brand {
  width: 100%;
  max-width: 40rem;
  margin-bottom: clamp(36px, 6vw, 52px);
  text-align: center;
}
.foot-title {
  margin: 0 auto;
  max-width: 22rem;
  font-size: clamp(1.0625rem, 2.8vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.94);
  line-height: 1.35;
}
.foot-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.9;
  border-radius: 1px;
}
.foot-tagline {
  margin: 22px auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.55);
  text-align: center;
}
.site-foot .foot-html {
  margin: 22px auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.58);
  text-align: center;
}
.site-foot .foot-html p {
  margin: 0 0 0.75em;
}
.site-foot .foot-html p:last-child {
  margin-bottom: 0;
}
.site-foot .foot-html a {
  color: rgba(15, 23, 42, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(15, 23, 42, 0.22);
}
.site-foot .foot-html a:hover {
  color: var(--text);
  text-decoration-color: rgba(15, 23, 42, 0.3);
}
.foot-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin-top: 24px;
}
.foot-contact-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}
a.foot-contact-link:hover {
  color: rgba(15, 23, 42, 0.85);
  opacity: 1;
}
.foot-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 40px) clamp(48px, 10vw, 100px);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(8px, 2vw, 12px);
}
.foot-columns--solo {
  max-width: 320px;
}

.foot-columns--wide {
  max-width: 960px;
  gap: clamp(28px, 5vw, 44px) clamp(40px, 8vw, 72px);
}
.foot-block {
  flex: 0 1 260px;
  min-width: min(260px, 100%);
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}
.foot-heading {
  margin: 0 auto 18px;
  max-width: 100%;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.28);
  text-align: center;
}
.foot-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.foot-list li {
  width: 100%;
  display: flex;
  justify-content: center;
}
.foot-list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.foot-list a:hover {
  color: rgba(15, 23, 42, 0.95);
  background: rgba(15, 23, 42, 0.05);
  opacity: 1;
}
.foot-meta {
  width: 100%;
  max-width: 40rem;
  margin-top: clamp(40px, 7vw, 56px);
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.foot-copy {
  margin: 0 auto;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.4);
  text-align: center;
}
.foot-copy a {
  color: rgba(15, 23, 42, 0.5);
}
.foot-copy a:hover {
  color: rgba(15, 23, 42, 0.72);
  opacity: 1;
}
.foot-copy-sep {
  opacity: 0.55;
  user-select: none;
}
.foot-copy-name {
  letter-spacing: 0.18em;
}
.category-hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  min-height: clamp(240px, 46vh, 520px);
  background: var(--panel) center/cover no-repeat;
  background-image: var(--cat-hero-bg, none);
}
.category-hero--pattern { background-image: none; background-color: var(--bg); }
.category-hero--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.category-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(22px, 4vw, 44px) clamp(36px, 6vw, 72px);
}
.breadcrumb--hero { margin: 0 0 20px; padding: 0; color: rgba(255,255,255,0.5); }
.category-hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category-hero-desc { margin: 0; max-width: 560px; color: rgba(255,255,255,0.6); }
.subcats-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .subcats-shelf { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .subcats-shelf { grid-template-columns: repeat(4, 1fr); } }
.subcat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 16px;
}
.subcat-card-bg {
  position: absolute;
  inset: 0;
  background: #111 center/cover no-repeat;
  transition: transform 0.55s ease;
}
.subcat-card:hover .subcat-card-bg { transform: scale(1.06); }
.subcat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.subcat-card-label {
  position: relative;
  z-index: 2;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.subcat-card-hint {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
body.page-category .site-main {
  padding-top: 0;
  gap: clamp(28px, 5vw, 56px);
}

/* Müşteri hesabı */
.account-shell {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 800px) {
  .account-shell {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 40px;
  }
}
.account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .account-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
}
.account-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.account-nav a:hover,
.account-nav a.is-active {
  color: var(--text);
}
.account-main { min-width: 0; }
.account-card {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.account-card:last-child { border-bottom: none; }
.account-card-title {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-form label,
.account-auth-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.8125rem;
}
.account-form input,
.account-form textarea,
.account-auth-form input {
  width: 100%;
  max-width: 420px;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.account-auth-form {
  max-width: 440px;
}
.account-table { font-size: 0.8125rem; }
.account-kv {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
}
.account-kv li { margin-bottom: 8px; }
.account-totals {
  margin-top: 16px;
  font-size: 0.875rem;
}
.account-address-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.account-address-card {
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-size: 0.875rem;
  line-height: 1.45;
}
.account-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-address-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account-address-actions .inline-form { display: inline; }
.input-readonly {
  opacity: 0.72;
  cursor: not-allowed;
}

/* Giriş / kayıt — sepet ve ödeme ile uyumlu panel */
body.page-auth .site-main {
  gap: clamp(24px, 4vw, 40px);
}
.auth-page {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.auth-page--register {
  max-width: 480px;
}
.auth-page .breadcrumb {
  margin-bottom: 16px;
  padding-top: 0;
}
.auth-page-kicker {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-page .page-title {
  margin: 0 0 12px;
}
.auth-page-lead {
  margin: 0 0 clamp(22px, 4vw, 32px);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 42em;
}
.auth-panel {
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 32px);
  background: var(--bg-elev);
}
.auth-panel .flash {
  margin-bottom: 20px;
}
.auth-panel .account-auth-form {
  max-width: none;
}
.auth-panel .account-auth-form input {
  max-width: none;
  width: 100%;
}
.btn--block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.auth-submit {
  margin-top: 8px;
}
.auth-footer {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.45;
}
.auth-footer a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-footer a:hover {
  opacity: 1;
  color: var(--accent);
}

/* Ödeme sayfası — içerik ortada */
body.page-checkout .site-main {
  align-items: center;
}
.checkout-page {
  width: min(100%, 560px);
  box-sizing: border-box;
}
.checkout-page .page-title {
  text-align: center;
  width: 100%;
}
.checkout-page .checkout-section-title {
  text-align: center;
}
.checkout-page .checkout-account-intro {
  text-align: center;
}
.checkout-page .checkout-guest-hint {
  text-align: center;
}
.checkout-footnote {
  font-size: 0.85rem;
  margin-top: 20px;
  line-height: 1.45;
  text-align: center;
}
.checkout-page--success {
  text-align: center;
}
.checkout-success-actions {
  margin: 12px 0 0;
}

body.paytr-pay-page .checkout-page,
.checkout-page.paytr-checkout {
  width: min(100%, 640px);
  max-width: 100%;
}
.paytr-intro {
  text-align: center;
}
.paytr-iframe-shell {
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-elev);
  min-height: 200px;
}
.paytr-checkout .page-title {
  text-align: center;
}

.checkout-page .checkout-form--full {
  max-width: none;
}
.checkout-account-gate {
  max-width: 520px;
}
.checkout-page .checkout-account-gate {
  max-width: none;
  width: 100%;
}
.checkout-account-gate .checkout-section-title {
  margin-top: 0;
}
.checkout-account-intro {
  margin: 0 0 22px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.checkout-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkout-account-actions .btn {
  flex: 1 1 160px;
  text-align: center;
}
.checkout-guest-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.checkout-guest-btn {
  margin-bottom: 12px;
}
.checkout-guest-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* --- Light theme refinements (light-commerce) --- */
body.store { color-scheme: light; }
.site-head { box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06); }
.hero-slide--solid .hero-slide-inner,
.hero-slide--solid .hero-slide h2,
.hero-slide--solid .hero-slide p { color: var(--text); }
.hero-slide--solid .hero-season { color: var(--muted); }
.hero-slide--solid .hero-slide p { color: rgba(15, 23, 42, 0.62); }
.btn { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.btn.ghost { color: var(--text); border-color: rgba(15, 23, 42, 0.22); background: transparent; }
.hero-slide .btn.ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.cart-link .badge { box-shadow: 0 0 0 2px var(--bg-elev), 0 2px 8px rgba(15, 23, 42, 0.15); }
.strip-nav { color: var(--text); }
.hero-arrow { color: #fff; }
.cms-page-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(32px, 5.5vw, 56px);
  border: 1px solid var(--line-strong);
}
.category-hero--pattern::before {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(15,23,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.06) 1px, transparent 1px);
}
.contact-map iframe { filter: none; }
.flash.flash--err { border-color: rgba(185, 28, 28, 0.35); color: #991b1b; }

/* --- Award-level storefront experience layer --- */
body.experience-home {
  --atelier-ink: #17120f;
  --atelier-ivory: #fffaf2;
  --atelier-warm: #efe3d2;
  --atelier-metal: #b6a078;
  --atelier-rouge: #7f1d1d;
  --atelier-olive: #4d5a3b;
  --atelier-shadow: 0 24px 70px rgba(23, 18, 15, 0.18);
  background:
    linear-gradient(180deg, #fffaf3 0%, #f8f3ec 36%, #fffdf8 100%);
}
body.experience-home .site-head {
  background: rgba(255, 250, 243, 0.86);
  border-bottom-color: rgba(23, 18, 15, 0.08);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
body.experience-home .site-head.is-scrolled {
  background: rgba(255, 250, 242, 0.94);
  border-bottom-color: rgba(23, 18, 15, 0.13);
  box-shadow: 0 14px 40px rgba(23, 18, 15, 0.08);
}
body.experience-home .site-main {
  gap: clamp(38px, 6.2vw, 82px);
}
body.experience-home .hero-slider {
  color: #fffaf2;
  isolation: isolate;
}
body.experience-home .hero-slider-viewport {
  min-height: min(88vh, 840px);
  background:
    linear-gradient(135deg, #19120f 0%, #4d332a 43%, #11100f 100%);
}
body.experience-home .hero-slide {
  transform: scale(1.012);
}
body.experience-home .hero-slide.is-active {
  transform: scale(1);
}
body.experience-home .hero-slide:not(.hero-slide--solid)::before {
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.76) 0%, rgba(16, 12, 10, 0.34) 47%, rgba(16, 12, 10, 0.18) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.35) 100%);
}
body.experience-home .hero-slide-inner {
  min-height: min(88vh, 840px);
  padding:
    clamp(42px, 7vw, 86px)
    clamp(22px, 7vw, 102px)
    clamp(82px, 10vw, 132px);
}
body.experience-home .h-txt {
  max-width: min(650px, 78vw);
}
body.experience-home .hero-slide h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 8vw, 6.35rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}
body.experience-home .hero-slide p {
  max-width: 460px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.8;
}
body.experience-home .hero-season {
  top: clamp(72px, 10vw, 112px);
  color: rgba(255, 250, 242, 0.74);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
body.experience-home .hero-slide .btn.ghost,
body.experience-home .btn.ghost {
  border-color: rgba(255, 250, 242, 0.42);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.12), rgba(182, 160, 120, 0.16));
  color: #fffaf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
body.experience-home .hero-slide .btn.ghost:hover,
body.experience-home .btn.ghost:hover {
  opacity: 1;
  border-color: rgba(255, 250, 242, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.18), rgba(127, 29, 29, 0.22));
}
.home-atelier-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.82;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 44%, #000 66%, #000 100%);
}
.home-atelier-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-rail {
  position: absolute;
  right: clamp(26px, 5vw, 74px);
  bottom: clamp(32px, 5vw, 64px);
  z-index: 8;
  display: none;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 1px;
  width: min(430px, 38vw);
  border: 1px solid rgba(255, 250, 242, 0.2);
  background: rgba(255, 250, 242, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
@media (min-width: 1024px) {
  .home-hero-rail {
    display: grid;
  }
}
.home-proof-pill {
  min-height: 86px;
  padding: 16px;
  background: rgba(15, 12, 10, 0.38);
  color: #fffaf2;
}
.home-proof-pill strong {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.home-proof-pill span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.experience-home .hero-arrow {
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(15, 12, 10, 0.42);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.experience-home .hero-dots {
  bottom: 38px;
}
body.experience-home .hero-dots button {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.32);
}
body.experience-home .hero-dots button.is-active {
  background: var(--atelier-metal);
  transform: none;
}
.home-curation {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 58px);
  border-top: 1px solid rgba(23, 18, 15, 0.1);
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.86), rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(77, 90, 59, 0.08), transparent 42%, rgba(127, 29, 29, 0.08));
}
.home-curation-copy {
  max-width: 600px;
}
.home-curation-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.15rem, 5.6vw, 5.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--atelier-ink);
  text-wrap: balance;
}
.home-curation-copy p:not(.section-kicker) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(23, 18, 15, 0.62);
  font-size: 0.98rem;
  line-height: 1.8;
}
.home-curation-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--atelier-ink);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.home-curation-link::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 0.24s ease;
}
.home-curation-link:hover {
  opacity: 1;
  color: var(--atelier-rouge);
}
.home-curation-link:hover::after {
  transform: scaleX(1.35);
}
.home-curation-visual {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform 0.22s ease;
}
.home-curation-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ede3d8;
  box-shadow: var(--atelier-shadow);
}
.home-curation-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-curation-frame--main {
  inset: 0 8% 0 14%;
  aspect-ratio: 3 / 4;
}
.home-curation-frame--float {
  right: 0;
  bottom: 8%;
  width: min(38%, 220px);
  aspect-ratio: 4 / 5;
  border: 8px solid #fffaf2;
  transform: translateZ(44px);
}
.home-curation-badge {
  position: absolute;
  left: 2%;
  top: 12%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(82px, 10vw, 118px);
  height: clamp(82px, 10vw, 118px);
  border: 1px solid rgba(23, 18, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.86);
  color: var(--atelier-ink);
  box-shadow: 0 18px 60px rgba(23, 18, 15, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.home-curation-badge span,
.home-curation-badge strong {
  display: block;
  line-height: 1;
}
.home-curation-badge span {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.home-curation-badge strong {
  margin-top: -8px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--atelier-rouge);
}
.home-curation-visual.is-tilting,
.collection-tile.is-tilting,
.card.is-tilting {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
body.experience-home .section {
  position: relative;
}
body.experience-home .section-head {
  border-bottom-color: rgba(23, 18, 15, 0.12);
}
body.experience-home .section-kicker {
  color: #5f6747;
}
body.experience-home .section-head h2 {
  color: var(--atelier-ink);
}
body.experience-home .link-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--atelier-ink);
}
body.experience-home .link-all::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
body.experience-home .collections-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}
body.experience-home .collection-tile {
  min-height: clamp(220px, 26vw, 380px);
  box-shadow: 0 18px 44px rgba(23, 18, 15, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.26s ease;
}
body.experience-home .collection-tile::after {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(135deg, rgba(182, 160, 120, 0.2), transparent 46%);
}
body.experience-home .collection-tile::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 242, 0.22);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
body.experience-home .collection-tile:hover {
  opacity: 1;
  box-shadow: 0 28px 70px rgba(23, 18, 15, 0.18);
}
body.experience-home .collection-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}
body.experience-home .collection-tile-label {
  padding: clamp(18px, 2.4vw, 28px);
  transform: translateZ(34px);
}
body.experience-home .strip-products {
  gap: clamp(14px, 2vw, 24px);
}
body.experience-home .grid-prod {
  gap: clamp(16px, 2.4vw, 28px);
}
body.experience-home .card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.22s ease;
}
body.experience-home .card .main {
  display: block;
}
body.experience-home .card .thumb-wrap {
  border: 1px solid rgba(23, 18, 15, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.86), rgba(232, 222, 209, 0.72));
  box-shadow: 0 20px 48px rgba(23, 18, 15, 0.09);
}
body.experience-home .card .thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 36%, transparent 56%),
    linear-gradient(to top, rgba(23, 18, 15, 0.18), transparent 44%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.34s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
body.experience-home .card:hover .thumb-wrap::after {
  opacity: 1;
  transform: translateX(0);
}
body.experience-home .card:hover {
  opacity: 1;
}
body.experience-home .card .info {
  padding-top: 18px;
}
body.experience-home .card h3 {
  color: var(--atelier-ink);
  line-height: 1.45;
}
body.experience-home .price {
  color: var(--atelier-rouge);
}
body.experience-home .strip-nav {
  border-color: rgba(23, 18, 15, 0.12);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 14px 36px rgba(23, 18, 15, 0.12);
}
body.experience-home.experience-ready [data-motion-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
body.experience-home.experience-ready .hero-slider [data-motion-reveal] {
  transform: translateY(0);
}
body.experience-home .home-curation-frame:hover img,
body.experience-home .card:hover .thumb,
body.experience-home .collection-tile:hover .collection-tile-bg {
  transform: scale(1.055);
}
@media (max-width: 1023px) {
  .home-atelier-scene {
    opacity: 0.46;
    mask-image: linear-gradient(180deg, transparent 0%, #000 44%, transparent 100%);
  }
  body.experience-home .hero-slide h2 {
    max-width: 10ch;
  }
}
@media (max-width: 760px) {
  body.experience-home .hero-slider-viewport,
  body.experience-home .hero-slide-inner {
    min-height: min(78vh, 680px);
  }
  body.experience-home .hero-slide-inner {
    padding: 100px 20px 76px;
  }
  body.experience-home .hero-season {
    top: 24px;
    left: 20px;
    max-width: calc(100vw - 40px);
    letter-spacing: 0.22em;
  }
  body.experience-home .h-txt {
    max-width: 94vw;
  }
  body.experience-home .hero-slide h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 14vw, 4.4rem);
  }
  body.experience-home .hero-slide p {
    max-width: 88vw;
  }
  .home-curation {
    padding: 34px 18px 44px;
  }
  .home-curation-copy h2 {
    max-width: 12ch;
  }
  .home-curation-visual {
    min-height: 430px;
  }
  .home-curation-frame--main {
    inset: 0 5% 0 0;
  }
  .home-curation-frame--float {
    width: 42%;
    right: 0;
    bottom: 5%;
    border-width: 6px;
  }
  .home-curation-badge {
    left: auto;
    right: 6%;
    top: 8%;
  }
  body.experience-home .collections-grid {
    gap: 8px;
  }
  body.experience-home .collection-tile {
    min-height: 210px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.experience-home .hero-slide,
  body.experience-home .card,
  body.experience-home .collection-tile,
  body.experience-home .home-curation-visual,
  body.experience-home .home-curation-frame img,
  body.experience-home .card .thumb,
  body.experience-home .collection-tile-bg {
    transition: none;
    transform: none !important;
  }
  body.experience-home [data-motion-reveal] {
    opacity: 1;
    transform: none;
  }
  .home-atelier-scene {
    display: none;
  }
}
