:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --surface: #111111;
  --border: #2a2a2a;
  --text: #fafafa;
  --muted: #9ca3af;
  --accent: #ffffff;
  --danger: #ef4444;
  --radius: 10px;
  --container: min(1200px, calc(100% - 32px));
  --container-pad: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --store-promo-bg: #ffffff;
  --store-promo-fg: #0a0a0a;
  --btn-bg: var(--text);
  --btn-fg: var(--bg);
  --btn-ghost-fg: var(--text);
  --btn-ghost-border: rgba(255, 255, 255, 0.35);
  --hero-overlay: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85));
  --footer-bg: #050505;
  --card-media-bg: #0a0a0a;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.has-store-splash {
  overflow: hidden;
}

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

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

a:hover {
  opacity: 0.85;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 0.75rem;
  top: 0.75rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 200;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-180%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.store-promo-bar {
  background: var(--store-promo-bg);
  color: var(--store-promo-fg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--store-promo-fg) 12%, var(--store-promo-bg));
}
.store-promo-inner {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  min-height: 1.35em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-promo-inner.promo-font-inter {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.promo-font-montserrat {
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.promo-font-poppins {
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.promo-font-dm_sans {
  font-family: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.promo-font-space_grotesk {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.promo-font-oswald {
  font-family: "Oswald", "Arial Narrow", sans-serif;
}
.store-promo-inner.promo-font-raleway {
  font-family: "Raleway", "Inter", system-ui, -apple-system, sans-serif;
}
.store-promo-inner.is-rotating .store-promo-item {
  position: absolute;
  inset: auto 0;
  opacity: 0;
  transform: translateY(35%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  white-space: inherit;
}
.store-promo-inner.is-rotating .store-promo-item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.store-promo-inner.is-rotating.promo-anim-fade .store-promo-item {
  transform: none;
}
.store-promo-inner.is-rotating.promo-anim-slide_left .store-promo-item {
  transform: translateX(16px);
}
.store-promo-inner.is-rotating.promo-anim-slide_left .store-promo-item.is-active {
  transform: translateX(0);
}
.store-promo-inner.is-rotating.promo-anim-zoom .store-promo-item {
  transform: scale(0.94);
}
.store-promo-inner.is-rotating.promo-anim-zoom .store-promo-item.is-active {
  transform: scale(1);
}
.store-promo-inner.is-rotating.promo-anim-none .store-promo-item {
  transition: none;
  transform: none;
}
.store-promo-inner:not(.is-rotating) .store-promo-item {
  position: static;
  opacity: 1;
  transform: none;
}
@media (max-width: 520px) {
  .store-promo-inner {
    white-space: normal;
    line-height: 1.35;
    font-size: 0.66rem;
    min-height: 2.7em;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 125;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.header-top-note {
  border-bottom: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}
.header-top-note-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.66rem;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.25rem;
}
@media (max-width: 560px) {
  .header-top-note-inner {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    min-height: 24px;
  }
}

/* Yönetim → Mağaza teması: özel üst menü renkleri (--hm-bg / --hm-text) */
.site-header.site-header--menu-custom {
  background: var(--hm-bg) !important;
  backdrop-filter: none;
  border-bottom-color: color-mix(in srgb, var(--hm-text) 18%, var(--hm-bg));
}
.site-header.site-header--menu-custom .brand-lockup {
  color: var(--hm-text);
}
.site-header.site-header--menu-custom .primary-nav a,
.site-header.site-header--menu-custom .header-cart-link {
  color: var(--hm-text);
}
.site-header.site-header--menu-custom .cart-ico,
.site-header.site-header--menu-custom .cart-ico::after {
  border-color: var(--hm-text);
}
.site-header.site-header--menu-custom .nav-toggle span {
  background: var(--hm-text);
}
.site-header.site-header--menu-custom .nav-toggle {
  border-color: color-mix(in srgb, var(--hm-text) 28%, var(--hm-bg));
}
.site-header.site-header--menu-custom .brand-text {
  color: var(--hm-text);
}
.site-header.site-header--menu-custom .header-actions .btn-icon {
  background: transparent;
  border-color: color-mix(in srgb, var(--hm-text) 30%, var(--hm-bg));
}
.site-header.site-header--menu-custom .search-ico {
  border-color: var(--hm-text);
}
.site-header.site-header--menu-custom .search-ico::after {
  background: var(--hm-text);
}

.site-header .brand-lockup:hover,
.site-header .brand-lockup:focus-visible {
  opacity: 1;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: 68px;
}

.brand-logo {
  height: calc(40px * var(--header-brand-logo-scale, 1));
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.primary-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  padding: 0.25rem 0.15rem;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a:focus-visible {
  transform: none;
  opacity: 0.84;
  border-bottom-color: color-mix(in srgb, currentColor 45%, transparent);
}

.category-dock {
  position: relative;
  z-index: 120;
  background: var(--catdock-bg, #0f0f11);
  color: var(--catdock-text, #f5f5f5);
  border-bottom: 1px solid color-mix(in srgb, var(--catdock-text, #f5f5f5) 20%, transparent);
  overflow: visible;
  isolation: isolate;
}
.category-dock-inner {
  overflow: visible;
}
.category-dock-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  overflow: visible;
  scrollbar-width: none;
  padding: 0.2rem 0;
}
.category-dock-track[data-slide-sec] {
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: auto;
}
@media (min-width: 901px) {
  .category-dock-track[data-slide-sec] {
    flex-wrap: nowrap;
  }
  .category-dock-track[data-slide-sec]::-webkit-scrollbar {
    display: none;
  }
}
.category-dock-item {
  position: relative;
  flex: 0 0 auto;
}
.category-dock-item:hover,
.category-dock-item:focus-within {
  z-index: 65;
}
.category-dock-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.22rem;
  top: 50%;
  width: 1px;
  height: 16px;
  background: color-mix(in srgb, currentColor 52%, transparent);
  transform: translateY(-50%) rotate(30deg);
  opacity: 0.8;
  pointer-events: none;
}
.category-dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  min-width: 132px;
  padding: 0.16rem 1rem;
  text-decoration: none;
  color: inherit;
  border: 0;
  border-radius: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.category-dock-item:hover .category-dock-link,
.category-dock-item:focus-within .category-dock-link {
  opacity: 0.92;
}
.category-dock--theme-alternating .category-dock-item:nth-child(odd) .category-dock-link {
  background: var(--catdock-alt-a, #ffffff);
  color: var(--catdock-alt-text-a, #111111);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
  margin-right: -6px;
}
.category-dock--theme-alternating .category-dock-item:nth-child(even) .category-dock-link {
  background: var(--catdock-alt-b, #111111);
  color: var(--catdock-alt-text-b, #ffffff);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  margin-right: -6px;
}
.category-dock--theme-dark .category-dock-link {
  background: color-mix(in srgb, var(--catdock-bg, #0f0f11) 90%, #000);
}
.category-dock--theme-light .category-dock-link {
  background: color-mix(in srgb, var(--catdock-bg, #f7f7f7) 88%, #fff);
}
.category-dock-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  min-width: 340px;
  max-width: min(560px, 70vw);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 150;
}
.category-dock-item:hover .category-dock-dropdown,
.category-dock-item:focus-within .category-dock-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.category-dock-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.category-dock-product {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem;
  min-width: 0;
}
.category-dock-product-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2, #17181c);
  border: 1px solid var(--border);
  flex: 0 0 auto;
}
.category-dock-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-dock-product-img--fallback {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--muted);
}
.category-dock-product-name {
  font-size: 0.73rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-header .header-cart-link {
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.site-header .header-cart-link:hover,
.site-header .header-cart-link:focus-visible {
  transform: scale(1.08);
  opacity: 1;
}

.nav-item-dropdown,
.header-cart-wrap--dropdown {
  position: relative;
}
.nav-dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.35em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  opacity: 0.65;
  vertical-align: middle;
}
.nav-dropdown-toggle-icon {
  display: block;
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.1em) rotate(45deg);
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nav-item-dropdown--products .nav-dropdown-row {
  display: contents;
}
.nav-item-dropdown--products .nav-dropdown-toggle {
  display: none;
}
.header-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  min-width: 220px;
  max-width: min(380px, 92vw);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  padding: 0.65rem 0.75rem 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 200;
}
/* Ürünler açılır menü — kategori şeridi + ürün kartları */
.nav-categories-dropdown.nav-mega-dropdown.nav-mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  max-width: min(96vw, 52rem);
  min-width: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.nav-mega-menu__scroll {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 0;
  max-width: min(96vw, 52rem);
  padding: 0.65rem 0.5rem 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.nav-mega-menu__cat {
  flex: 0 0 7.75rem;
  width: 7.75rem;
  min-width: 7.75rem;
  max-width: 7.75rem;
  padding: 0 0.45rem;
  border-right: 1px solid var(--border);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.nav-mega-menu__cat:last-child {
  border-right: 0;
}
.nav-mega-menu__cat-title {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-mega-menu__cat-title-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  max-width: 100%;
}
.nav-mega-menu__cat-title-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-mega-menu__cat-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nav-mega-menu__cat-media--img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 80%, var(--text) 20%);
}
.nav-mega-menu__cat-media--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-mega-menu__cat-media--icon {
  font-size: 0.95rem;
  line-height: 1;
}
.nav-mega-menu__cat-title:hover,
.nav-mega-menu__cat-title:focus-visible {
  opacity: 1;
}
.nav-mega-menu__cards {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nav-mega-menu--hide-products .nav-mega-menu__cat {
  gap: 0.2rem;
}
.nav-mega-menu--hide-products .nav-mega-menu__cat-title {
  border-bottom: 0;
  padding-bottom: 0.1rem;
}
.nav-mega-menu--layout-list {
  max-width: min(96vw, 24rem);
}
.nav-mega-menu--layout-list .nav-mega-menu__scroll {
  flex-flow: column nowrap;
  align-items: stretch;
  max-width: min(96vw, 24rem);
  max-height: min(72vh, 28rem);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.35rem 0.45rem;
}
.nav-mega-menu--layout-list .nav-mega-menu__cat {
  flex: none;
  width: 100%;
  min-width: 0;
  max-width: none;
  border-right: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}
.nav-mega-menu--layout-list .nav-mega-menu__cat:last-child {
  border-bottom: 0;
}
.nav-mega-menu--layout-list .nav-mega-menu__cat-title {
  font-size: 0.72rem;
  line-height: 1.35;
  border-bottom: 0;
  padding: 0.35rem 0.2rem;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.nav-mega-menu--layout-list .nav-mega-menu__cards {
  display: none;
}
.nav-mega-menu__empty {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.3;
}
.nav-mega-menu__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 98%, var(--text) 2%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nav-mega-menu__card:hover,
.nav-mega-menu__card:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--text) 25%, var(--border));
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.nav-mega-menu__card-media {
  display: block;
  width: 100%;
  height: 4.25rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--text) 6%, var(--surface));
  flex-shrink: 0;
}
.nav-mega-menu__card-media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
}
.nav-mega-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0.4rem 0.42rem;
  min-width: 0;
}
.nav-mega-menu__card-name {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-mega-menu__card-price {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nav-mega-menu__foot {
  padding: 0.45rem 0.65rem 0.55rem;
  border-top: 1px solid var(--border);
  text-align: center;
  background: color-mix(in srgb, var(--surface) 94%, var(--text) 6%);
}
.nav-mega-menu__all {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.nav-mega-menu__all:hover,
.nav-mega-menu__all:focus-visible {
  opacity: 1;
  color: var(--text);
}
.primary-nav .nav-mega-menu a.nav-mega-menu__card {
  display: flex;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 0;
}
.primary-nav .nav-mega-menu a.nav-mega-menu__card:hover,
.primary-nav .nav-mega-menu a.nav-mega-menu__card:focus-visible {
  border-bottom-color: transparent;
}
.primary-nav .nav-mega-menu a.nav-mega-menu__all {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-cart-dropdown {
  right: 0;
  width: min(360px, 92vw);
  padding: 0.75rem;
}
.header-dropdown-head {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.45rem;
}
.header-dropdown-empty {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
}
.header-dropdown-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}
.header-cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(48vh, 280px);
  overflow: auto;
}
.header-cart-line {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.header-cart-line:last-child {
  border-bottom: 0;
}
.header-cart-line-thumb {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2, #17181c);
}
.header-cart-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-cart-line-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}
.header-cart-line-meta {
  font-size: 0.72rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.24rem;
}
.header-cart-line-total {
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-cart-line-meta .price-old,
.header-cart-line-total .price-old {
  margin-right: 0;
  font-size: 0.68rem;
  opacity: 0.85;
}
.header-dropdown-more {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
}
.header-dropdown-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.65rem 0 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}
.header-cart-subtotal-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.header-cart-subtotal {
  font-size: 0.95rem;
}
@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
  .nav-item-dropdown:hover .header-dropdown,
  .nav-item-dropdown:focus-within .header-dropdown,
  .header-cart-wrap--dropdown:hover .header-cart-dropdown,
  .header-cart-wrap--dropdown:focus-within .header-cart-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-item-dropdown:hover .header-dropdown:not(.nav-mega-dropdown),
  .nav-item-dropdown:focus-within .header-dropdown:not(.nav-mega-dropdown),
  .header-cart-wrap--dropdown:hover .header-cart-dropdown,
  .header-cart-wrap--dropdown:focus-within .header-cart-dropdown {
    transform: translateY(0);
  }
  .nav-item-dropdown:hover .nav-mega-dropdown,
  .nav-item-dropdown:focus-within .nav-mega-dropdown {
    transform: translateX(-50%) translateY(0);
  }
}
.nav-item-dropdown.is-open .header-dropdown,
.header-cart-wrap--dropdown.is-open .header-cart-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item-dropdown.is-open .header-dropdown:not(.nav-mega-dropdown),
.header-cart-wrap--dropdown.is-open .header-cart-dropdown {
  transform: translateY(0);
}
.nav-item-dropdown.is-open .nav-mega-dropdown {
  transform: translateX(-50%) translateY(0);
}
.header-inner {
  overflow: visible;
}
@media (max-width: 900px) {
  .site-header {
    z-index: 9100;
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }
  body,
  #main,
  .site-header,
  .header-inner,
  .category-dock,
  .category-dock-inner,
  .hero,
  .section {
    max-width: 100vw;
    overflow-x: clip;
  }
  body.store-nav-open {
    overflow: hidden;
    overflow-x: hidden;
    max-width: 100vw;
  }
  /* Sorun yalnız anasayfada (kategori dock) tetiklendiği için menü açıkken dock gizlenir */
  body.store-nav-open .category-dock {
    display: none !important;
  }
  body.store-nav-open main,
  body.store-nav-open .category-dock,
  body.store-nav-open .category-dock-track {
    max-width: 100vw;
    overflow-x: hidden;
  }
  body.store-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 118;
    background: rgba(0, 0, 0, 0.52);
    pointer-events: none;
  }
  body.store-nav-open .site-header {
    z-index: 124;
  }
  body.store-nav-open .nav-toggle {
    position: relative;
    z-index: 9001;
  }
  .primary-nav .header-dropdown {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    transform: none !important;
    padding: 0.5rem 0 0.75rem;
    border: 0;
    border-radius: 0;
    background: color-mix(in srgb, var(--surface) 92%, var(--text) 8%);
  }
  .primary-nav .nav-item-dropdown:not(.is-open) .header-dropdown {
    display: none;
  }
  .primary-nav .nav-item-dropdown.is-open .header-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .primary-nav .nav-item-dropdown {
    width: 100%;
  }
  .primary-nav .nav-item-dropdown--products .nav-dropdown-row {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  .primary-nav .nav-item-dropdown--products .nav-dropdown-link {
    flex: 1;
    min-width: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 0.15rem;
    box-sizing: border-box;
    text-decoration: none;
  }
  .primary-nav .nav-item-dropdown--products .nav-dropdown-link::after {
    display: none;
  }
  .primary-nav .nav-item-dropdown--products .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.1rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .primary-nav .nav-item-dropdown--products.is-open .nav-dropdown-toggle-icon {
    transform: translateY(0.1em) rotate(-135deg);
  }
  .primary-nav .nav-dropdown-trigger:not(.nav-dropdown-link) {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 0.15rem;
    box-sizing: border-box;
  }
  .primary-nav .nav-dropdown-trigger:not(.nav-dropdown-link)::after {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .primary-nav .nav-item-dropdown.is-open .nav-dropdown-trigger:not(.nav-dropdown-link)::after {
    transform: translateY(0.1em) rotate(-135deg);
  }
  .primary-nav .nav-mega-dropdown.nav-mega-menu {
    left: auto;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: none;
    overflow: visible;
  }
  .nav-mega-menu__scroll {
    flex-flow: column nowrap;
    align-items: stretch;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    padding: 0.35rem 0.15rem 0.5rem;
  }
  .nav-mega-menu__cat {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0.65rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mega-menu__cat:last-child {
    border-bottom: 0;
  }
  .nav-mega-menu__cat-title {
    font-size: 0.72rem;
    white-space: normal;
    text-overflow: unset;
    overflow: visible;
  }
  .nav-mega-menu__cat-media--img {
    width: 18px;
    height: 18px;
  }
  .nav-mega-menu__cat-media--icon {
    font-size: 0.9rem;
  }
  .nav-mega-menu__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }
  .nav-mega-menu__card-media {
    height: 4.5rem;
  }
  .nav-mega-menu__card-name {
    font-size: 0.68rem;
  }
  .nav-mega-menu__foot {
    padding: 0.55rem 0.35rem 0.65rem;
  }
  /* Mobilde sepet ikonu dogrudan sepet sayfasina gider, dropdown tamamen kapali kalir. */
  .header-cart-wrap--dropdown .header-cart-dropdown,
  .header-cart-wrap--dropdown.is-open .header-cart-dropdown,
  .header-cart-wrap--dropdown:not(.is-open) .header-cart-dropdown {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }
  .header-inner .header-search {
    position: static;
  }
  .header-inner .header-search-panel {
    position: fixed !important;
    left: 0.6rem !important;
    right: 0.6rem !important;
    top: calc(var(--store-mobile-nav-top, 4.5rem) + 0.4rem) !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(78dvh, 560px);
    overflow: auto;
    z-index: 9102;
    transform: none;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
  .header-inner .header-search-form {
    grid-template-columns: 1fr;
  }
  .header-inner .header-search-form .btn {
    width: 100%;
  }
  .header-inner .header-search-tags {
    max-height: 30vh;
    overflow: auto;
  }
  .header-search-panel[hidden] {
    display: none !important;
  }
}

.site-header .nav-toggle:hover,
.site-header .nav-toggle:focus-visible {
  transform: scale(1.05);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.header-search {
  position: relative;
}
.search-ico {
  width: 16px;
  height: 16px;
  border: 2px solid var(--text);
  border-radius: 999px;
  position: relative;
  display: inline-block;
}
.search-ico::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  right: -4px;
  bottom: -2px;
  transform: rotate(45deg);
}
.header-search-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(420px, calc(100vw - 24px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  z-index: 65;
}
.header-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
}
.header-search-form input[type="search"] {
  margin: 0;
}
.header-search-form .btn {
  padding: 0.65rem 0.95rem;
  border-radius: 10px;
}
.header-search-suggest {
  margin-top: 0.65rem;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}
.header-search-title {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.header-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.header-search-tag {
  font-size: 0.66rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 999px;
  padding: 0.3rem 0.56rem;
  line-height: 1.2;
}
.header-search-tag.is-cat {
  border-style: dashed;
}

.cart-ico {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text);
  border-radius: 4px 4px 6px 6px;
  position: relative;
}
.cart-ico::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 2px;
  right: 2px;
  height: 4px;
  border: 2px solid var(--text);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .category-dock {
    display: block;
    position: sticky;
    top: 62px;
    z-index: 44;
  }
  .category-dock-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.14rem 0 0.2rem;
    gap: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .category-dock-track[data-slide-sec] {
    -webkit-overflow-scrolling: auto;
  }
  .category-dock-item {
    flex: 0 0 auto;
  }
  .category-dock-link {
    min-height: 20px;
    min-width: 118px;
    padding: 0.14rem 0.72rem;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }
  .category-dock-dropdown {
    display: none;
  }
  .header-inner {
    min-height: 62px;
    gap: 0.45rem 0.6rem;
    display: grid;
    grid-template-columns: auto minmax(0, max-content) auto;
    align-items: center;
  }
  .header-inner .nav-toggle {
    order: 1;
    justify-self: start;
  }
  .header-inner .brand-lockup {
    order: 2;
    justify-self: center;
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 128px);
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.14rem;
  }
  .header-inner .header-actions {
    order: 3;
    justify-self: end;
    margin-left: 0;
    min-width: 0;
  }
  .header-actions {
    gap: 0.38rem;
  }
  .header-actions .btn-icon {
    width: 35px;
    height: 35px;
  }
  .header-actions .search-ico {
    width: 14px;
    height: 14px;
  }
  .header-actions .search-ico::after {
    width: 6px;
  }
  .header-actions .cart-ico {
    width: 16px;
    height: 16px;
  }
  .header-actions .cart-ico::after {
    top: -5px;
    left: 2px;
    right: 2px;
    height: 3px;
  }
  .header-search-panel {
    right: -4px;
    width: min(92vw, 360px);
  }
  .header-inner .primary-nav {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
  }
  .nav-toggle {
    display: flex;
    padding: 7px 9px;
  }
  .brand-logo {
    height: calc(24px * var(--header-brand-logo-scale, 1));
  }
  .brand-text {
    font-size: clamp(0.68rem, calc(2.5vw * var(--header-brand-text-scale, 1)), calc(0.84rem * var(--header-brand-text-scale, 1)));
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(44vw, 190px);
  }
  .brand-text-image {
    max-height: calc(30px * var(--header-brand-image-scale, 1));
    max-width: min(calc(220px * var(--header-brand-image-scale, 1)), 62vw);
  }
  .primary-nav {
    display: none;
    position: fixed;
    top: var(--store-mobile-nav-top, 62px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    width: auto;
    max-width: none;
    background: var(--bg-elevated);
    color: var(--text);
    border-bottom: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: visible;
    opacity: 1;
  }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
  }
  .primary-nav.is-open > ul {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    margin: 0;
    padding: 0.85rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    box-sizing: border-box;
    list-style: none;
    visibility: visible;
    opacity: 1;
    overflow-x: hidden;
  }
  .primary-nav.is-open > ul > li {
    display: block;
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid var(--border);
    visibility: visible;
    opacity: 1;
  }
  .primary-nav.is-open > ul > li:last-child {
    border-bottom: 0;
  }
  .primary-nav.is-open a,
  .primary-nav.is-open .nav-dropdown-trigger,
  .primary-nav.is-open .nav-dropdown-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 0.85rem 0.15rem;
    box-sizing: border-box;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text);
    opacity: 1;
    visibility: visible;
  }
  .primary-nav.is-open .nav-item-dropdown--products .nav-dropdown-link {
    width: auto;
    flex: 1;
  }
  .primary-nav.is-open .nav-item-dropdown--products .nav-dropdown-toggle {
    width: 3.1rem;
    padding: 0;
  }
  .primary-nav.is-open > ul > li > a:not(.nav-dropdown-trigger):not(.nav-dropdown-link) {
    display: flex;
  }
  body.store-header-menu-custom .primary-nav.is-open,
  .site-header.site-header--menu-custom .primary-nav.is-open {
    background: var(--hm-bg);
    color: var(--hm-text);
  }
  body.store-header-menu-custom .primary-nav.is-open > ul > li > a:not([style]),
  body.store-header-menu-custom .primary-nav.is-open .nav-dropdown-trigger:not([style]),
  body.store-header-menu-custom .primary-nav.is-open .nav-dropdown-link:not([style]),
  .site-header.site-header--menu-custom .primary-nav.is-open > ul > li > a:not([style]),
  .site-header.site-header--menu-custom .primary-nav.is-open .nav-dropdown-trigger:not([style]),
  .site-header.site-header--menu-custom .primary-nav.is-open .nav-dropdown-link:not([style]) {
    color: var(--hm-text);
  }
  body.store-header-menu-custom .primary-nav .nav-item-dropdown--products .nav-dropdown-toggle,
  .site-header.site-header--menu-custom .primary-nav .nav-item-dropdown--products .nav-dropdown-toggle {
    border-left-color: color-mix(in srgb, var(--hm-text) 12%, var(--hm-bg));
    color: var(--hm-text);
  }
  body.store-header-menu-custom .primary-nav.is-open > ul > li,
  .site-header.site-header--menu-custom .primary-nav.is-open > ul > li {
    border-bottom-color: color-mix(in srgb, var(--hm-text) 12%, var(--hm-bg));
  }
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-toggle span {
    transition: transform 0.2s ease, opacity 0.15s ease;
  }
}
@media (max-width: 430px) {
  .category-dock {
    top: 56px;
  }
  .category-dock-link {
    min-height: 18px;
    min-width: 108px;
    padding: 0.1rem 0.56rem;
    font-size: 0.52rem;
  }
  .header-inner .brand-lockup {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.1rem;
    max-width: calc(100vw - 108px);
  }
  .brand-text {
    text-align: left;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
    letter-spacing: 0.08em;
    font-size: clamp(0.64rem, calc(2.2vw * var(--header-brand-text-scale, 1)), calc(0.78rem * var(--header-brand-text-scale, 1)));
  }
  .brand-logo {
    height: calc(20px * var(--header-brand-logo-scale, 1));
  }
  .brand-text-image {
    max-height: calc(24px * var(--header-brand-image-scale, 1));
    max-width: min(calc(140px * var(--header-brand-image-scale, 1)), 36vw);
  }
  .header-actions {
    gap: 0.3rem;
  }
  .header-actions .btn-icon {
    width: 31px;
    height: 31px;
  }
  .header-actions .search-ico {
    width: 12px;
    height: 12px;
  }
  .header-actions .cart-ico {
    width: 14px;
    height: 14px;
  }
  .nav-toggle {
    padding: 6px 8px;
  }
  .nav-toggle span {
    width: 18px;
  }
  .brand-text {
    max-width: calc(100% - calc(34px * var(--header-brand-logo-scale, 1)));
  }
  .brand-text-image {
    max-width: calc(100% - calc(34px * var(--header-brand-logo-scale, 1)));
  }
  .header-search-panel {
    right: -8px;
    width: min(94vw, 340px);
    padding: 0.65rem;
  }
  .header-search-form {
    grid-template-columns: 1fr;
  }
  .header-search-form .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .category-dock-link {
    min-height: 17px;
    min-width: 96px;
    padding: 0.07rem 0.45rem;
    font-size: 0.48rem;
  }
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.3rem 0.4rem;
    min-height: 56px;
  }
  .header-inner .brand-lockup {
    justify-content: flex-start;
    gap: 0.08rem;
    max-width: calc(100vw - 118px);
  }
  .brand-logo {
    height: calc(18px * var(--header-brand-logo-scale, 1));
  }
  .brand-text {
    max-width: min(34vw, 118px);
    font-size: clamp(0.56rem, calc(1.6vw * var(--header-brand-text-scale, 1)), calc(0.68rem * var(--header-brand-text-scale, 1)));
    letter-spacing: 0.05em;
  }
  .brand-text-image {
    max-height: calc(18px * var(--header-brand-image-scale, 1));
    max-width: min(calc(100px * var(--header-brand-image-scale, 1)), 26vw);
  }
  .header-actions {
    gap: 0.24rem;
  }
  .header-actions .btn-icon {
    width: 28px;
    height: 28px;
  }
  .nav-toggle {
    padding: 5px 6px;
  }
  .nav-toggle span {
    width: 16px;
  }
}

@media (min-width: 901px) {
  body > .primary-nav,
  .header-inner .primary-nav {
    display: flex !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: row !important;
  }
  body > .primary-nav > ul,
  .header-inner .primary-nav > ul {
    display: flex !important;
    flex-direction: row !important;
    flex: none !important;
    padding: 0 !important;
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem 1.55rem;
    min-height: 72px;
  }
  .header-inner .brand-lockup {
    order: initial;
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    max-width: none;
    margin-left: -1rem;
  }
  .header-inner .primary-nav {
    order: initial;
    grid-column: 2;
    min-width: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    z-index: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    border-bottom: 0 !important;
    transform: none !important;
  }
  .site-header--brand-visual .header-inner .primary-nav {
    padding-left: clamp(1.1rem, 2.2vw, 2.4rem);
  }
  .site-header:not(.site-header--brand-visual) .header-inner .primary-nav {
    padding-left: clamp(0.25rem, 0.9vw, 0.8rem);
  }
  .header-inner .primary-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.1rem 1.65rem;
  }
  .header-inner .header-actions {
    order: initial;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
  .header-inner .nav-toggle {
    order: 99;
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: min(calc(var(--hero-desktop-vh, 78) * 1vh), calc(var(--hero-desktop-max-px, 720) * 1px));
  display: grid;
  align-items: end;
  padding: 4rem 0 2.6rem;
  overflow: hidden;
  --hero-mobile-min-vh: 52;
  --hero-mobile-max-px: 640;
  --hero-desktop-vh: 78;
  --hero-desktop-max-px: 720;
  --hero-content-bottom-gap: clamp(14px, 2.6vw, 30px);
}
@media (max-width: 768px) {
  .hero {
    min-height: min(calc(var(--hero-mobile-min-vh, 52) * 1vh), calc(var(--hero-mobile-max-px, 640) * 1px));
    --hero-content-bottom-gap: 10px;
  }
  /* Anasayfada yatay tasma kaynakli beyaz bosluk/zoom sorununu engelle */
  body {
    overflow-x: hidden;
  }
  .hero,
  .hero-media,
  .hero-content {
    max-width: 100vw;
    overflow-x: clip;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
}
body.hero-overlay-off .hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding-bottom: var(--hero-content-bottom-gap);
}

.hero-kicker {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero p {
  max-width: 520px;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
[data-hero-buttons][hidden],
[data-hero-btn-primary][hidden],
[data-hero-btn-secondary][hidden] {
  display: none !important;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  --hero-btn-bg: #0f1119;
  --hero-btn-fg: #ffffff;
  --hero-btn-border: rgba(255, 255, 255, 0.18);
  --hero-btn-hover-bg: #171a24;
  --hero-btn-hover-fg: #ffffff;
  --hero-btn-hover-border: rgba(255, 255, 255, 0.3);
  --hero-btn-shadow: none;
  --hero-btn-hover-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  --hero-btn-radius: 999px;
  --hero-btn-transform: translateY(-2px);
}
.hero-buttons-align-left {
  justify-content: flex-start;
}
.hero-buttons-align-center {
  justify-content: center;
}
.hero-buttons-align-right {
  justify-content: flex-end;
}
.hero-buttons .btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-radius: var(--hero-btn-radius);
  border-color: var(--hero-btn-border);
  color: var(--hero-btn-fg);
  background: var(--hero-btn-bg);
  box-shadow: var(--hero-btn-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}
.hero-buttons .btn:link,
.hero-buttons .btn:visited {
  color: var(--hero-btn-fg);
}
.hero-buttons .btn:hover,
.hero-buttons .btn:focus-visible {
  color: var(--hero-btn-hover-fg);
  background: var(--hero-btn-hover-bg);
  border-color: var(--hero-btn-hover-border);
  box-shadow: var(--hero-btn-hover-shadow);
  transform: var(--hero-btn-transform);
  opacity: 1;
}
.hero-buttons .btn-ghost {
  background: transparent;
}
.hero-buttons .btn-ghost:hover,
.hero-buttons .btn-ghost:focus-visible {
  background: var(--hero-btn-hover-bg);
}
@media (max-width: 768px) {
  .hero-buttons {
    gap: 0.5rem;
  }
  .hero-buttons .btn {
    padding: 0.62rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    max-width: calc(100vw - 40px);
    white-space: normal;
    text-align: center;
  }
}

.hero-buttons-style-1 {
  --hero-btn-bg: #0f1119;
  --hero-btn-fg: #ffffff;
  --hero-btn-border: rgba(255, 255, 255, 0.28);
  --hero-btn-hover-bg: #1a2030;
  --hero-btn-hover-border: rgba(163, 194, 255, 0.72);
  --hero-btn-hover-shadow: 0 14px 28px rgba(8, 12, 26, 0.45);
}
.hero-buttons-style-2 {
  --hero-btn-bg: linear-gradient(135deg, #7f2aff, #ec38bc);
  --hero-btn-fg: #ffffff;
  --hero-btn-border: rgba(255, 255, 255, 0.25);
  --hero-btn-hover-bg: linear-gradient(135deg, #9b49ff, #ff59cc);
  --hero-btn-hover-border: rgba(255, 255, 255, 0.55);
  --hero-btn-hover-shadow: 0 16px 30px rgba(131, 42, 255, 0.36);
  --hero-btn-transform: translateY(-3px) scale(1.02);
}
.hero-buttons-style-3 {
  --hero-btn-bg: rgba(26, 136, 255, 0.2);
  --hero-btn-fg: #eaf4ff;
  --hero-btn-border: rgba(140, 206, 255, 0.6);
  --hero-btn-hover-bg: rgba(26, 136, 255, 0.35);
  --hero-btn-hover-border: rgba(191, 230, 255, 0.95);
  --hero-btn-shadow: inset 0 0 0 1px rgba(221, 241, 255, 0.2);
  --hero-btn-hover-shadow: 0 10px 20px rgba(11, 84, 168, 0.28);
  --hero-btn-radius: 14px;
}
.hero-buttons-style-4 {
  --hero-btn-bg: #ffffff;
  --hero-btn-fg: #1a1d27;
  --hero-btn-border: #d7deee;
  --hero-btn-hover-bg: #f3f6ff;
  --hero-btn-hover-fg: #111524;
  --hero-btn-hover-border: #b6c4e7;
  --hero-btn-shadow: 0 4px 0 rgba(16, 23, 46, 0.18);
  --hero-btn-hover-shadow: 0 8px 0 rgba(16, 23, 46, 0.24);
  --hero-btn-radius: 10px;
  --hero-btn-transform: translateY(-1px);
}
.hero-buttons-style-5 {
  --hero-btn-bg: #c91231;
  --hero-btn-fg: #ffffff;
  --hero-btn-border: #ff7a96;
  --hero-btn-hover-bg: #9f0d26;
  --hero-btn-hover-border: #ffd2db;
  --hero-btn-hover-shadow: 0 14px 24px rgba(142, 12, 41, 0.36);
  --hero-btn-radius: 999px;
  --hero-btn-transform: scale(1.03);
}
.hero-buttons-style-6 {
  --hero-btn-bg: #f0f3ff;
  --hero-btn-fg: #232b45;
  --hero-btn-border: #ccd7ff;
  --hero-btn-hover-bg: #dde7ff;
  --hero-btn-hover-fg: #18203a;
  --hero-btn-hover-border: #aebfff;
  --hero-btn-shadow: 0 6px 18px rgba(53, 77, 145, 0.18);
  --hero-btn-hover-shadow: 0 10px 22px rgba(53, 77, 145, 0.26);
  --hero-btn-radius: 999px;
}
.hero-buttons-style-7 {
  --hero-btn-bg: #ffd84d;
  --hero-btn-fg: #171200;
  --hero-btn-border: #ffeaa0;
  --hero-btn-hover-bg: #ffe67f;
  --hero-btn-hover-fg: #1a1400;
  --hero-btn-hover-border: #fff2be;
  --hero-btn-shadow: 0 0 0 rgba(0, 0, 0, 0);
  --hero-btn-hover-shadow: 0 0 0 4px rgba(255, 225, 112, 0.32), 0 12px 22px rgba(0, 0, 0, 0.2);
  --hero-btn-radius: 8px;
}
.hero-buttons-style-8 {
  --hero-btn-bg: rgba(255, 255, 255, 0.92);
  --hero-btn-fg: #12151f;
  --hero-btn-border: rgba(255, 255, 255, 0.88);
  --hero-btn-hover-bg: #ffffff;
  --hero-btn-hover-fg: #0f121b;
  --hero-btn-hover-border: rgba(255, 255, 255, 1);
  --hero-btn-shadow: none;
  --hero-btn-hover-shadow: none;
  --hero-btn-radius: 999px;
  --hero-btn-transform: none;
}
.hero-buttons-style-9 {
  --hero-btn-bg: #00b8b0;
  --hero-btn-fg: #ffffff;
  --hero-btn-border: #6ef2e4;
  --hero-btn-hover-bg: #00d3c9;
  --hero-btn-hover-border: #b4fff7;
  --hero-btn-hover-shadow: 0 0 0 4px rgba(0, 211, 201, 0.24), 0 16px 28px rgba(0, 131, 123, 0.34);
  --hero-btn-radius: 999px;
}
.hero-buttons-style-10 {
  --hero-btn-bg: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
  --hero-btn-fg: #ffffff;
  --hero-btn-border: rgba(255, 255, 255, 0.45);
  --hero-btn-hover-bg: linear-gradient(90deg, #0f1d52, #8d1919, #d39a21);
  --hero-btn-hover-border: rgba(255, 255, 255, 0.78);
  --hero-btn-hover-shadow: 0 16px 28px rgba(9, 8, 30, 0.45);
  --hero-btn-radius: 999px;
  --hero-btn-transform: translateY(-2px) scale(1.01);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
}
.btn:link,
.btn:visited {
  color: var(--btn-fg);
}
.btn:hover {
  opacity: 0.92;
}
.btn-ghost {
  background: transparent;
  color: var(--btn-ghost-fg);
  border-color: var(--btn-ghost-border);
}
.btn-ghost:link,
.btn-ghost:visited {
  color: var(--btn-ghost-fg);
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  margin: 0;
}

.link-all {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.35rem;
  width: 100%;
  max-width: 100%;
}
.product-grid > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 0.9rem;
  }
}
@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 0.6rem;
  }
  .card-product .body {
    padding: 0.85rem 0.68rem 0.95rem;
  }
  .card-product-title,
  .card-product .body > h3 {
    font-size: 0.82rem;
    line-height: 1.35;
  }
  .card-product-price-val {
    font-size: 0.9rem;
  }
  .card-product .btn-add-cart {
    padding: 0.42rem 0.55rem;
    font-size: 0.6rem;
  }
}

.card-product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.card-product:hover {
  border-color: color-mix(in srgb, var(--text) 18%, var(--border));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}
.card-product-visual {
  position: relative;
  overflow: hidden;
  background: var(--card-media-bg);
}
.card-product .thumb {
  aspect-ratio: 3 / 4;
  background: var(--card-media-bg);
  display: block;
  position: relative;
}
.card-product .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.54s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.42s ease;
}
.card-product .thumb .card-img-main {
  z-index: 1;
}
.card-product .thumb .card-img-hover {
  z-index: 2;
  opacity: 0;
}
.card-product:hover .thumb img,
.card-product:focus-within .thumb img {
  transform: scale(1.04);
}
body.card-hover-image-on .card-product:hover .thumb .card-img-hover,
body.card-hover-image-on .card-product:focus-within .thumb .card-img-hover {
  opacity: 1;
}
body.card-hover-image-on .card-product:hover .thumb .card-img-main,
body.card-hover-image-on .card-product:focus-within .card-img-main {
  opacity: 0.08;
}
.card-pct-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
  padding: 0.28rem 0.42rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #0a0a0a;
  background: #fff;
  border-radius: 2px;
}
.card-product .body {
  padding: 1.05rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
  align-items: stretch;
}
.card-product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.card-product-cat {
  display: block;
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  max-width: 100%;
}
.card-product-title,
.card-product .body > h3 {
  margin: 0;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}
.card-product-title a,
.card-product .body > h3 a {
  color: inherit;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.card-product-title a:hover,
.card-product .body > h3 a:hover {
  opacity: 0.78;
}
.card-product-price {
  margin-top: auto;
  padding-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  width: 100%;
}
.card-product-price-val {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.card-product-actions {
  margin-top: 0.55rem;
  width: 100%;
}
.card-product .card-variant-field {
  border: 0;
  padding: 0;
  margin: 0 0 0.45rem;
  min-width: 0;
  width: 100%;
  text-align: center;
}
.card-product .card-variant-field legend {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  padding: 0;
}
.card-product .card-variant-chips {
  justify-content: center;
  gap: 0.28rem;
}
.card-product .card-variant-chips .variant-chip span {
  min-width: 2.1rem;
  max-width: 100%;
  padding: 0.3rem 0.5rem;
  font-size: 0.62rem;
  white-space: normal;
  overflow-wrap: anywhere;
}
.card-product-oos {
  display: block;
  margin-top: 0.45rem;
  text-align: center;
}
.card-product .btn-add-cart {
  width: 100%;
  padding: 0.48rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}
.card-product .btn-add-cart:link,
.card-product .btn-add-cart:visited {
  color: #ffffff;
}
.card-product .btn-add-cart:hover,
.card-product .btn-add-cart:focus-visible {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  opacity: 1;
}
body.card-micro-anim-on .card-product .btn-add-cart,
body.card-micro-anim-on .card-product .card-product-price-val {
  transition: transform 0.25s ease, box-shadow 0.25s ease, letter-spacing 0.25s ease;
}
body.card-micro-anim-on .card-product:hover .btn-add-cart,
body.card-micro-anim-on .card-product:focus-within .btn-add-cart {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  animation: cardCtaPulse 1.2s ease-out 1;
}
body.card-micro-anim-on .card-product:hover .card-product-price-val,
body.card-micro-anim-on .card-product:focus-within .card-product-price-val {
  transform: translateX(1px);
  letter-spacing: 0.04em;
}

@keyframes cardCtaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.card-stock-line {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.card-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.1rem 0 0;
  justify-content: center;
  width: 100%;
}
.card-meta-chip {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.42rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0.1rem 0 0;
  justify-content: center;
  width: 100%;
}
.card-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

/* Ürün kartı — yönetimden seçilen ön ayar (farklı görünümler) + köşe / gölge */
body.card-preset-default .card-product {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
body.card-preset-default .card-product:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}

body.card-preset-minimal .card-product {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
body.card-preset-minimal .card-product:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: color-mix(in srgb, var(--surface) 35%, transparent);
  transform: none;
  box-shadow: none !important;
}
body.card-preset-minimal .card-product .body {
  text-align: left;
  align-items: stretch;
  padding: 1rem 1.3rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: color-mix(in srgb, var(--bg) 88%, var(--surface));
}
body.card-preset-minimal .card-product-info {
  align-items: flex-start;
}
body.card-preset-minimal .card-product-cat {
  letter-spacing: 0.22em;
}
body.card-preset-minimal .card-product-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
}
body.card-preset-minimal .card-product-price {
  justify-content: flex-start;
  padding-top: 0.55rem;
}
body.card-preset-minimal .card-product-price-val {
  font-size: 0.92rem;
}
body.card-preset-minimal .card-meta-chips,
body.card-preset-minimal .card-color-swatches {
  justify-content: flex-start;
}
body.card-preset-minimal .card-product-oos {
  text-align: left;
}

body.card-preset-soft .card-product {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--surface) 100%, transparent) 0%,
    color-mix(in srgb, var(--surface) 82%, #000000) 100%
  );
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.42);
}
body.card-preset-soft .card-product:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.48);
}
body.card-preset-soft .card-product .body {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface) 55%, transparent) 100%);
}
body.card-preset-soft .card-product-cat {
  color: color-mix(in srgb, var(--muted) 75%, var(--text));
}
body.card-preset-soft .card-product-price-val {
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

body.card-preset-frame .card-product {
  border-width: 2px;
  border-color: color-mix(in srgb, var(--text) 35%, var(--border));
  background: var(--bg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text) 10%, transparent);
}
body.card-preset-frame .card-product:hover {
  border-color: color-mix(in srgb, var(--text) 55%, var(--border));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text) 14%, transparent), 0 8px 28px rgba(0, 0, 0, 0.28);
}
body.card-preset-frame .card-product .body {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
body.card-preset-frame .card-product-title {
  font-family: var(--display);
  font-size: clamp(0.92rem, 2.4vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
body.card-preset-frame .card-product-price-val {
  font-size: 1.02rem;
}

body.card-preset-editorial .card-product {
  border-width: 1px;
  border-color: color-mix(in srgb, var(--text) 16%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent) 0%, var(--surface) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}
body.card-preset-editorial .card-product .body {
  text-align: left;
  align-items: stretch;
  padding: 1.05rem 1.12rem 1.15rem;
}
body.card-preset-editorial .card-product-info {
  align-items: flex-start;
}
body.card-preset-editorial .card-product-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
body.card-preset-editorial .card-product-price {
  justify-content: flex-start;
}
body.card-preset-editorial .card-product-price-val {
  font-size: 1.08rem;
}
body.card-preset-editorial .card-product .btn-add-cart {
  border-radius: 6px;
}

body.card-preset-glass .card-product {
  background: color-mix(in srgb, var(--surface) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}
body.card-preset-glass .card-product:hover {
  border-color: color-mix(in srgb, var(--text) 35%, transparent);
}
body.card-preset-glass .card-product .body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}
body.card-preset-glass .card-product-title {
  letter-spacing: 0.03em;
}
body.card-preset-glass .card-product .btn-add-cart {
  background: color-mix(in srgb, var(--text) 92%, #111);
}

body.card-preset-neo .card-product {
  background: #0a0a0f;
  border: 1px solid rgba(89, 213, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(89, 213, 255, 0.16), 0 12px 30px rgba(0, 0, 0, 0.42);
}
body.card-preset-neo .card-product:hover {
  border-color: rgba(89, 213, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(89, 213, 255, 0.35), 0 16px 36px rgba(0, 0, 0, 0.48);
}
body.card-preset-neo .card-product-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
body.card-preset-neo .card-product-price-val {
  color: #59d5ff;
}
body.card-preset-neo .card-product .btn-add-cart {
  background: #101d2c;
  border-color: #59d5ff;
  color: #dff7ff;
}

body.card-preset-luxe .card-product {
  background: linear-gradient(165deg, #151311 0%, #090807 100%);
  border: 1px solid rgba(212, 178, 116, 0.36);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.46);
}
body.card-preset-luxe .card-product:hover {
  border-color: rgba(235, 205, 145, 0.55);
}
body.card-preset-luxe .card-product-title {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: 0.02em;
}
body.card-preset-luxe .card-product-price-val {
  color: #e9d2a2;
}
body.card-preset-luxe .card-product .btn-add-cart {
  background: #2a1d13;
  border-color: #d4b274;
  color: #f8edd7;
}
body.card-preset-luxe .card-meta-chip {
  border-color: rgba(212, 178, 116, 0.4);
}

body.card-preset-compact .card-product .body {
  padding: 0.72rem 0.72rem 0.82rem;
  gap: 0.32rem;
}
body.card-preset-compact .card-product-title {
  font-size: 0.8rem;
  line-height: 1.35;
}
body.card-preset-compact .card-product-price-val {
  font-size: 0.9rem;
}
body.card-preset-compact .card-product .btn-add-cart {
  padding: 0.4rem 0.52rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
body.card-preset-compact .card-meta-chip {
  font-size: 0.56rem;
  padding: 0.16rem 0.34rem;
}
body.card-preset-compact .card-product-cat {
  font-size: 0.56rem;
}

body.card-preset-bold .card-product {
  border-width: 2px;
  border-color: color-mix(in srgb, var(--text) 26%, var(--border));
  background: color-mix(in srgb, var(--surface) 96%, #000);
}
body.card-preset-bold .card-product .body {
  text-align: left;
  align-items: stretch;
  padding: 0.95rem 1rem 1rem;
}
body.card-preset-bold .card-product-info {
  align-items: flex-start;
}
body.card-preset-bold .card-product-title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
}
body.card-preset-bold .card-product-price {
  justify-content: flex-start;
}
body.card-preset-bold .card-product-price-val {
  font-size: 1.12rem;
  font-weight: 800;
}
body.card-preset-bold .card-product .btn-add-cart {
  border-radius: 4px;
  font-size: 0.62rem;
}

body.card-radius-sm .card-product {
  border-radius: 6px;
}
body.card-radius-lg .card-product {
  border-radius: 16px;
}
body:not(.card-shadow-on) .card-product:hover {
  box-shadow: none !important;
}
body:not(.card-shadow-on).card-preset-soft .card-product:hover {
  transform: translateY(-3px);
}

body[data-theme="ivory"].card-preset-minimal .card-product,
body[data-theme="nord"].card-preset-minimal .card-product {
  border-color: rgba(0, 0, 0, 0.1);
}
body[data-theme="ivory"].card-preset-minimal .card-product .body,
body[data-theme="nord"].card-preset-minimal .card-product .body {
  border-top-color: rgba(0, 0, 0, 0.08);
  background: color-mix(in srgb, var(--surface) 96%, var(--bg));
}

body[data-theme="ivory"] .card-color-dot,
body[data-theme="nord"] .card-color-dot {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.badge-soon {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .card-product .thumb img {
    transition: none;
  }
  .card-product:hover .thumb img,
  .card-product:focus-within .thumb img {
    transform: none;
  }
  body.card-micro-anim-on .card-product .btn-add-cart,
  body.card-micro-anim-on .card-product .card-product-price-val {
    transition: none;
    animation: none !important;
  }
  body.card-micro-anim-on .card-product:hover .btn-add-cart,
  body.card-micro-anim-on .card-product:focus-within .btn-add-cart,
  body.card-micro-anim-on .card-product:hover .card-product-price-val,
  body.card-micro-anim-on .card-product:focus-within .card-product-price-val {
    transform: none;
    box-shadow: none;
  }
}

.page-hero {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 0.5rem;
}
.products-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  margin-top: 1rem;
}
.products-sidebar {
  position: sticky;
  top: calc(72px + 0.8rem);
}
.products-filter-form {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.products-filter-field {
  margin: 0;
}
.products-filter-field span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.products-filter-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.products-filter-actions .btn {
  flex: 1 1 auto;
}
.products-filter-slider {
  gap: 0.35rem;
}
.products-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.products-slider-head small {
  font-size: 0.72rem;
  color: var(--muted);
}
.products-slider-head strong {
  font-size: 0.8rem;
  font-weight: 700;
}
.products-filter-slider input[type="range"] {
  width: 100%;
}
.products-category-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
}
.products-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.products-category-chip.is-active {
  border-color: color-mix(in srgb, var(--text) 35%, var(--border));
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}
.products-category-chip:hover {
  color: var(--text);
}
.products-mobile-filter {
  display: none;
}
@media (max-width: 980px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  .products-sidebar {
    display: none;
  }
  .products-mobile-filter {
    display: block;
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.65rem;
    z-index: 75;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    overflow: hidden;
  }
  .products-mobile-filter > summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.8rem 0.9rem;
    font-weight: 600;
  }
  .products-mobile-filter > summary::-webkit-details-marker {
    display: none;
  }
  .products-mobile-filter-form {
    padding: 0 0.85rem 0.9rem;
    display: grid;
    gap: 0.65rem;
  }
  .products-mobile-filter[open] > summary {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.7rem;
  }
  .products-content {
    padding-bottom: 5.3rem;
  }
}

.muted {
  color: var(--muted);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 960px) {
  .layout-split {
    grid-template-columns: 1fr;
  }
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0c0c0c;
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.thumbs button {
  border: 1px solid var(--border);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  width: 64px;
  height: 80px;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-grid {
  display: grid;
  gap: 1rem;
}
label span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th,
td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
th {
  background: var(--surface);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: var(--footer-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.2rem;
  align-items: start;
}
.footer-grid > nav[aria-label="Alt menü"] {
  order: 20;
}
.footer-grid .footer-newsletter {
  order: 30;
}
.footer-grid .footer-legal {
  order: 40;
}
.footer-grid .footer-brand-col {
  order: 10;
}
.footer-grid.footer-grid--brand-right .footer-brand-col {
  order: 90;
}
.footer-grid.footer-grid--brand-center .footer-newsletter {
  order: 10;
}
.footer-grid.footer-grid--brand-center .footer-brand-col {
  order: 20;
}
.footer-grid.footer-grid--brand-center .footer-legal {
  order: 30;
}
.footer-grid.footer-grid--brand-center > nav[aria-label="Alt menü"] {
  order: 40;
}
.footer-grid.footer-grid--brand-center {
  grid-template-columns: minmax(230px, 1fr) minmax(320px, 1.35fr) minmax(230px, 1fr);
  column-gap: clamp(2.4rem, 6vw, 5.5rem);
  row-gap: 1.5rem;
  align-items: start;
}
.footer-grid.footer-grid--brand-center .footer-brand-col {
  grid-column: 2;
  padding-inline: clamp(0.5rem, 1.8vw, 1.25rem);
}
.footer-grid.footer-grid--brand-center .footer-newsletter {
  grid-column: 1;
  justify-self: stretch;
  padding-top: 0.8rem;
}
.footer-grid.footer-grid--brand-center .footer-legal {
  grid-column: 3;
  justify-self: stretch;
  padding-top: 0.8rem;
}
.footer-grid.footer-grid--brand-center > nav[aria-label="Alt menü"] {
  grid-column: 3;
  justify-self: stretch;
  padding-top: 0.25rem;
}
.footer-brand-col--left .footer-brand,
.footer-brand-col--left .footer-brand--image-wrap {
  margin-inline: 0 auto;
}
.footer-brand-col--center .footer-brand,
.footer-brand-col--center .footer-brand--image-wrap {
  margin-inline: auto;
}
.footer-brand-col--right .footer-brand,
.footer-brand-col--right .footer-brand--image-wrap {
  margin-inline: auto 0;
}
.footer-brand-col--center {
  text-align: center;
}
.footer-brand-col--right {
  text-align: right;
}
.footer-brand-col--center .footer-social {
  justify-content: center;
}
.footer-brand-col--right .footer-social {
  justify-content: flex-end;
}
.footer-newsletter,
.footer-legal {
  align-self: start;
}
.footer-newsletter-form {
  max-width: 320px;
}
.footer-grid.footer-grid--brand-center .footer-newsletter-form {
  max-width: 280px;
}
.footer-legal .footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}
@media (max-width: 1100px) {
  .footer-grid.footer-grid--brand-center {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.3rem;
  }
  .footer-grid.footer-grid--brand-center .footer-brand-col {
    grid-column: 1 / -1;
    padding-inline: 0;
  }
  .footer-grid.footer-grid--brand-center .footer-newsletter,
  .footer-grid.footer-grid--brand-center .footer-legal,
  .footer-grid.footer-grid--brand-center > nav[aria-label="Alt menü"] {
    grid-column: auto;
    padding-top: 0.2rem;
  }
  .footer-grid.footer-grid--brand-center .footer-newsletter-form {
    max-width: 320px;
  }
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-grid .footer-newsletter,
  .footer-grid .footer-legal,
  .footer-grid > nav[aria-label="Alt menü"] {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .footer-brand-col,
  .footer-grid > nav[aria-label="Alt menü"],
  .footer-grid .footer-newsletter,
  .footer-grid .footer-legal {
    order: initial !important;
    grid-column: auto !important;
    padding-top: 0 !important;
  }
  .footer-grid > div:first-child {
    text-align: center;
  }
  .footer-grid > div:first-child .footer-brand,
  .footer-grid > div:first-child .footer-brand--image-wrap {
    margin-inline: auto;
  }
  .footer-grid > div:first-child .footer-social,
  .footer-grid > div:first-child .form-grid {
    justify-content: center;
    margin-inline: auto;
  }
  .footer-brand-col--right,
  .footer-brand-col--center {
    text-align: center;
  }
  .footer-brand-col--right .footer-social,
  .footer-brand-col--center .footer-social {
    justify-content: center;
  }
  .footer-grid .footer-newsletter {
    text-align: center;
  }
  .footer-grid .footer-newsletter .form-grid {
    margin-inline: auto;
  }
  .footer-grid .footer-newsletter .btn {
    margin-inline: auto;
  }
  .footer-grid .footer-links {
    justify-content: center;
  }
  .footer-grid .footer-legal .footer-links {
    align-items: center;
  }
  .footer-newsletter-form {
    max-width: 320px;
    margin-inline: auto;
  }
}
.footer-brand {
  font-family: var(--brand-footer-font, var(--display));
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}
.footer-brand--image-wrap {
  display: inline-flex;
  align-items: center;
}
.footer-brand-image {
  display: block;
  max-width: min(calc(280px * var(--footer-brand-image-scale, 1)), 78vw);
  width: auto;
  max-height: calc(110px * var(--footer-brand-image-scale, 1));
  height: auto;
  object-fit: contain;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-credit-sep {
  opacity: 0.45;
  user-select: none;
}
.footer-credit a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-credit a:hover {
  color: var(--text);
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.iyzico-badge {
  opacity: 0.85;
  max-height: 28px;
  width: auto;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.alert-error {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.08);
}
.alert-success {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
}

.cart-toast {
  position: fixed;
  bottom: 1.35rem;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 10050;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.cart-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Ürün: beden chip’leri (sadece etiket; fiyat/stok chip üzerinde yok) */
.variant-chips-wrap {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  min-width: 0;
}
.variant-chips-wrap legend {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.55rem;
  padding: 0;
}
.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.variant-chip {
  cursor: pointer;
  margin: 0;
}
.variant-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.variant-chip span {
  display: inline-block;
  min-width: 2.6rem;
  padding: 0.5rem 0.85rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.variant-chip:hover:not(.is-disabled) span {
  border-color: color-mix(in srgb, var(--text) 28%, var(--border));
}
.variant-chip input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.variant-chip input:checked + span {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--text) 7%, transparent);
}
.variant-chip.is-disabled {
  cursor: not-allowed;
}
.variant-chip.is-disabled span {
  opacity: 0.42;
  text-decoration: line-through;
}

.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;
}

.product-color-swatches-wrap {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  min-width: 0;
}
.product-color-swatches-wrap legend {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.55rem;
  padding: 0;
}
.product-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.product-color-swatch {
  cursor: pointer;
  margin: 0;
  position: relative;
}
.product-color-swatch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.product-color-swatch__ring {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--text) 12%, var(--border));
  padding: 2px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.product-color-swatch__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--swatch-hex, #ccc);
}
.product-color-swatch__img {
  display: none !important;
}
.product-color-swatch--none .product-color-swatch__ring {
  background: color-mix(in srgb, var(--surface) 92%, var(--text) 8%);
}
.product-color-swatch__none-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: color-mix(in srgb, var(--surface) 88%, var(--border));
}
.product-color-swatch__none-icon::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--text) 28%, var(--border));
}
.product-color-swatch__none-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 2px;
  border-radius: 1px;
  background: color-mix(in srgb, var(--muted) 85%, var(--text));
  transform: translateX(-50%) rotate(-42deg);
}
.product-color-swatch--none input:checked + .product-color-swatch__ring {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.product-color-swatch:hover:not(.is-disabled) .product-color-swatch__ring {
  border-color: color-mix(in srgb, var(--text) 35%, var(--border));
  transform: scale(1.04);
}
.product-color-swatch input:focus-visible + .product-color-swatch__ring {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.product-color-swatch input:checked + .product-color-swatch__ring {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.product-color-swatch.is-disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.product-detail-block + .product-detail-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-detail-block__title {
  font-size: 0.92rem;
  margin: 0 0 0.45rem;
  letter-spacing: 0.04em;
}
.product-detail-block__body {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
  line-height: 1.55;
}

.qty-picker {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--text) 4%, transparent);
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.qty-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--text) 10%, transparent);
}
.qty-btn[data-qty-inc] {
  border-right: 0;
  border-left: 1px solid var(--border);
}
.qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.qty-display {
  width: 58px;
  height: 40px;
  border: 0;
  border-radius: 0;
  text-align: center;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-details-box {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.product-trust-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.product-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.44rem 0.62rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}
.product-trust-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  flex: 0 0 16px;
}
.product-trust-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border: 1.8px solid color-mix(in srgb, var(--text) 75%, transparent);
  border-radius: 50%;
}
.product-trust-icon--return::after {
  content: "↺";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}
.product-trust-icon--shipping::after {
  content: "➜";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}
.product-trust-icon--secure::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}
@media (max-width: 620px) {
  .product-trust-strip {
    grid-template-columns: 1fr;
  }
  .product-trust-item {
    justify-content: flex-start;
  }
}
.product-details-box summary {
  cursor: pointer;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.product-details-box summary::marker {
  color: var(--muted);
}
.product-details-body {
  border-top: 1px solid var(--border);
  padding: 0.8rem 1rem 0.9rem;
}
.product-details-body p {
  margin: 0 0 0.45rem;
}
.product-details-body p:last-child {
  margin-bottom: 0;
}

.product-recommended {
  border-top: 1px solid var(--border);
  padding-top: 2.25rem;
  margin-top: 0.5rem;
}

.page-maintenance {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.maintenance-box {
  max-width: 480px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--surface);
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
  line-height: 1.7;
}

/* —— Üst marka —— */
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: min(420px, 52vw);
  text-decoration: none;
}
.brand-text {
  font-family: var(--brand-header-font, var(--display));
  font-size: clamp(0.95rem, calc(2.4vw * var(--header-brand-text-scale, 1)), calc(1.35rem * var(--header-brand-text-scale, 1)));
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
}
.brand-text-image {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: calc(56px * var(--header-brand-image-scale, 1));
  max-width: min(calc(420px * var(--header-brand-image-scale, 1)), 58vw);
  object-fit: contain;
}
.brand-style-normal {
  font-style: normal;
}
.brand-style-italic {
  font-style: italic;
}
.brand-style-expanded {
  letter-spacing: 0.22em;
  font-weight: 500;
}
.brand-style-outline {
  -webkit-text-stroke: 1.35px currentColor;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px currentColor;
}
.brand-style-outline_italic {
  font-style: italic;
  -webkit-text-stroke: 1.35px currentColor;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px currentColor;
}
.brand-style-varsity_arc {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  line-height: 1;
}
.brand-style-varsity_arc_wide,
.brand-style-varsity_arc_tilt,
.brand-style-varsity_arc_outline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  line-height: 1;
}
.footer-brand.brand-style-varsity_arc {
  font-family: "Oswald", var(--brand-footer-font, var(--display));
  font-size: clamp(1.9rem, 5.6vw, 3.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-brand.brand-style-varsity_arc_wide,
.footer-brand.brand-style-varsity_arc_tilt,
.footer-brand.brand-style-varsity_arc_outline {
  font-family: "Oswald", var(--brand-footer-font, var(--display));
  font-size: clamp(1.9rem, 5.6vw, 3.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-brand-arc {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.12em;
  min-height: 1.55em;
}
.footer-brand-arc--varsity_arc_wide {
  gap: 0.2em;
}
.footer-brand-arc-char {
  display: inline-block;
  font-weight: 700;
  transform-origin: center bottom;
  transform: translateY(calc(-1 * var(--arc-y))) rotate(var(--arc-r));
  color: currentColor;
  text-shadow: 0 0 0 currentColor;
}
.footer-brand-arc--varsity_arc_outline .footer-brand-arc-char {
  -webkit-text-stroke: 1.2px currentColor;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 1px currentColor;
}
.footer-brand-sub {
  display: block;
  font-size: 0.43em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: -0.25em;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-item-thumb {
  width: 56px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  flex: 0 0 auto;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-name {
  min-width: 0;
}
.brand-anim-none {
  animation: none;
}
.brand-anim-fade {
  animation: brandFade 3.2s ease-in-out infinite;
}
.brand-anim-pulse {
  animation: brandPulse 2.4s ease-in-out infinite;
}
.brand-anim-slide {
  animation: brandSlide 4s ease-in-out infinite;
}
.brand-anim-shimmer {
  animation: brandShimmer 3.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}
.brand-anim-glow {
  animation: brandGlow 2.8s ease-in-out infinite;
}
@keyframes brandFade {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes brandPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}
@keyframes brandSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@keyframes brandShimmer {
  0%,
  100% {
    filter: brightness(0.85);
  }
  50% {
    filter: brightness(1.15);
  }
}
@keyframes brandGlow {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
  }
}

/* —— Hero slider —— */
.hero-has-slider .hero-media > img {
  display: none;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide-picture,
.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}
.hero-slide-picture img,
.hero-slide-video {
  width: 100%;
  height: 100%;
}
.hero-static-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-static-media .hero-slide-picture,
.hero-static-media .hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 769px) {
  .hero-slide.has-hero-video .hero-slide-picture,
  .hero-static-media.has-hero-video .hero-slide-picture {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-slide.has-hero-video .hero-slide-video,
  .hero-static-media.has-hero-video .hero-slide-video {
    display: none !important;
  }
}
.hero-dots {
  position: absolute;
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* —— Yatay şerit (ürün / kategori) —— */
.strip-scroll {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  overflow: hidden;
}
@media (max-width: 900px) {
  .strip-scroll {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .strip-scroll-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: var(--container-pad);
    box-sizing: border-box;
  }
}
.strip-scroll-inner {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (hover: hover) and (pointer: fine) {
  [data-strip-scroll] .strip-scroll-inner {
    cursor: grab;
  }
  [data-strip-scroll] .strip-scroll-inner.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
  }
  [data-strip-scroll] .strip-scroll-inner.is-dragging * {
    pointer-events: none;
  }
}
.strip-scroll-inner > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}
.strip-scroll--featured {
  position: relative;
  padding-inline: clamp(32px, 3.2vw, 42px);
}
.strip-scroll--featured .strip-scroll-inner {
  scroll-behavior: smooth;
}
.strip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 25%, var(--border));
  background: color-mix(in srgb, var(--surface) 86%, var(--bg) 14%);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.strip-nav:hover,
.strip-nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
  border-color: color-mix(in srgb, var(--text) 48%, var(--border));
  background: color-mix(in srgb, var(--surface) 70%, var(--text) 12%);
  opacity: 1;
  outline: none;
}
.strip-nav[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.strip-nav span {
  font-size: 1.2rem;
  font-weight: 600;
  transform: translateY(-1px);
}
.strip-nav-prev {
  left: 2px;
}
.strip-nav-next {
  right: 2px;
}
@media (max-width: 900px) {
  .strip-scroll--featured {
    padding-inline: 0 !important;
  }
  .strip-scroll--featured .strip-scroll-inner.product-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: var(--container-pad);
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .strip-scroll--featured .strip-scroll-inner.product-strip > * {
    scroll-snap-align: start;
    min-width: 0;
    flex: 0 0 auto;
  }
  .strip-scroll--featured .product-strip .card-product {
    width: min(72vw, 220px);
    max-width: 220px;
    flex: 0 0 min(72vw, 220px);
  }
  .strip-nav {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 520px) {
  .strip-scroll--featured {
    padding-inline: 24px;
  }
  .strip-nav {
    width: 28px;
    height: 28px;
  }
  .strip-nav span {
    font-size: 1rem;
  }
}
@media (max-width: 1100px) {
  body.store-page-home,
  body.store-page-home #main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body.store-page-home .strip-scroll {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  body.store-page-home .strip-scroll-inner,
  body.store-page-home .hero,
  body.store-page-home .hero-content,
  body.store-page-home .hero-media,
  body.store-page-home .section-home-gallery .home-gallery,
  body.store-page-home .home-gallery-main,
  body.store-page-home .home-gallery-thumbs {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 1200px) {
  html body.store-page-home {
    overflow-x: hidden !important;
  }
  body.store-page-home .section,
  body.store-page-home .container {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }
  body.store-page-home .strip-scroll {
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.store-page-home .strip-scroll-inner {
    max-width: 100% !important;
    min-width: 0;
  }
}
.product-strip .card-product {
  width: min(240px, 72vw);
  flex: 0 0 min(240px, 72vw);
}

.section-tight {
  padding-top: 2rem;
}
.cat-strip {
  gap: 0.85rem;
  padding: 0.25rem 0 0.75rem;
}
.cat-chip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 100px;
  max-width: 120px;
  text-decoration: none;
  color: var(--text);
}
.cat-chip-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.cat-chip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-chip-fallback {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.75rem;
  background: var(--surface);
  color: var(--muted);
}
.cat-chip-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

/* —— Anasayfa galeri (büyük + küçük önizleme + otomatik slayt) —— */
.section-home-gallery .home-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(132px, 24vw);
  gap: 1rem 1.1rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
.home-gallery-main {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
.home-gallery-figure {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  border-radius: 2px;
}
.home-gallery-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  background: var(--bg);
  line-height: 0;
}
.home-gallery-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(75vh, 720px);
  object-fit: contain;
  image-orientation: from-image;
}
.home-gallery-caption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.4;
  border-top: 1px solid var(--border);
  margin: 0;
}
.home-gallery-caption[hidden] {
  display: none;
}
.home-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: min(75vh, 720px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2px;
  scrollbar-width: thin;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.home-gallery-thumb {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.home-gallery-thumb:hover,
.home-gallery-thumb:focus-visible {
  opacity: 0.9;
  outline: none;
}
.home-gallery-thumb.is-active {
  border-color: var(--text);
  opacity: 1;
}
.home-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .section-home-gallery .home-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .home-gallery-main {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .home-gallery-thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }
  .home-gallery-thumb {
    flex: 0 0 min(88px, 22vw);
    width: min(88px, 22vw);
  }
  .home-gallery-stage img {
    max-height: min(65vh, 560px);
  }
}

/* —— SSS —— */
.section-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin: 0 1rem 1rem;
}

.section-community {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

/* —— Hakkımızda —— */
.about-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 0;
}
@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
.about-stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr min(300px, 100%);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-aside.card-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface);
}
.about-aside-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}
.legal-body .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 0;
}
.about-values .section-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .about-value-grid {
    grid-template-columns: 1fr;
  }
}
.about-value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--bg-elevated);
}
.about-value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social-link:hover {
  background: var(--bg-elevated);
  border-color: var(--muted);
  color: var(--accent);
}
.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.wa-float:hover {
  opacity: 0.95;
  color: #fff;
}
.wa-float-svg {
  display: block;
}

/* —— Mağaza açılış yükleme ekranı —— */
.store-splash {
  position: fixed;
  inset: 0;
  z-index: 210000;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.store-splash.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.store-splash-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 78% 52% at 50% 40%, rgba(255, 255, 255, 0.05), transparent 65%),
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.025), transparent 45%);
  pointer-events: none;
}
.store-splash-inner {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 90vw;
}
.store-splash-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: min(210px, 54vw);
  height: auto;
  max-height: 78px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.82) translateY(16px);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
  position: relative;
  overflow: hidden;
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.store-splash-name {
  margin: 1.3rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 5.8vw, 2.65rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: opacity 0.64s ease 0.16s, transform 0.64s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}
.store-splash-line {
  display: block;
  width: 0;
  max-width: 170px;
  margin: 1.45rem auto 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.85;
  transition: width 0.84s cubic-bezier(0.22, 1, 0.36, 1) 0.32s;
}
.store-splash.is-anim .store-splash-logo,
.store-splash.is-text-anim .store-splash-name {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.store-splash.is-text-anim .store-splash-line {
  width: 100%;
}
.store-splash-logo::after,
.store-splash-name::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-170%) skewX(-18deg);
  opacity: 0;
}
.store-splash.is-text-anim .store-splash-name::after {
  animation: splashShine 1.35s ease 0.72s 1;
}
.store-splash.is-anim .store-splash-logo::after {
  animation: splashShine 1.35s ease 0.52s 1;
}
.store-splash-name.is-typing {
  border-right: 2px solid color-mix(in srgb, var(--text) 80%, transparent);
  animation: splashCaret 0.72s step-end infinite;
  padding-right: 0.08em;
}
@keyframes splashCaret {
  0%,
  49% {
    border-right-color: color-mix(in srgb, var(--text) 85%, transparent);
  }
  50%,
  100% {
    border-right-color: transparent;
  }
}
@keyframes splashShine {
  0% {
    transform: translateX(-170%) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(330%) skewX(-18deg);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .store-splash-logo,
  .store-splash-name,
  .store-splash-line {
    transition-duration: 0.01ms !important;
  }
  .store-splash.is-anim .store-splash-logo,
  .store-splash.is-text-anim .store-splash-name {
    opacity: 1;
    transform: none;
  }
  .store-splash.is-text-anim .store-splash-line {
    width: 100%;
  }
  .store-splash-logo::after,
  .store-splash-name::after {
    display: none;
  }
  .store-splash-name.is-typing {
    animation: none;
    border-right: 0;
  }
}

/* —— Checkout sihirbazı —— */
.checkout-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  counter-reset: ck;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.checkout-step.is-active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.checkout-step.is-done {
  border-color: rgba(34, 197, 94, 0.45);
  color: #86efac;
}
.checkout-step-num {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  font-size: 0.72rem;
}
.checkout-step.is-active .checkout-step-num {
  background: var(--accent);
  color: #000;
}
.checkout-step.is-done .checkout-step-num {
  background: rgba(34, 197, 94, 0.35);
  color: #fff;
}
.checkout-panel-title {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
}
.checkout-subhead {
  font-size: 0.85rem;
  margin: 1.25rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.checkout-ship-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
}
.checkout-ship-box--free {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
}
.checkout-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--surface);
  align-self: start;
}
@media (max-width: 960px) {
  .checkout-layout.layout-split {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    order: -1;
  }
}
.payment-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0.75rem 0 0;
}
.payment-brand {
  display: block;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.payment-brand svg {
  display: block;
}

/* —— Müşteri girişi: tek seferlik yükleme (yalnızca GET) —— */
body.has-login-splash {
  overflow: hidden;
}
.login-splash {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: grid;
  place-items: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.login-splash.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.login-splash-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(255, 255, 255, 0.06), transparent 65%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}
.login-splash-inner {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 90vw;
}
.login-splash-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: min(200px, 52vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.82) translateY(18px);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.login-splash.is-anim .login-splash-logo {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.login-splash-name {
  margin: 1.35rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--text);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease 0.18s, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}
.login-splash.is-anim .login-splash-name {
  opacity: 1;
  transform: translateY(0);
}
.login-splash-line {
  display: block;
  width: 0;
  max-width: 160px;
  margin: 1.5rem auto 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.85;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
.login-splash.is-anim .login-splash-line {
  width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .login-splash-logo,
  .login-splash-name,
  .login-splash-line {
    transition-duration: 0.01ms !important;
  }
  .login-splash.is-anim .login-splash-logo,
  .login-splash.is-anim .login-splash-name {
    opacity: 1;
    transform: none;
  }
  .login-splash.is-anim .login-splash-line {
    width: 100%;
  }
}

/* Ödeme sonuç (başarı / başarısız) */
.checkout-result-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.checkout-result-card {
  background: var(--surface, #111);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 2rem;
}
.checkout-result-alert {
  margin-bottom: 1rem;
}
.checkout-result-lead {
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.checkout-result-h2 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
}
.checkout-order-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
}
.checkout-meta-row {
  display: grid;
  grid-template-columns: minmax(110px, 140px) 1fr;
  gap: 0.75rem;
  align-items: baseline;
}
.checkout-meta-row--block {
  grid-template-columns: 1fr;
}
.checkout-meta-row--block .checkout-meta-k {
  margin-bottom: 0.15rem;
}
.checkout-meta-k {
  color: var(--muted);
  font-size: 0.84rem;
}
.checkout-meta-v {
  word-break: break-word;
}
.checkout-items-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.checkout-items-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.checkout-items-table th,
.checkout-items-table td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.checkout-items-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 500;
}
.checkout-items-table tr:last-child td {
  border-bottom: 0;
}
.checkout-items-table .num {
  text-align: right;
  white-space: nowrap;
}
.checkout-totals-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.checkout-total-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  padding: 0.25rem 0;
}
.checkout-total-line--grand {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px dashed var(--border);
  font-weight: 700;
  font-size: 1.05rem;
}
.checkout-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.checkout-result-card--fail .checkout-fail-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.checkout-fail-icon {
  color: var(--muted);
  margin-bottom: 0.35rem;
  opacity: 0.85;
}
.checkout-fail-detail {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

/* —— Mobil / tablet: tüm mağaza sayfaları —— */
@media (max-width: 900px) {
  :root {
    --container: min(1200px, calc(100% - 24px));
    --container-pad: 12px;
  }

  html {
    overflow-x: clip;
  }

  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  #main,
  .site-header,
  .site-footer,
  .category-dock,
  .section,
  .container,
  .page-hero,
  .layout-split,
  .products-layout,
  .products-content {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .category-dock {
    overflow-x: clip;
  }

  .category-dock--theme-alternating .category-dock-link {
    margin-right: 0;
  }

  .section {
    padding: 2.35rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
  }

  .section-head h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    line-height: 1.05;
  }

  .hero {
    padding: 2.25rem 0 1.5rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--container-pad);
    box-sizing: border-box;
  }

  .hero-kicker {
    letter-spacing: 0.18em;
    font-size: 0.62rem;
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10vw, 3.25rem);
    margin-bottom: 0.65rem;
    word-break: break-word;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
    max-width: 100%;
  }

  .hero-dots {
    bottom: 0.85rem;
  }

  .page-hero {
    padding: 1.75rem 0 0.85rem;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    word-break: break-word;
  }

  .header-top-note-inner {
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: center;
    padding-inline: 0.25rem;
  }

  .legal-body,
  .legal-body img,
  .legal-body iframe,
  .legal-body video,
  .legal-body table {
    max-width: 100%;
  }

  .legal-body img,
  .legal-body iframe,
  .legal-body video {
    height: auto;
  }

  .legal-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .checkout-meta-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .checkout-result-card {
    padding: 1.25rem 1rem 1.5rem;
  }

  .checkout-result-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .product-strip .card-product {
    width: min(200px, 68vw);
    flex: 0 0 min(200px, 68vw);
  }

  th,
  td {
    padding: 0.55rem 0.65rem;
    font-size: 0.82rem;
  }

  .cart-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cart-item-name {
    min-width: 0;
    flex: 1 1 120px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1200px, calc(100% - 20px));
    --container-pad: 10px;
  }

  .section {
    padding: 1.85rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .product-grid {
    gap: 0.85rem 0.55rem;
  }

  .cat-chip {
    min-width: 84px;
    max-width: 100px;
  }

  .cat-chip-img,
  .cat-chip-fallback {
    width: 72px;
    height: 72px;
  }

  .footer-newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  .wa-float {
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }
}

/* —— Anasayfa mobil yatay kayma kilidi —— */
@media (max-width: 1100px) {
  html,
  body.store-page-home {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
  }

  body.store-page-home #main,
  body.store-page-home .store-promo-bar,
  body.store-page-home .site-header,
  body.store-page-home .category-dock,
  body.store-page-home .hero,
  body.store-page-home .section,
  body.store-page-home .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.store-page-home .strip-scroll-inner,
  body.store-page-home .home-gallery-thumbs,
  body.store-page-home .category-dock-track {
    overscroll-behavior-x: contain;
  }
}
