:root {
  --bg: #faf8f5;
  --bg-elev: #ffffff;
  --panel: #f3f0eb;
  --line: rgba(62, 52, 44, 0.1);
  --line-strong: rgba(62, 52, 44, 0.17);
  --text: #2c2620;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body.store {
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --panel: #ffffff;
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.78; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.announce {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  color: rgba(15, 23, 42, 0.88);
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-head .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
@media (max-width: 1023px) {
  .site-head .inner {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
    grid-template-areas: "menu brand tools";
    align-items: center;
    gap: 8px 10px;
    padding: 12px min(14px, 4vw);
  }
  .site-head .head-actions {
    display: contents;
  }
  .site-head .head-menu-search {
    grid-area: menu;
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: start;
  }
  .site-head .head-menu-search .search--head {
    display: none !important;
  }
  .site-head .head-menu-search .nav-toggle {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin: 0;
  }
  .site-head .brand {
    grid-area: brand;
    justify-self: center;
    text-align: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .site-head .brand img {
    max-height: 28px;
    margin-left: auto;
    margin-right: auto;
    object-position: center center;
  }
  .site-head .brand-text {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    letter-spacing: 0.34em;
  }
  .site-head .tools {
    grid-area: tools;
    flex: 0 0 auto;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-end;
    justify-self: end;
    gap: 6px;
  }
  .site-head .cart-link {
    padding: 6px 8px;
    margin: 0;
    gap: 4px;
  }
}
.brand {
  flex: 1 1 auto;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: var(--text);
}
.brand img {
  display: block;
  filter: none;
}
@media (min-width: 1024px) {
  .brand img {
    max-height: 22px;
  }
}
.nav {
  display: none;
  flex: 1 0 100%;
  order: 10;
  gap: clamp(16px, 2.2vw, 28px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.82);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.tools { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 1; min-width: 0; }
.search {
  flex: 0 1 auto;
  min-width: 0;
}
.search input {
  width: clamp(76px, 19vw, 104px);
  max-width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--text);
  padding: 5px 0 6px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font);
}
.search input::placeholder {
  color: var(--muted);
  opacity: 0.82;
}
.search input:focus { outline: none; border-bottom-color: rgba(15, 23, 42, 0.35); }
@media (min-width: 1024px) {
  .search input {
    width: 108px;
  }
}
.search--page { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.search--page input { flex: 1 1 220px; width: auto; min-width: 200px; }
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px;
  margin: 0 2px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.1),
    0 4px 14px rgba(15, 23, 42, 0.1);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.cart-link:hover {
  opacity: 1;
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(15, 23, 42, 0.1),
    0 8px 22px rgba(15, 23, 42, 0.12);
}
.cart-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cart-icon {
  display: block;
  width: 22px;
  height: 22px;
}
.cart-lbl { display: none !important; }
.cart-link .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 0 0 2px var(--bg),
    0 2px 8px rgba(15, 23, 42, 0.15);
}

.mini-cart[hidden] {
  display: none !important;
}
.mini-cart {
  position: fixed;
  inset: 0;
  z-index: 500;
}
.mini-cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(23, 23, 23, 0.42);
  cursor: pointer;
}
.mini-cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(420px, 100vw);
  height: 100%;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  color: #171717;
  box-shadow: -24px 0 70px rgba(23, 23, 23, 0.22);
}
.mini-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}
.mini-cart-kicker {
  margin: 0 0 5px;
  color: var(--live-rose, #c6435c);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mini-cart-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}
.mini-cart-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #171717;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.mini-cart-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 0;
}
.mini-cart-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}
.mini-cart-item:hover {
  opacity: 1;
}
.mini-cart-item__link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.mini-cart-item__media {
  display: block;
  width: 66px;
  aspect-ratio: 3 / 4;
  background: #f3efeb center/cover no-repeat;
}
.mini-cart-item__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.mini-cart-item__copy strong {
  overflow: hidden;
  color: #171717;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
}
.mini-cart-item__copy span {
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.72rem;
}
.mini-cart-item__total {
  color: #171717;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}
.mini-cart-item__side {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.mini-cart-item__remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--live-rose, #c6435c);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.mini-cart-item__remove:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mini-cart-empty {
  margin: 0;
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.86rem;
}
.mini-cart-coupon {
  padding: 14px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}
.mini-cart-coupon label {
  display: block;
  margin-bottom: 7px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mini-cart-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.mini-cart-coupon input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: #ffffff;
  color: #171717;
  font: inherit;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.mini-cart-coupon-row button {
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  background: #171717;
  color: #ffffff;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.mini-cart-coupon-remove {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--live-rose, #c6435c);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}
.mini-cart-coupon-msg {
  margin: 9px 0 0;
  color: rgba(23, 23, 23, 0.7);
  font-size: 0.76rem;
}
.mini-cart-coupon-msg.is-error {
  color: #a1263c;
}
.mini-cart-summary {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  color: rgba(23, 23, 23, 0.68);
  font-size: 0.82rem;
}
.mini-cart-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 8px;
}
.mini-cart-summary p:last-of-type {
  margin-bottom: 0;
}
.mini-cart-summary strong {
  color: #171717;
  font-size: 1rem;
}
.mini-cart-summary em {
  font-style: normal;
  color: rgba(23, 23, 23, 0.48);
}
.mini-cart-summary .mini-cart-total {
  padding-top: 9px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}
.mini-cart-summary small {
  display: block;
  margin-top: 9px;
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.72rem;
}
.mini-cart-actions {
  display: grid;
  gap: 10px;
}
.mini-cart-actions .btn {
  width: 100%;
  text-align: center;
}
.mini-cart-actions .ghost {
  border-color: rgba(23, 23, 23, 0.18);
  color: #171717;
}
body.mini-cart-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .mini-cart-panel {
    width: 100vw;
    padding: 20px 16px;
  }
  .mini-cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .mini-cart-item__media {
    width: 58px;
  }
  .mini-cart-item__total {
    grid-column: 2;
    justify-self: start;
  }
  .mini-cart-item__side {
    grid-column: 2;
    justify-items: start;
  }
}

.account-menu {
  position: relative;
  flex-shrink: 0;
}
/* Düğme ile açılan panel arasında boşluk kalmasın — fare menüye giderken kapanmayı önler */
.account-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  pointer-events: auto;
}
.account-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.04);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.account-menu-toggle:hover {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
.account-menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.account-menu-icon {
  display: flex;
  color: var(--text);
  flex-shrink: 0;
}
.account-menu-label,
.account-menu-chevron {
  display: none !important;
}
.account-menu-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: clamp(216px, 72vw, 272px);
  max-width: calc(100vw - 48px);
  padding: 8px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  z-index: 230;
}
.account-menu-dropdown[hidden] {
  display: none !important;
}
.account-menu-meta {
  padding: 8px 10px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--muted);
  word-break: break-word;
}
.account-menu-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.9);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.account-menu-link:hover {
  opacity: 1;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}
.account-menu-link--primary {
  color: var(--accent);
}
.account-menu-link--primary:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

/* WhatsApp — sol alt sabit düğme */
.wa-float-fab {
  position: fixed;
  z-index: 130;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.wa-float-fab:hover {
  opacity: 1;
  filter: brightness(1.06);
  transform: scale(1.03);
}
.wa-float-fab-icon {
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .wa-float-fab:hover {
    transform: none;
  }
}

body.store.drawer-open {
  overflow: hidden;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.04);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.2);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle-bars {
  width: 18px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.nav-toggle-line {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.store .nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .site-head .inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 10px 20px;
    padding-top: 18px;
    padding-bottom: 14px;
  }
  .brand {
    flex: initial;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }
  .brand img {
    max-height: 42px;
    margin: 0 auto;
  }
  .brand-text {
    display: inline-block;
    font-size: 0.8125rem;
    letter-spacing: 0.34em;
  }
  .head-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
    align-self: center;
    position: relative;
    z-index: 2;
  }
  .head-menu-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: none;
    background: transparent;
    max-width: none;
  }
  .head-menu-search .nav-toggle {
    display: none;
  }
  .head-menu-search .search--head {
    display: flex;
    align-items: center;
  }
  .head-menu-search .search--head input {
    width: 108px;
  }
  .drawer-search {
    display: none;
  }
  .tools {
    margin-left: 0;
    flex-shrink: 0;
  }
  .nav {
    display: flex;
    flex: initial;
    order: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid var(--line);
    justify-self: center;
    width: 100%;
  }
  .nav-toggle { display: none; }
  .drawer {
    display: none !important;
  }
}

.nav-item { position: relative; }
.nav-submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: 100%;
  min-width: 200px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line-strong);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-submenu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-submenu a::after { display: none; }
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
/* Mobil tam ekran menü (overlay + panel) */
.drawer[hidden] {
  display: none !important;
}
@media (max-width: 1023px) {
  .tools .account-menu {
    display: none !important;
  }
  .drawer:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    z-index: 200;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
  }
  .drawer-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(100%, 360px);
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    background: linear-gradient(195deg, #ffffff 0%, #f4f6f9 45%);
    border-right: 1px solid var(--line);
    box-shadow: 16px 0 48px rgba(15, 23, 42, 0.14);
    min-height: 0;
    box-sizing: border-box;
  }
  .drawer-panel-head {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    text-decoration: none;
    color: inherit;
  }
  .drawer-brand img {
    display: block;
    max-height: 32px;
    width: auto;
    max-width: min(200px, 58vw);
    object-fit: contain;
    object-position: left center;
  }
  .drawer-panel-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.88);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .drawer-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--muted);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-close:hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.04);
  }
  .drawer-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .drawer-close svg {
    display: block;
  }
  .drawer-search {
    flex-shrink: 0;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.02);
  }
  .drawer-search .search--drawer {
    display: block;
    margin: 0;
  }
  .drawer-search .search--drawer input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--bg-elev);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9375rem;
    letter-spacing: normal;
    text-transform: none;
  }
  .drawer-search .search--drawer input::placeholder {
    color: var(--muted);
    opacity: 0.85;
  }
  .drawer-search .search--drawer input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
  }
  .drawer-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .drawer-link {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.82);
    text-decoration: none;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-link:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text);
  }
  .drawer-link--sub {
    min-height: 44px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding-left: 22px;
  }
  .drawer-link--sub:hover {
    color: var(--text);
  }
  .drawer-account {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .drawer-account-meta {
    margin: 0 0 8px;
    padding: 0 14px 4px;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--muted);
    word-break: break-word;
  }
  .drawer-link--accent {
    margin-top: 0;
    padding-top: 12px;
    border-top: none;
    border-radius: 10px;
    color: var(--accent);
  }
  .drawer-link--accent:hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.05);
  }
  .drawer-link--account {
    color: rgba(15, 23, 42, 0.88);
  }
  .drawer-link--logout {
    color: #991b1b;
    font-weight: 600;
  }
  .drawer-link--logout:hover {
    color: #7f1d1d;
    background: rgba(185, 28, 28, 0.08);
  }
  .drawer-branch {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2px;
  }
  .drawer-branch-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.82);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .drawer-branch-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text);
  }
  .drawer-branch-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .drawer-branch-label {
    min-width: 0;
    flex: 1;
  }
  .drawer-branch-chevron {
    flex-shrink: 0;
    display: flex;
    color: var(--muted);
    transition: transform 0.2s ease;
  }
  .drawer-branch-toggle[aria-expanded='true'] .drawer-branch-chevron {
    transform: rotate(-180deg);
    color: rgba(250, 250, 250, 0.75);
  }
  .drawer-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 8px 6px;
    margin: 0 0 4px;
    border-left: 2px solid var(--line-strong);
  }
  .drawer-sub[hidden] {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-line {
    transition: none;
  }
  .drawer-branch-chevron {
    transition: none;
  }
  .account-menu-chevron {
    transition: none;
  }
}
.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(36px, 6vw, 72px);
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 22px clamp(72px, 11vw, 140px);
}
.site-main > * {
  min-width: 0;
  box-sizing: border-box;
}
/* Tam genişlik hero / slider üst menüye yapışsın */
.site-main:has(> .hero-slider:first-child),
.site-main:has(> .category-hero:first-child) {
  padding-top: 0;
}
.hero-slider {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}
.hero-slider-viewport {
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  background: var(--bg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease;
  background-color: var(--panel);
  background-position: top;
  background-size: cover;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide--solid {
  background-image: none !important;
  background: radial-gradient(ellipse 100% 90% at 50% 85%, #e8ecf2 0%, #f8f9fb 50%);
}
.hero-slide:not(.hero-slide--solid)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.08) 48%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 6vw, 72px) clamp(22px, 5vw, 64px);
}
.hero-season {
  position: absolute;
  top: clamp(22px, 5vw, 52px);
  left: clamp(22px, 5vw, 64px);
  z-index: 4;
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}
.hero-slider--fallback .hero-slide-inner { justify-content: center; align-items: flex-start; }
.hero-slide h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.12;
}
.hero-slide p { margin: 0 0 24px; font-size: 0.9375rem; color: rgba(255,255,255,0.68); max-width: 420px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(0,0,0,0.45);
  color: var(--text);
  cursor: pointer;
}
.hero-arrow-prev { left: 14px; }
.hero-arrow-next { right: 14px; }
.hero-arrow-prev::before { content: "‹"; }
.hero-arrow-next::before { content: "›"; }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; transform: scale(1.15); }
.section { padding-top: clamp(48px, 8vw, 88px); }
.section--tight { padding-top: clamp(36px, 6vw, 64px); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.section-kicker {
  margin: 0 0 6px;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head h2 {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-meta {
  margin: 14px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
.home-product-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.home-product-toggle {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.home-product-toggle:hover,
.home-product-toggle.is-active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}
.home-product-panel[hidden] {
  display: none;
}
@media (max-width: 680px) {
  .home-product-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .home-product-actions .link-all {
    width: 100%;
  }
  .home-product-toggle {
    flex: 1 1 calc(50% - 6px);
  }
}

/* Kategori ürün listesi — yan sıralama/filtre */
.cat-layout {
  display: block;
}
.cat-layout--with-sidebar {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (min-width: 900px) {
  .cat-layout--with-sidebar {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  }
  .cat-layout__aside {
    position: sticky;
    top: 88px;
    padding-right: 4px;
    margin-top: -2px;
  }
}

.cat-toolbar {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 22px);
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(15,23,42,0.02);
}
.cat-layout__aside .cat-toolbar-submit {
  flex-direction: column;
  align-items: stretch;
}
.cat-layout__aside .cat-toolbar-submit .btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.cat-mobile-tools {
  display: none;
}
.cat-mobile-tool {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg-elev);
  color: rgba(44, 38, 32, 0.76);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.cat-mobile-tool svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.cat-mobile-tool.is-active,
.cat-mobile-tool.has-active {
  border-color: rgba(154, 123, 92, 0.55);
  color: var(--text);
  background: rgba(154, 123, 92, 0.08);
}

.cat-toolbar-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
/* Özel sıralama açılır listesi (.bc-select mağaza koyu temasıyla) */
.cat-toolbar-fieldset.cat-toolbar-sort .cat-toolbar-legend {
  margin-bottom: 7px;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
}
.bc-select.bc-select--sort {
  position: relative;
  width: 100%;
}
.bc-select-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 8px 9px 8px 10px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.6875rem;
  line-height: 1.38;
  letter-spacing: 0.035em;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.4);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.bc-select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(15, 23, 42, 0.05),
    0 3px 10px rgba(0, 0, 0, 0.35);
}
.bc-select.is-open > .bc-select-trigger {
  border-color: rgba(15, 23, 42, 0.22);
}
.bc-select-trigger:focus-visible {
  outline: 2px solid rgba(15, 23, 42, 0.45);
  outline-offset: 2px;
}
.bc-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}
.bc-select-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.05);
}
.bc-select-arrow::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid rgba(44, 38, 32, 0.55);
  border-bottom: 1.5px solid rgba(44, 38, 32, 0.55);
  transform: rotate(45deg) translate(-0.5px, -0.5px);
  transition: transform 0.22s ease, translate 0.22s ease;
}
.bc-select.is-open > .bc-select-trigger .bc-select-arrow::before {
  transform: rotate(-135deg) translate(-0.5px, -0.5px);
}
.bc-select-panel {
  list-style: none;
  margin: 5px 0 0;
  padding: 4px 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 60;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.38),
    0 14px 32px rgba(0, 0, 0, 0.55);
  max-height: min(220px, 44vh);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}
.bc-select-panel::-webkit-scrollbar {
  width: 5px;
}
.bc-select-panel::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 4px;
}
.bc-select-option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 7px 11px;
  border: none;
  background: transparent;
  color: rgba(15, 23, 42, 0.85);
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.028em;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.bc-select-option:hover {
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.96);
}
.bc-select-option:focus-visible {
  outline: none;
  background: rgba(15, 23, 42, 0.06);
}
.bc-select-option.is-active {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  font-weight: 500;
}
.bc-select-panel li + li .bc-select-option {
  margin-top: 0;
}
.cat-toolbar-filter {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: stretch;
}
.cat-toolbar-filter .cat-toolbar-money {
  flex: 0 1 auto;
  max-width: none;
  width: 100%;
}
.cat-toolbar-legend {
  margin: 0 0 10px;
  padding: 0;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}
.cat-toolbar-label {
  display: flex;
  gap: 8px;
  margin: 0;
  align-items: center;
}
.cat-toolbar-label > span:first-child {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
}
.cat-toolbar-money {
  flex-direction: column;
  align-items: stretch !important;
  gap: 6px !important;
}
.cat-toolbar-money input {
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
  width: 100%;
}
.cat-toolbar-money input::placeholder {
  color: rgba(44, 38, 32, 0.34);
}
.cat-toolbar-money input:focus {
  outline: 1px solid rgba(154, 123, 92, 0.45);
  outline-offset: 1px;
}
.cat-toolbar-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  cursor: pointer;
  flex: 0 1 auto;
  min-height: auto;
}
.cat-toolbar-checkbox input {
  margin: 4px 0 0;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.cat-toolbar-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.cat-toolbar-beden-fieldset {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.cat-toolbar-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cat-toolbar-reset {
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 899px) {
  .cat-layout__aside {
    margin-bottom: 18px;
  }
  .cat-mobile-tools {
    display: flex;
    gap: 8px;
    margin: 0 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-mobile-tools::-webkit-scrollbar {
    display: none;
  }
  .cat-mobile-tool {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 9px 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .cat-toolbar {
    display: none;
    gap: 16px;
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
  }
  .cat-toolbar.is-filter-open,
  .cat-toolbar.is-sort-open {
    display: grid;
  }
  .cat-toolbar > .cat-toolbar-fieldset,
  .cat-toolbar > .cat-toolbar-submit {
    display: none;
  }
  .cat-toolbar.is-sort-open > .cat-toolbar-sort {
    display: block;
  }
  .cat-toolbar.is-filter-open > .cat-toolbar-filter {
    display: flex;
  }
  .cat-toolbar.is-filter-open > .cat-toolbar-submit,
  .cat-toolbar.is-sort-open > .cat-toolbar-submit {
    display: flex;
  }
  .cat-toolbar-submit .btn,
  .cat-toolbar-reset {
    width: 100%;
    justify-content: center;
  }
}
.strip-shell {
  position: relative;
  margin: 0 -22px;
}
.strip-products {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 52px 14px;
  margin: 0;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.strip-products::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.strip-products:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}
.strip-nav {
  position: absolute;
  top: min(42%, 180px);
  z-index: 5;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.strip-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 1);
}
.strip-nav:disabled {
  opacity: 0.22;
  cursor: default;
  pointer-events: none;
}
.strip-nav--prev {
  left: 10px;
}
.strip-nav--prev::before {
  content: "‹";
  margin-right: 2px;
}
.strip-nav--next {
  right: 10px;
}
.strip-nav--next::before {
  content: "›";
  margin-left: 2px;
}
@media (max-width: 519px) {
  .strip-products { padding-left: 46px; padding-right: 46px; }
  .strip-nav { width: 34px; height: 34px; top: min(38%, 150px); }
  .strip-nav--prev { left: 8px; }
  .strip-nav--next { right: 8px; }
}
.strip-products .card { flex: 0 0 74%; max-width: 280px; }
.strip-more-card {
  flex: 0 0 74%;
  max-width: 280px;
  min-height: clamp(260px, 34vw, 420px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  display: grid;
  place-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.strip-more-card:hover {
  border-color: var(--text);
  background: #fff;
  transform: translateY(-2px);
}
.strip-more-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.strip-more-card span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
@media (min-width: 520px) { .strip-products .card { flex: 0 0 45%; max-width: 300px; } }
@media (min-width: 520px) { .strip-more-card { flex-basis: 45%; max-width: 300px; } }
@media (min-width: 900px) {
  .strip-products .card { flex: 0 0 calc(25% - 14px); max-width: none; }
  .strip-more-card { flex-basis: calc(25% - 14px); max-width: none; }
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 768px) { .collections-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .collections-grid { grid-template-columns: repeat(4, 1fr); } }
.collection-tile {
  position: relative;
  display: block;
  min-height: 200px;
  background: var(--panel);
  overflow: hidden;
}
.collection-tile-bg {
  position: absolute;
  inset: 0;
  background-color: #e8eaed;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-tile:hover .collection-tile-bg { transform: scale(1.07); }
.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.collection-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.collection-tile:hover .collection-tile-label {
  color: #ffffff;
}
.blog-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.blog-card-visual {
  aspect-ratio: 16 / 10;
  background-color: var(--panel);
  background-size: cover;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}
.blog-card-body h3 {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.blog-card-body p { margin: 0; font-size: 0.8125rem; color: rgba(15,23,42,0.55); }
.blog-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}
.cart-recommendations {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
/* İletişim sayfası */
.contact-page { max-width: 1100px; }
.contact-hero {
  margin: 18px 0 clamp(28px, 5vw, 48px);
  max-width: 640px;
}
.contact-hero-kicker {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.contact-hero-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  padding: clamp(22px, 3vw, 32px);
}
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:first-child { padding-top: 0; }
.contact-info-row:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-info-ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
}
.contact-info-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-info-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-value {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}
a.contact-info-value { transition: color 0.2s ease; }
a.contact-info-value:hover { color: var(--accent); }
.contact-map {
  margin-top: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  filter: none;
}

.contact-form-card {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  padding: clamp(24px, 3.4vw, 40px);
}
.contact-form-title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 500;
}
.contact-form-sub {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: var(--muted);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-field--full { grid-column: 1 / -1; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(44, 38, 32, 0.36); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.contact-submit { margin-top: 22px; }
.contact-flash--ok {
  border-left: 3px solid #46c46e;
}
.return-page {
  max-width: 1180px;
}
.return-page .contact-hero {
  max-width: 780px;
}
.return-request-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}
.return-policy-panel,
.return-form-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(44, 38, 32, 0.07);
}
.return-policy-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 42px);
}
.return-policy-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), rgba(77, 90, 59, 0.72), rgba(127, 29, 29, 0.58));
}
.return-panel-kicker {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.return-policy-panel h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.12;
  font-weight: 500;
  color: var(--text);
}
.return-policy-lead {
  margin: 12px 0 0;
  color: rgba(44, 38, 32, 0.68);
  line-height: 1.7;
}
.return-policy-copy {
  margin: clamp(22px, 3vw, 32px) 0 0;
  max-width: none;
  color: rgba(44, 38, 32, 0.78);
}
.return-policy-copy h2,
.return-policy-copy h3,
.return-policy-copy h4 {
  color: var(--text);
}
.return-policy-copy li::marker {
  color: var(--accent);
  font-weight: 600;
}
.return-policy-note {
  margin-top: clamp(22px, 3vw, 32px);
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.return-policy-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.return-policy-note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(44, 38, 32, 0.68);
}
.return-form-card {
  padding: clamp(24px, 3.2vw, 38px);
}
.return-request-form {
  margin-top: 2px;
}
.return-photo-field span {
  font-size: 0.75rem;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(44, 38, 32, 0.58);
}
.return-photo-field input[type="file"] {
  padding: 11px 13px;
}
@media (max-width: 900px) {
  .return-request-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .return-page .contact-hero {
    margin-bottom: 24px;
  }
  .return-policy-panel,
  .return-form-card {
    padding: 22px 18px;
  }
}
.blog-card-date {
  display: block;
  margin-bottom: 8px;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.blog-head {
  margin-bottom: 8px;
  max-width: 720px;
}
.blog-head .section-kicker { margin-bottom: 10px; }
.blog-head-lead {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(15,23,42,0.6);
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font);
  cursor: pointer;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}
.grid-prod {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 700px) { .grid-prod { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .grid-prod { grid-template-columns: repeat(4, 1fr); } }
.card .thumb-wrap { position: relative; overflow: hidden; background: var(--panel); }
.card .thumb {
  aspect-ratio: 3 / 4;
  background-color: var(--panel);
  background-position: center;
  background-size: cover;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-image 0.18s ease;
}
.card:hover .thumb { transform: scale(1.04); }
.card.is-gallery-playing .thumb {
  transform: scale(1.025);
}
.card.is-out-of-stock .thumb,
.card.is-out-of-stock .thumb-gallery {
  filter: grayscale(0.35) blur(1.2px);
  opacity: 0.58;
}
.card.is-out-of-stock .thumb-wrap::after {
  content: "Stok yok";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(23, 23, 23, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}
.card.is-out-of-stock .card-badge {
  z-index: 4;
  background: rgba(23, 23, 23, 0.86);
  color: #ffffff;
}
.card.is-low-stock .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 247, 237, 0.96);
  color: #9a3412;
  border: 1px solid rgba(234, 88, 12, 0.18);
  max-width: calc(100% - 24px);
  white-space: normal;
  line-height: 1.15;
}
@media (max-width: 420px) {
  .card.is-low-stock .card-badge {
    padding: 6px 8px;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }
}
.card.is-out-of-stock h3 {
  color: rgba(23, 23, 23, 0.56);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}
.pdp.is-out-of-stock .pdp-info h1 {
  color: rgba(23, 23, 23, 0.58);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}
.thumb-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover .thumb-gallery,
  .card:focus-within .thumb-gallery {
    animation: thumbGalleryFlash 1.6s linear 1 both;
  }
  .card:hover .thumb-gallery--2,
  .card:focus-within .thumb-gallery--2 {
    animation-delay: 0.4s;
  }
  .card:hover .thumb-gallery--3,
  .card:focus-within .thumb-gallery--3 {
    animation-delay: 0.8s;
  }
  .card:hover .thumb-gallery--4,
  .card:focus-within .thumb-gallery--4 {
    animation-delay: 1.2s;
  }
}
@keyframes thumbGalleryFlash {
  0%, 18% { opacity: 0; }
  24%, 45% { opacity: 1; }
  55%, 100% { opacity: 0; }
}
.card .info { padding: 16px 4px 8px; }
.card h3 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.prices { display: flex; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.price { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; }
.compare { font-size: 0.75rem; text-decoration: line-through; color: var(--muted); }
.page-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pdp {
  display: grid;
  gap: 40px;
  padding-top: 24px;
}
@media (min-width: 960px) {
  .pdp { grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
}
.pdp-related.section {
  margin-top: clamp(36px, 7vw, 80px);
  padding-top: clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--line);
}
.pdp-gallery-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.pdp-gallery-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.42s ease;
  will-change: opacity;
  pointer-events: none;
}
.pdp-gallery-slide.is-active {
  opacity: 1;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .pdp-gallery-slide {
    transition: none;
  }
}
.pdp-gallery .thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pdp-gallery .thumbs button,
.pdp-gallery .thumbs .pdp-thumb {
  width: 68px;
  height: 86px;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  background: var(--panel) center/cover no-repeat;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.pdp-gallery .thumbs button.is-active,
.pdp-gallery .thumbs .pdp-thumb.is-active {
  border-color: var(--accent);
  opacity: 1;
}
.pdp-gallery .thumbs button:not(.is-active),
.pdp-gallery .thumbs .pdp-thumb:not(.is-active) {
  opacity: 0.72;
}
.pdp-gallery .thumbs button:hover,
.pdp-gallery .thumbs .pdp-thumb:hover {
  opacity: 1;
}
.pdp-info h1 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pdp-info .lead { color: rgba(15,23,42,0.62); margin: 0 0 24px; }
.proc-form { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.proc-form input[type="number"] {
  width: 72px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.pdp-stock-line {
  font-size: 0.8125rem;
  margin: 14px 0 0;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 36em;
}
.pdp-stock-line--low {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.92);
  color: #9a3412 !important;
  border: 1px solid rgba(234, 88, 12, 0.18);
  font-weight: 800;
}
.proc-form--pdp {
  margin-top: 22px;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 3vw, 26px);
}
.proc-form--pdp .pdp-cart-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}
.proc-form--pdp .pdp-add-btn {
  min-height: 46px;
  padding-left: clamp(22px, 4vw, 32px);
  padding-right: clamp(22px, 4vw, 32px);
}
.pdp-size-picker {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.pdp-size-picker__legend {
  padding: 0;
  margin: 0 0 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}
.pdp-size-picker__legend span {
  display: inline-block;
}
.pdp-size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pdp-size-chip {
  cursor: pointer;
  margin: 0;
}
.pdp-size-chip--disabled {
  cursor: not-allowed;
}
.pdp-size-chip__face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 4.25rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .pdp-size-chip:hover:not(.pdp-size-chip--disabled) .pdp-size-chip__face {
    border-color: rgba(15, 23, 42, 0.28);
    background: rgba(15, 23, 42, 0.05);
  }
}
.pdp-size-chip-input:checked + .pdp-size-chip__face {
  border-color: rgba(15, 23, 42, 0.9);
  background: rgba(250, 250, 250, 0.1);
  box-shadow: inset 0 0 0 1px rgba(250, 250, 250, 0.12);
}
.pdp-size-chip-input:focus-visible + .pdp-size-chip__face {
  outline: 2px solid rgba(250, 250, 250, 0.88);
  outline-offset: 3px;
}
.pdp-size-chip--disabled .pdp-size-chip__face {
  opacity: 0.42;
  border-style: dashed;
}
.pdp-size-chip__label {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.pdp-size-chip__stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  padding: 0.25rem 0.38rem;
  border-radius: 999px;
  background: rgba(154, 52, 18, 0.1);
  color: #9a3412;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.pdp-size-chip--low-stock .pdp-size-chip__face {
  border-color: rgba(234, 88, 12, 0.28);
}
.pdp-size-chip-input:checked + .pdp-size-chip__face .pdp-size-chip__stock {
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
}
.pdp-qty-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.52);
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.data th, table.data td {
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  text-align: left;
}
table.data th {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.cart-table {
  min-width: 0;
  width: 100%;
}
@media (min-width: 960px) {
  table.cart-table {
    min-width: 560px;
  }
}
.cart-product-cell {
  vertical-align: middle;
}
.cart-product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.cart-product-link:hover .cart-product-name {
  text-decoration: underline;
}
.cart-product-name {
  font-weight: 500;
}
.cart-thumb {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.cart-thumb--empty {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 2px;
}
.cart-remove-form {
  display: none;
}
.cart-table input[type="number"] {
  width: 72px;
  max-width: 100%;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.cart-qty-cell {
  vertical-align: middle;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
}
.qty-stepper-display {
  min-width: 2rem;
  padding: 0 10px;
  text-align: center;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}
.qty-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1;
  font-family: var(--font);
  cursor: pointer;
}
.qty-btn:hover:not(:disabled) {
  background: var(--line);
}
.qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.qty-btn--down {
  border-right: 1px solid var(--line-strong);
}
.qty-btn--up {
  border-left: 1px solid var(--line-strong);
}
.checkout-form label { display: block; margin-bottom: 16px; font-size: 0.8125rem; }
.checkout-payment-methods{border:0;padding:0;margin:26px 0}.checkout-payment-methods legend{width:100%;font-size:1rem;font-weight:750;padding:0 0 12px;color:#211d1a}.checkout-payment-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.checkout-payment-option{position:relative;display:grid!important;grid-template-columns:42px 1fr;gap:2px 12px;align-items:center;min-height:126px;padding:18px!important;margin:0!important;border:1px solid #ded8d0!important;border-radius:12px;background:#fff;cursor:pointer;transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}.checkout-payment-option:hover{border-color:#a99b90!important;transform:translateY(-1px)}.checkout-payment-option:has(input:checked){border-color:#24201d!important;box-shadow:0 0 0 2px #24201d,0 10px 24px rgba(40,33,28,.09)}.checkout-payment-option input{position:absolute;right:15px;top:15px;width:18px!important;height:18px;margin:0;accent-color:#24201d}.checkout-payment-icon{display:grid;place-items:center;grid-row:1/3;width:42px;height:42px;border-radius:50%;background:#f3eee8;color:#29231f;font-size:21px;font-weight:700}.checkout-payment-copy{min-width:0;padding-right:20px}.checkout-payment-copy strong{display:block;font-size:.94rem;color:#211d1a}.checkout-payment-copy small{display:block;margin-top:5px;color:#71675f;line-height:1.45;font-size:.76rem}.checkout-payment-badge{grid-column:2;justify-self:start;margin-top:9px;padding:5px 8px;border-radius:999px;background:#f2eee9;color:#544b44;font-size:.68rem;font-weight:750;letter-spacing:.02em}.checkout-payment-option--cod:has(input:checked) .checkout-payment-badge{background:#211d1a;color:#fff}.checkout-payment-note{display:flex;gap:8px;align-items:flex-start;margin:12px 0 0;padding:11px 13px;border-radius:9px;background:#f8f5f1;color:#655c55;font-size:.73rem;line-height:1.5}.checkout-payment-note span{color:#2b2622;font-size:.9rem}@media(max-width:680px){.checkout-payment-grid{grid-template-columns:1fr}.checkout-payment-option{min-height:112px}}
.checkout-form input, .checkout-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.cart-page-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .cart-page-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
  }
}
.cart-summary-aside {
  border: 1px solid var(--line);
  padding: 20px 22px;
  background: var(--bg);
}
.cart-summary-title {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-summary-line {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.35;
}
.cart-price-unit-cell {
  white-space: nowrap;
}
.cart-line-subtotal-cell {
  font-weight: 500;
}
.cart-update-row {
  margin-top: 16px;
}
@media (max-width: 959px) {
  .cart-page-layout {
    gap: 22px;
    min-width: 0;
  }
  .cart-page-layout .table-scroll {
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
  }
  table.cart-table {
    border: 0;
    display: block;
    width: 100%;
  }
  table.cart-table thead {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
  }
  table.cart-table tbody {
    display: block;
    width: 100%;
  }
  table.cart-table tbody tr {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 14px min(14px, 4vw);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-elev);
  }
  table.cart-table tbody td {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: right;
    width: 100%;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 0.875rem;
  }
  table.cart-table tbody td:first-child {
    padding-top: 0;
    border-bottom: none;
  }
  table.cart-table tbody td:nth-child(2) {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 14px;
  }
  table.cart-table tbody td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  table.cart-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    margin-right: auto;
    text-align: left;
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    max-width: 44%;
    line-height: 1.35;
  }
  table.cart-table tbody td[data-label='']::before {
    display: none;
    content: none;
  }
  table.cart-table .cart-product-cell {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  table.cart-table .cart-product-cell::before {
    display: none;
  }
  table.cart-table .cart-product-cell .cart-product-link {
    justify-content: flex-start;
    text-align: left;
  }
  table.cart-table .cart-qty-cell .qty-stepper {
    flex-shrink: 0;
  }
  table.cart-table .cart-actions-cell {
    justify-content: stretch;
    margin-top: 4px;
  }
  table.cart-table .cart-actions-cell .btn {
    width: 100%;
    justify-self: stretch;
    text-align: center;
    box-sizing: border-box;
  }
  .cart-update-row .cart-update-submit {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cart-summary-aside {
    padding: 16px 16px;
  }
  .coupon-inline-row {
    flex-direction: column;
    align-items: stretch;
  }
  .coupon-inline-row input[type='text'] {
    min-width: 0;
    width: 100%;
  }
  .coupon-inline-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.checkout-form--full {
  max-width: 520px;
}
.checkout-section-title {
  margin: 0 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.35fr 1fr; } }
.checkout-coupon-block {
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.coupon-inline-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.coupon-inline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.coupon-inline-row input[type="text"] {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.coupon-remove-form {
  margin-top: 10px;
}
.checkout-remove-coupon {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}
.checkout-remove-coupon:hover {
  color: var(--text);
}
.checkout-discount {
  color: var(--muted);
  font-size: 0.875rem;
}
.free-ship-label {
  color: var(--muted);
  font-weight: 500;
}
.flash {
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  margin-bottom: 24px;
  background: var(--bg-elev);
}
.flash.flash--err {
  border-color: rgba(200, 90, 90, 0.45);
  color: rgba(255, 225, 225, 0.95);
}
.breadcrumb {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-top: 8px;
}
.empty { color: var(--muted); padding: 48px 0; }
.prose {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.78;
  color: rgba(15, 23, 42, 0.88);
}
.prose.prose--deep {
  max-width: 42rem;
  font-size: 0.96875rem;
  line-height: 1.8;
}
.prose > * + * {
  margin-top: 1.12em;
}
.prose > :first-child {
  margin-top: 0;
}
.prose h2,
.prose h3,
.prose h4 {
  margin-top: 1.65em;
  margin-bottom: 0.5em;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(252, 252, 252, 0.96);
}
.prose h2 {
  margin-top: 1.35em;
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  text-transform: uppercase;
}
.prose h3 {
  font-size: clamp(0.975rem, 1.55vw, 1.0825rem);
}
.prose h4 {
  font-size: clamp(0.9375rem, 1.4vw, 1.025rem);
  color: rgba(248, 248, 248, 0.9);
}
.prose hr {
  border: none;
  height: 1px;
  margin: clamp(1.85em, 4vw, 2.65em) 0;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15, 23, 42, 0.25);
}
.prose a:hover {
  filter: brightness(1.06);
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.prose figure {
  margin: 1.5em 0 0;
}
.prose figure img {
  display: block;
}
.prose figcaption {
  margin-top: 0.55em;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}
.prose ul,
.prose ol {
  margin: 0.35em 0 0;
  padding-inline-start: 1.35em;
}
.prose li + li {
  margin-top: 0.42em;
}
.prose strong {
  color: rgba(15, 23, 42, 0.93);
}
.prose blockquote {
  margin: 1.35em 0 0;
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(15, 23, 42, 0.03);
  color: rgba(15, 23, 42, 0.78);
}
.prose blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--muted);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8825rem;
  margin: 1.25em 0 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.prose thead {
  background: rgba(15, 23, 42, 0.04);
}
.prose th,
.prose td {
  padding: 10px 12px;
  text-align: start;
  border-bottom: 1px solid var(--line);
}
.prose tbody tr:last-child td {
  border-bottom: none;
}
.prose code,
.prose kbd {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.86em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.prose pre {
  margin: 1.15em 0 0;
  padding: 16px 18px;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
}
.prose pre code {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.82rem;
}

/* CMS sayfası (sayfa.php) — kapak görseli + başlık + gövde */
.cms-page {
  width: 100%;
}
.cms-page-kicker {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.45);
}
.cms-page-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.85vw, 1.6875rem);
  font-weight: 500;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.cms-page-head {
  margin-bottom: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cms-page-head::after {
  content: "";
  display: block;
  width: min(140px, 28vw);
  height: 2px;
  margin-top: clamp(18px, 3vw, 26px);
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.75;
}
.cms-page-head .cms-page-title {
  max-width: 28rem;
}
.cms-page-head .cms-page-lead {
  margin-top: 16px;
  max-width: 40rem;
}
.cms-page-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(15, 23, 42, 0.55);
  letter-spacing: 0.025em;
  font-weight: 400;
}
.cms-page-hero-overlay .cms-page-kicker {
  color: rgba(15, 23, 42, 0.5);
}
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(32px, 5.5vw, 56px);
  border: 1px solid var(--line-strong);
}
.cms-page-hero-fig {
  margin: 0;
  aspect-ratio: 21 / 9;
  max-height: min(44vh, 440px);
  min-height: 180px;
  background: var(--panel) center/cover;
}
@media (max-width: 700px) {
  .cms-page-hero-fig {
    aspect-ratio: 16 / 10;
    max-height: min(52vh, 320px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .cms-page-hero-fig img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.cms-page-hero-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cms-page-hero:hover .cms-page-hero-fig img {
  transform: scale(1.02);
}
.cms-page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(18px, 4vw, 40px);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
.cms-page-title--hero {
  font-size: clamp(1.35rem, 3.75vw, 2.0625rem);
  letter-spacing: 0.07em;
  color: rgba(253, 253, 253, 0.98);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.85),
    0 22px 40px rgba(0, 0, 0, 0.6);
}
.cms-page-body {
  padding-bottom: clamp(8px, 2vw, 16px);
}

@media (prefers-reduced-motion: reduce) {
  .cms-page-hero:hover .cms-page-hero-fig img {
    transform: none;
  }
}
/* ——— Footer (vitrin); body içinde main ile kardeş — tam genişlik ——— */
.site-foot {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: clamp(52px, 9vw, 96px) clamp(22px, 5vw, 48px) clamp(44px, 7vw, 72px);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, transparent 42%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(15, 23, 42, 0.04), transparent 55%),
    var(--bg-elev);
  text-align: center;
}
.foot-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foot-brand {
  width: 100%;
  max-width: 40rem;
  margin-bottom: clamp(36px, 6vw, 52px);
  text-align: center;
}
.foot-title {
  margin: 0 auto;
  max-width: 22rem;
  font-size: clamp(1.0625rem, 2.8vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.94);
  line-height: 1.35;
}
.foot-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.9;
  border-radius: 1px;
}
.foot-tagline {
  margin: 22px auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.55);
  text-align: center;
}
.site-foot .foot-html {
  margin: 22px auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.58);
  text-align: center;
}
.site-foot .foot-html p {
  margin: 0 0 0.75em;
}
.site-foot .foot-html p:last-child {
  margin-bottom: 0;
}
.site-foot .foot-html a {
  color: rgba(15, 23, 42, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(15, 23, 42, 0.22);
}
.site-foot .foot-html a:hover {
  color: var(--text);
  text-decoration-color: rgba(15, 23, 42, 0.3);
}
.foot-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin-top: 24px;
}
.foot-contact-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}
a.foot-contact-link:hover {
  color: rgba(15, 23, 42, 0.85);
  opacity: 1;
}
.foot-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 40px) clamp(48px, 10vw, 100px);
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-top: clamp(8px, 2vw, 12px);
}
.foot-columns--solo {
  max-width: 320px;
}

.foot-columns--wide {
  max-width: 960px;
  gap: clamp(28px, 5vw, 44px) clamp(40px, 8vw, 72px);
}
.foot-block {
  flex: 0 1 260px;
  min-width: min(260px, 100%);
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}
.foot-heading {
  margin: 0 auto 18px;
  max-width: 100%;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.28);
  text-align: center;
}
.foot-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.foot-list li {
  width: 100%;
  display: flex;
  justify-content: center;
}
.foot-list a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.foot-list a:hover {
  color: rgba(15, 23, 42, 0.95);
  background: rgba(15, 23, 42, 0.05);
  opacity: 1;
}
.foot-meta {
  width: 100%;
  max-width: 40rem;
  margin-top: clamp(40px, 7vw, 56px);
  padding-top: clamp(24px, 4vw, 32px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.foot-copy {
  margin: 0 auto;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.4);
  text-align: center;
}
.foot-copy a {
  color: rgba(15, 23, 42, 0.5);
}
.foot-copy a:hover {
  color: rgba(15, 23, 42, 0.72);
  opacity: 1;
}
.foot-copy .foot-track-link {
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  color: rgba(15, 23, 42, 0.72);
  background: rgba(255, 255, 255, 0.42);
}
.foot-copy .foot-track-link:hover {
  border-color: rgba(15, 23, 42, 0.22);
  background: #fff;
  color: rgba(15, 23, 42, 0.92);
}
.foot-copy-sep {
  opacity: 0.55;
  user-select: none;
}
.foot-copy-name {
  letter-spacing: 0.18em;
}
.category-hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  min-height: clamp(240px, 46vh, 520px);
  background: var(--panel) center/cover no-repeat;
  background-image: var(--cat-hero-bg, none);
}
.category-hero--pattern { background-image: none; background-color: var(--bg); }
.category-hero--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.category-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(22px, 4vw, 44px) clamp(36px, 6vw, 72px);
}
.breadcrumb--hero { margin: 0 0 20px; padding: 0; color: rgba(255,255,255,0.5); }
.category-hero-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category-hero-desc { margin: 0; max-width: 560px; color: rgba(255,255,255,0.6); }
.subcats-shelf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .subcats-shelf { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .subcats-shelf { grid-template-columns: repeat(4, 1fr); } }
.subcat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 16px;
}
.subcat-card-bg {
  position: absolute;
  inset: 0;
  background: #111 center/cover no-repeat;
  transition: transform 0.55s ease;
}
.subcat-card:hover .subcat-card-bg { transform: scale(1.06); }
.subcat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.subcat-card-label {
  position: relative;
  z-index: 2;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.subcat-card-hint {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
body.page-category .site-main {
  padding-top: 0;
  gap: clamp(28px, 5vw, 56px);
}

/* Müşteri hesabı */
.account-shell {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 800px) {
  .account-shell {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 40px;
  }
}
.account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .account-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
}
.account-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.account-nav a:hover,
.account-nav a.is-active {
  color: var(--text);
}
.account-main { min-width: 0; }
.account-card {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.account-card:last-child { border-bottom: none; }
.account-card-title {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-form label,
.account-auth-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.8125rem;
}
.account-form input,
.account-form textarea,
.account-auth-form input {
  width: 100%;
  max-width: 420px;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.account-auth-form {
  max-width: 440px;
}
.account-table { font-size: 0.8125rem; }
.track-page {
  max-width: 920px;
  margin: 0 auto;
}
.track-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 0 36px;
}
.track-form label {
  display: block;
  font-size: 0.8125rem;
}
.track-form input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font);
}
.track-result {
  margin-top: 28px;
}
.account-kv {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
}
.account-kv li { margin-bottom: 8px; }
.account-totals {
  margin-top: 16px;
  font-size: 0.875rem;
}
.account-address-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.account-address-card {
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-size: 0.875rem;
  line-height: 1.45;
}
.account-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.account-address-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.account-address-actions .inline-form { display: inline; }
.input-readonly {
  opacity: 0.72;
  cursor: not-allowed;
}

/* Giriş / kayıt — sepet ve ödeme ile uyumlu panel */
body.page-auth .site-main {
  gap: clamp(24px, 4vw, 40px);
}
.auth-page {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.auth-page--register {
  max-width: 480px;
}
.auth-page .breadcrumb {
  margin-bottom: 16px;
  padding-top: 0;
}
.auth-page-kicker {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.auth-page .page-title {
  margin: 0 0 12px;
}
.auth-page-lead {
  margin: 0 0 clamp(22px, 4vw, 32px);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 42em;
}
.auth-panel {
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 32px);
  background: var(--bg-elev);
}
.auth-panel .flash {
  margin-bottom: 20px;
}
.auth-panel .account-auth-form {
  max-width: none;
}
.auth-panel .account-auth-form input {
  max-width: none;
  width: 100%;
}
.btn--block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.auth-submit {
  margin-top: 8px;
}
.auth-footer {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  line-height: 1.45;
}
.auth-footer a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.auth-footer a:hover {
  opacity: 1;
  color: var(--accent);
}

/* Ödeme sayfası — içerik ortada */
body.page-checkout .site-main {
  align-items: center;
}
.checkout-page {
  width: min(100%, 560px);
  box-sizing: border-box;
}
.checkout-page .page-title {
  text-align: center;
  width: 100%;
}
.checkout-page .checkout-section-title {
  text-align: center;
}
.checkout-page .checkout-account-intro {
  text-align: center;
}
.checkout-page .checkout-guest-hint {
  text-align: center;
}
.checkout-footnote {
  font-size: 0.85rem;
  margin-top: 20px;
  line-height: 1.45;
  text-align: center;
}
.checkout-page--success {
  text-align: center;
}
.checkout-success-actions {
  margin: 12px 0 0;
}

body.paytr-pay-page .checkout-page,
.checkout-page.paytr-checkout {
  width: min(100%, 640px);
  max-width: 100%;
}
.paytr-intro {
  text-align: center;
}
.paytr-iframe-shell {
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-elev);
  min-height: 200px;
}
.paytr-checkout .page-title {
  text-align: center;
}

.checkout-page .checkout-form--full {
  max-width: none;
}
.checkout-account-gate {
  max-width: 520px;
}
.checkout-page .checkout-account-gate {
  max-width: none;
  width: 100%;
}
.checkout-account-gate .checkout-section-title {
  margin-top: 0;
}
.checkout-account-intro {
  margin: 0 0 22px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.checkout-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkout-account-actions .btn {
  flex: 1 1 160px;
  text-align: center;
}
.checkout-guest-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.checkout-guest-btn {
  margin-bottom: 12px;
}
.checkout-guest-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* --- Light theme refinements (light-commerce) --- */
body.store { color-scheme: light; }
.site-head { box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06); }
.hero-slide--solid .hero-slide-inner,
.hero-slide--solid .hero-slide h2,
.hero-slide--solid .hero-slide p { color: var(--text); }
.hero-slide--solid .hero-season { color: var(--muted); }
.hero-slide--solid .hero-slide p { color: rgba(15, 23, 42, 0.62); }
.btn { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.btn.ghost { color: var(--text); border-color: rgba(15, 23, 42, 0.22); background: transparent; }
.hero-slide .btn.ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.cart-link .badge { box-shadow: 0 0 0 2px var(--bg-elev), 0 2px 8px rgba(15, 23, 42, 0.15); }
.strip-nav { color: var(--text); }
.hero-arrow { color: #fff; }
.cms-page-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(32px, 5.5vw, 56px);
  border: 1px solid var(--line-strong);
}
.category-hero--pattern::before {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(15,23,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.06) 1px, transparent 1px);
}
.contact-map iframe { filter: none; }
.flash.flash--err { border-color: rgba(185, 28, 28, 0.35); color: #991b1b; }

/* --- Award-level storefront experience layer --- */
body.experience-home {
  --atelier-ink: #17120f;
  --atelier-ivory: #fffaf2;
  --atelier-warm: #efe3d2;
  --atelier-metal: #b6a078;
  --atelier-rouge: #7f1d1d;
  --atelier-olive: #4d5a3b;
  --atelier-shadow: 0 24px 70px rgba(23, 18, 15, 0.18);
  background:
    linear-gradient(180deg, #fffaf3 0%, #f8f3ec 36%, #fffdf8 100%);
}
body.experience-home .site-head {
  background: rgba(255, 250, 243, 0.86);
  border-bottom-color: rgba(23, 18, 15, 0.08);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
body.experience-home .site-head.is-scrolled {
  background: rgba(255, 250, 242, 0.94);
  border-bottom-color: rgba(23, 18, 15, 0.13);
  box-shadow: 0 14px 40px rgba(23, 18, 15, 0.08);
}
body.experience-home .site-main {
  gap: clamp(38px, 6.2vw, 82px);
}
body.experience-home .hero-slider {
  color: #fffaf2;
  isolation: isolate;
}
body.experience-home .hero-slider-viewport {
  min-height: min(88vh, 840px);
  background:
    linear-gradient(135deg, #19120f 0%, #4d332a 43%, #11100f 100%);
}
body.experience-home .hero-slide {
  transform: none;
}
body.experience-home .hero-slide.is-active {
  transform: none;
}
body.experience-home .hero-slide:not(.hero-slide--solid)::before {
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.34) 0%, rgba(16, 12, 10, 0.12) 46%, rgba(16, 12, 10, 0.03) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.08) 100%);
}
body.experience-home .hero-slide-inner {
  min-height: min(88vh, 840px);
  padding:
    clamp(42px, 7vw, 86px)
    clamp(22px, 7vw, 102px)
    clamp(82px, 10vw, 132px);
}
body.experience-home .h-txt {
  max-width: min(650px, 78vw);
}
body.experience-home .hero-slide h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 8vw, 6.35rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}
body.experience-home .hero-slide p {
  max-width: 460px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.8;
}
body.experience-home .hero-season {
  top: clamp(72px, 10vw, 112px);
  color: rgba(255, 250, 242, 0.74);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
body.experience-home .hero-slide .btn.ghost,
body.experience-home .btn.ghost {
  border-color: rgba(255, 250, 242, 0.42);
  background: rgba(15, 12, 10, 0.24);
  color: #fffaf2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}
body.experience-home .hero-slide .btn.ghost:hover,
body.experience-home .btn.ghost:hover {
  opacity: 1;
  border-color: rgba(255, 250, 242, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.18), rgba(127, 29, 29, 0.22));
}
.home-atelier-scene {
  display: none;
}
.home-atelier-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-rail {
  position: absolute;
  right: clamp(26px, 5vw, 74px);
  bottom: clamp(32px, 5vw, 64px);
  z-index: 8;
  display: none;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 1px;
  width: min(430px, 38vw);
  border: 1px solid rgba(255, 250, 242, 0.2);
  background: rgba(15, 12, 10, 0.18);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (min-width: 1024px) {
  .home-hero-rail {
    display: grid;
  }
}
.home-proof-pill {
  min-height: 86px;
  padding: 16px;
  background: rgba(15, 12, 10, 0.38);
  color: #fffaf2;
}
.home-proof-pill strong {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.home-proof-pill span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.experience-home .hero-arrow {
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(15, 12, 10, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.experience-home .hero-dots {
  bottom: 38px;
}
body.experience-home .hero-dots button {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.32);
}
body.experience-home .hero-dots button.is-active {
  background: var(--atelier-metal);
  transform: none;
}
.home-curation {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) clamp(18px, 5vw, 58px);
  border-top: 1px solid rgba(23, 18, 15, 0.1);
  border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.86), rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(77, 90, 59, 0.08), transparent 42%, rgba(127, 29, 29, 0.08));
}
.home-curation-copy {
  max-width: 600px;
}
.home-curation-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.15rem, 5.6vw, 5.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--atelier-ink);
  text-wrap: balance;
}
.home-curation-copy p:not(.section-kicker) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(23, 18, 15, 0.62);
  font-size: 0.98rem;
  line-height: 1.8;
}
.home-curation-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--atelier-ink);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.home-curation-link::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: transform 0.24s ease;
}
.home-curation-link:hover {
  opacity: 1;
  color: var(--atelier-rouge);
}
.home-curation-link:hover::after {
  transform: scaleX(1.35);
}
.home-curation-visual {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform 0.22s ease;
}
.home-curation-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ede3d8;
  box-shadow: var(--atelier-shadow);
}
.home-curation-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-curation-frame--main {
  inset: 0 8% 0 14%;
  aspect-ratio: 3 / 4;
}
.home-curation-frame--float {
  right: 0;
  bottom: 8%;
  width: min(38%, 220px);
  aspect-ratio: 4 / 5;
  border: 8px solid #fffaf2;
  transform: translateZ(44px);
}
.home-curation-badge {
  position: absolute;
  left: 2%;
  top: 12%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(82px, 10vw, 118px);
  height: clamp(82px, 10vw, 118px);
  border: 1px solid rgba(23, 18, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.86);
  color: var(--atelier-ink);
  box-shadow: 0 18px 60px rgba(23, 18, 15, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.home-curation-badge span,
.home-curation-badge strong {
  display: block;
  line-height: 1;
}
.home-curation-badge span {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.home-curation-badge strong {
  margin-top: -8px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--atelier-rouge);
}
.home-curation-visual.is-tilting,
.collection-tile.is-tilting,
.card.is-tilting {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
body.experience-home .section {
  position: relative;
}
body.experience-home .section-head {
  border-bottom-color: rgba(23, 18, 15, 0.12);
}
body.experience-home .section-kicker {
  color: #5f6747;
}
body.experience-home .section-head h2 {
  color: var(--atelier-ink);
}
body.experience-home .link-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--atelier-ink);
}
body.experience-home .link-all::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
body.experience-home .collections-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}
body.experience-home .collection-tile {
  min-height: clamp(220px, 26vw, 380px);
  box-shadow: 0 18px 44px rgba(23, 18, 15, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.26s ease;
}
body.experience-home .collection-tile::after {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(135deg, rgba(182, 160, 120, 0.2), transparent 46%);
}
body.experience-home .collection-tile::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 242, 0.22);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
body.experience-home .collection-tile:hover {
  opacity: 1;
  box-shadow: 0 28px 70px rgba(23, 18, 15, 0.18);
}
body.experience-home .collection-tile:hover::before {
  opacity: 1;
  transform: scale(1);
}
body.experience-home .collection-tile-label {
  padding: clamp(18px, 2.4vw, 28px);
  transform: translateZ(34px);
}
body.experience-home .strip-products {
  gap: clamp(14px, 2vw, 24px);
}
body.experience-home .grid-prod {
  gap: clamp(16px, 2.4vw, 28px);
}
body.experience-home .card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.22s ease;
}
body.experience-home .card .main {
  display: block;
}
body.experience-home .card .thumb-wrap {
  border: 1px solid rgba(23, 18, 15, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.86), rgba(232, 222, 209, 0.72));
  box-shadow: 0 20px 48px rgba(23, 18, 15, 0.09);
}
body.experience-home .card .thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 36%, transparent 56%),
    linear-gradient(to top, rgba(23, 18, 15, 0.18), transparent 44%);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 0.34s ease, transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
body.experience-home .card:hover .thumb-wrap::after {
  opacity: 1;
  transform: translateX(0);
}
body.experience-home .card:hover {
  opacity: 1;
}
body.experience-home .card .info {
  padding-top: 18px;
}
body.experience-home .card h3 {
  color: var(--atelier-ink);
  line-height: 1.45;
}
body.experience-home .price {
  color: var(--atelier-rouge);
}
body.experience-home .strip-nav {
  border-color: rgba(23, 18, 15, 0.12);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 14px 36px rgba(23, 18, 15, 0.12);
}
body.experience-home.experience-ready [data-motion-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
body.experience-home.experience-ready .hero-slider [data-motion-reveal] {
  transform: translateY(0);
}
body.experience-home .home-curation-frame:hover img,
body.experience-home .card:hover .thumb,
body.experience-home .collection-tile:hover .collection-tile-bg {
  transform: scale(1.055);
}
@media (max-width: 1023px) {
  .home-atelier-scene {
    opacity: 0.46;
    mask-image: linear-gradient(180deg, transparent 0%, #000 44%, transparent 100%);
  }
  body.experience-home .hero-slide h2 {
    max-width: 10ch;
  }
}
@media (max-width: 760px) {
  body.experience-home .hero-slider-viewport,
  body.experience-home .hero-slide-inner {
    min-height: min(78vh, 680px);
  }
  body.experience-home .hero-slide-inner {
    padding: 100px 20px 76px;
  }
  body.experience-home .hero-season {
    top: 24px;
    left: 20px;
    max-width: calc(100vw - 40px);
    letter-spacing: 0.22em;
  }
  body.experience-home .h-txt {
    max-width: 94vw;
  }
  body.experience-home .hero-slide h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 14vw, 4.4rem);
  }
  body.experience-home .hero-slide p {
    max-width: 88vw;
  }
  .home-curation {
    padding: 34px 18px 44px;
  }
  .home-curation-copy h2 {
    max-width: 12ch;
  }
  .home-curation-visual {
    min-height: 430px;
  }
  .home-curation-frame--main {
    inset: 0 5% 0 0;
  }
  .home-curation-frame--float {
    width: 42%;
    right: 0;
    bottom: 5%;
    border-width: 6px;
  }
  .home-curation-badge {
    left: auto;
    right: 6%;
    top: 8%;
  }
  body.experience-home .collections-grid {
    gap: 8px;
  }
  body.experience-home .collection-tile {
    min-height: 210px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.experience-home .hero-slide,
  body.experience-home .card,
  body.experience-home .collection-tile,
  body.experience-home .home-curation-visual,
  body.experience-home .home-curation-frame img,
  body.experience-home .card .thumb,
  body.experience-home .collection-tile-bg {
    transition: none;
    transform: none !important;
  }
  body.experience-home [data-motion-reveal] {
    opacity: 1;
    transform: none;
  }
  .home-atelier-scene {
    display: none;
  }
}

/* Ilvisa live redesign copy. Ana tasarim kopya klasorde bu katmanla canlanir. */
body.live-ilvisa-home {
  --live-ink: #171717;
  --live-paper: #ffffff;
  --live-cream: #ffffff;
  --live-peach: #efb39b;
  --live-rose: #c6435c;
  --live-lime: #c8d86d;
  --live-blue: #86bdd8;
  --live-line: rgba(23, 23, 23, 0.1);
  --live-shadow: 0 28px 78px rgba(36, 28, 21, 0.16);
  background: #ffffff;
  color: var(--live-ink);
}

.style-promo {
  position: relative;
  z-index: 111;
  overflow: hidden;
  width: 100%;
  background: var(--live-ink, #171717);
  color: #fffaf4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.style-promo__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: stylePromoRun 24s linear infinite;
}
.style-promo__track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 clamp(22px, 5vw, 58px);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.style-promo__track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--live-lime, #c8d86d);
}

@keyframes stylePromoRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.live-ilvisa-home .announce {
  background: #ffffff;
  color: rgba(23, 23, 23, 0.76);
  border-bottom-color: rgba(23, 23, 23, 0.06);
}
body.live-ilvisa-home .site-head {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(23, 23, 23, 0.08);
}
body.live-ilvisa-home .site-head.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 52px rgba(36, 28, 21, 0.12);
}
body.live-ilvisa-home .brand-text {
  font-weight: 800;
  letter-spacing: 0.42em;
}
body.live-ilvisa-home .nav {
  border-top: 0;
  padding-top: 6px;
}
body.live-ilvisa-home .nav a {
  color: rgba(23, 23, 23, 0.76);
  font-weight: 800;
  letter-spacing: 0.13em;
}
body.live-ilvisa-home .search input {
  border-bottom-color: rgba(23, 23, 23, 0.22);
}
body.live-ilvisa-home .cart-link,
body.live-ilvisa-home .account-menu-toggle,
body.live-ilvisa-home .nav-toggle {
  border-color: rgba(23, 23, 23, 0.12);
  background: #ffffff;
  color: var(--live-ink);
  box-shadow: 0 10px 28px rgba(36, 28, 21, 0.08);
}
.mobile-favorite {
  display: none;
}
body.live-ilvisa-home .cart-link .badge {
  background: var(--live-rose);
  color: #ffffff;
}
body.live-ilvisa-home .site-main {
  max-width: 1500px;
  gap: clamp(42px, 6vw, 86px);
}
body.live-ilvisa-home .hero-slider-viewport,
body.live-ilvisa-home .hero-slide-inner {
  min-height: min(82vh, 760px);
}
body.live-ilvisa-home .hero-slider-viewport {
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 216, 109, 0.28), transparent 24%),
    linear-gradient(135deg, #2b211f 0%, #9a4e55 52%, #1c1716 100%);
}
body.live-ilvisa-home .hero-slide {
  background-position: center 18%;
}
body.live-ilvisa-home .hero-slide--product-focus {
  background-position: 58% 14%;
}
body.live-ilvisa-home .hero-slide:not(.hero-slide--solid)::before {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.62) 0%, rgba(12, 10, 9, 0.18) 48%, rgba(12, 10, 9, 0.08) 100%),
    linear-gradient(to top, rgba(12, 10, 9, 0.54) 0%, rgba(12, 10, 9, 0.08) 56%, rgba(12, 10, 9, 0.05) 100%);
}
body.live-ilvisa-home .hero-slide-inner {
  justify-content: center;
  padding:
    clamp(74px, 8vw, 112px)
    clamp(22px, 7vw, 116px)
    clamp(96px, 12vw, 150px);
}
body.live-ilvisa-home .h-txt {
  max-width: min(760px, 84vw);
}
.hero-brow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.1);
  color: rgba(255, 250, 244, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-brow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live-lime);
  box-shadow: 0 0 0 6px rgba(200, 216, 109, 0.16);
}
body.live-ilvisa-home .hero-slide h2 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 8.2vw, 7.4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}
body.live-ilvisa-home .hero-slide p {
  max-width: 510px;
  color: rgba(255, 250, 244, 0.84);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}
body.live-ilvisa-home .hero-season {
  top: clamp(24px, 4.5vw, 58px);
  color: rgba(255, 250, 244, 0.76);
}
body.live-ilvisa-home .btn,
body.live-ilvisa-home .hero-slide .btn.ghost,
body.live-ilvisa-home .btn.ghost {
  border-radius: 999px;
  border-color: transparent;
  background: var(--live-ink);
  color: #fffaf4;
  box-shadow: 0 18px 42px rgba(23, 23, 23, 0.2);
}
body.live-ilvisa-home .hero-slide .btn.ghost {
  background: #fffaf4;
  color: var(--live-ink);
}
body.live-ilvisa-home .btn:hover,
body.live-ilvisa-home .hero-slide .btn.ghost:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: var(--live-rose);
  color: #ffffff;
}
.hero-vibe-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  color: var(--live-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-vibe-marquee__track {
  display: flex;
  width: max-content;
  animation: heroVibeRun 26s linear infinite;
}
.hero-vibe-marquee span {
  flex: 0 0 auto;
  padding: 13px clamp(26px, 5vw, 70px);
  font-size: clamp(0.78rem, 1.35vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-vibe-marquee span:nth-child(2n) {
  color: var(--live-rose);
}

@keyframes heroVibeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.live-ilvisa-home .home-hero-rail {
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(70px, 8vw, 100px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.live-ilvisa-home .home-proof-pill {
  min-height: 82px;
  background: rgba(255, 250, 244, 0.16);
  border: 1px solid rgba(255, 250, 244, 0.18);
}
body.live-ilvisa-home .hero-dots {
  bottom: 58px;
}
body.live-ilvisa-home .hero-dots button.is-active {
  background: var(--live-lime);
}

.home-live-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(22px, 5vw, 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 4vw, 48px);
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: var(--live-shadow);
}
.home-live-grid__lead h2 {
  margin: 0;
  max-width: 15ch;
  color: var(--live-ink);
  font-size: clamp(2rem, 4.4vw, 4.55rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-live-grid__lead p:not(.section-kicker) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(23, 23, 23, 0.62);
  font-size: 1rem;
  line-height: 1.75;
}
.home-live-grid__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
body.live-ilvisa-home .home-live-grid__ghost {
  background: #ffffff;
  color: var(--live-ink);
  border: 1px solid rgba(23, 23, 23, 0.1);
  box-shadow: none;
}
.home-live-grid__visuals {
  position: relative;
  min-height: clamp(390px, 42vw, 560px);
}
.home-live-grid__card {
  position: absolute;
  display: block;
  overflow: hidden;
  background: #eadbce;
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(36, 28, 21, 0.2);
  transform-style: preserve-3d;
}
.home-live-grid__card--primary {
  inset: 0 25% 0 0;
}
.home-live-grid__card--secondary {
  top: 8%;
  right: 0;
  width: 34%;
  height: 48%;
}
.home-live-grid__card--accent {
  right: 5%;
  bottom: 0;
  width: 38%;
  height: 38%;
}
.home-live-grid__image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-live-grid__card:hover .home-live-grid__image {
  transform: scale(1.06);
}
.home-live-grid__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 58%),
    linear-gradient(135deg, rgba(198, 67, 92, 0.18), transparent 46%);
}
.home-live-grid__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: clamp(16px, 2.5vw, 30px);
}
.home-live-grid__overlay strong {
  font-size: clamp(0.88rem, 1.3vw, 1.12rem);
  line-height: 1.25;
}
.home-live-grid__overlay span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.78);
}

.home-story-strip {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-story-pill {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 96px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  color: var(--live-ink);
  box-shadow: 0 16px 38px rgba(36, 28, 21, 0.08);
}
.home-story-pill:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.home-story-pill__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  background-position: center;
  background-size: cover;
}
.home-story-pill__copy {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding-left: 14px;
}
.home-story-pill__copy strong {
  overflow: hidden;
  color: var(--live-ink);
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-story-pill__copy span {
  color: var(--live-rose);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.live-ilvisa-home .section {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-top: 0;
}
body.live-ilvisa-home .section-head {
  align-items: center;
  padding-bottom: 0;
  border-bottom: 0;
}
body.live-ilvisa-home .section-kicker {
  color: var(--live-rose);
  font-weight: 900;
  letter-spacing: 0.2em;
}
body.live-ilvisa-home .section-head h2 {
  color: var(--live-ink);
  font-size: clamp(1.35rem, 3.4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}
body.live-ilvisa-home .home-product-toggle {
  border-color: rgba(23, 23, 23, 0.14);
  background: #ffffff;
  color: rgba(23, 23, 23, 0.7);
  font-weight: 900;
}
body.live-ilvisa-home .home-product-toggle:hover,
body.live-ilvisa-home .home-product-toggle.is-active {
  border-color: var(--live-ink);
  background: var(--live-ink);
  color: #ffffff;
}
body.live-ilvisa-home .collections-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
body.live-ilvisa-home .collection-tile {
  min-height: clamp(240px, 28vw, 410px);
  border: 0;
}
body.live-ilvisa-home .collection-tile:nth-child(4n + 1) {
  min-height: clamp(300px, 34vw, 510px);
}
body.live-ilvisa-home .collection-tile::after {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.12) 66%),
    linear-gradient(135deg, rgba(200, 216, 109, 0.18), transparent 44%);
}
body.live-ilvisa-home .collection-tile-label {
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}
body.live-ilvisa-home .strip-shell {
  margin: 0 calc(50% - 50vw);
}
body.live-ilvisa-home .strip-products {
  gap: clamp(14px, 2vw, 26px);
  padding: 6px max(52px, calc((100vw - 1320px) / 2 + 52px)) 28px;
  scroll-padding-inline: max(52px, calc((100vw - 1320px) / 2 + 52px));
}
body.live-ilvisa-home .strip-products .card {
  flex-basis: min(330px, 76vw);
}
body.live-ilvisa-home .strip-more-card {
  flex: 0 0 min(330px, 76vw);
  min-height: clamp(360px, 36vw, 520px);
  background: var(--live-ink);
  color: #fffaf4;
  border: 0;
}
body.live-ilvisa-home .card {
  min-width: 0;
}
body.live-ilvisa-home .card .main {
  display: block;
}
body.live-ilvisa-home .card .thumb-wrap {
  border: 0;
  background: #eadbce;
  box-shadow: 0 20px 52px rgba(36, 28, 21, 0.13);
}
body.live-ilvisa-home .card .thumb {
  aspect-ratio: 4 / 5.35;
}
.card-badge,
.card-fav,
.card-quick {
  position: absolute;
  z-index: 4;
}
.card-badge {
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  background: rgba(255, 250, 244, 0.94);
  color: var(--live-ink);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-fav {
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.94);
  color: var(--live-rose);
}
.card-quick {
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--live-ink);
  color: #fffaf4;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
body.live-ilvisa-home .card:hover .card-quick {
  opacity: 1;
  transform: translateY(0);
}
body.live-ilvisa-home .card .info {
  display: grid;
  gap: 8px;
  padding: 16px 2px 10px;
}
body.live-ilvisa-home .card h3 {
  color: var(--live-ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}
body.live-ilvisa-home .price {
  color: var(--live-rose);
  font-weight: 900;
}
body.live-ilvisa-home .compare {
  color: rgba(23, 23, 23, 0.46);
}
body.live-ilvisa-home .strip-nav {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--live-ink);
  color: #fffaf4;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.22);
}
body.live-ilvisa-home .strip-nav--prev {
  left: max(12px, calc((100vw - 1320px) / 2 + 8px));
}
body.live-ilvisa-home .strip-nav--next {
  right: max(12px, calc((100vw - 1320px) / 2 + 8px));
}
.site-foot.footer--modern {
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 216, 109, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(198, 67, 92, 0.12), transparent 28%),
    linear-gradient(180deg, #171717 0%, #201b19 100%);
  color: #fffaf4;
  border-top: 0;
  padding-top: clamp(58px, 8vw, 88px);
  padding-bottom: clamp(38px, 6vw, 64px);
  text-align: center;
}
.footer--modern .foot-inner {
  max-width: 1180px;
}
.footer--modern .foot-brand {
  max-width: 48rem;
  margin-right: auto;
  margin-bottom: clamp(38px, 5vw, 56px);
  margin-left: auto;
}
.footer--modern .foot-title,
.footer--modern .foot-tagline,
.footer--modern .foot-html,
.footer--modern .foot-contact-link,
.footer--modern .foot-copy,
.footer--modern .foot-copy a {
  color: rgba(255, 250, 244, 0.9);
}
.footer--modern .foot-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
}
.footer--modern .foot-html {
  color: rgba(255, 250, 244, 0.74);
  font-size: 0.9rem;
}
.footer--modern .foot-html a {
  color: #ffffff;
  text-decoration-color: rgba(200, 216, 109, 0.7);
}
.footer--modern .foot-columns--wide {
  max-width: 1040px;
  gap: 24px;
}
.footer--modern .foot-block {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.045);
  text-align: center;
}
.footer--modern .foot-heading {
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
}
.footer--modern .foot-list {
  align-items: center;
  gap: 2px;
}
.footer--modern .foot-list li {
  justify-content: center;
}
.footer--modern .foot-list a {
  width: 100%;
  padding: 9px 0;
  color: rgba(255, 250, 244, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 0;
}
.footer--modern .foot-list a:hover {
  color: #ffffff;
  background: transparent;
  transform: translateX(4px);
}
.footer--modern .foot-meta {
  max-width: 1040px;
  border-top-color: rgba(255, 250, 244, 0.14);
}
.footer--modern .foot-copy {
  color: rgba(255, 250, 244, 0.62);
}
.footer--modern .foot-copy a {
  color: rgba(255, 250, 244, 0.78);
}
.footer--modern .foot-copy a:hover {
  color: #ffffff;
}
.footer--modern .foot-copy .foot-track-link {
  border-color: rgba(255, 250, 244, 0.24);
  color: #ffffff;
  background: rgba(255, 250, 244, 0.08);
}
.footer--modern .foot-copy .foot-track-link:hover {
  border-color: rgba(200, 216, 109, 0.7);
  color: #ffffff;
  background: rgba(200, 216, 109, 0.12);
}
.site-foot .foot-trust {
  width: 100%;
  max-width: 1040px;
  margin: 28px auto 0;
}
.site-foot .foot-etbis {
  width: 144px;
  margin: 0 auto;
}
.site-foot .foot-etbis a {
  display: block;
}
.site-foot .foot-etbis img {
  display: block;
  width: 100%;
  height: auto;
}
.site-foot .foot-etbis img[alt*="ETBİS"] {
  min-width: 86px;
}
.footer--modern .foot-title::after {
  background: linear-gradient(90deg, var(--live-lime, #c8d86d), var(--live-rose, #c6435c));
}

@media (max-width: 680px) {
  .site-foot.footer--modern {
    padding: 34px 16px 24px;
    text-align: center;
  }
  .footer--modern .foot-inner {
    width: 100%;
  }
  .footer--modern .foot-brand,
  .footer--modern .foot-title,
  .footer--modern .foot-html {
    text-align: center;
  }
  .footer--modern .foot-brand {
    margin-bottom: 24px;
  }
  .footer--modern .foot-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
  }
  .footer--modern .foot-title::after {
    width: 34px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer--modern .foot-html {
    margin-top: 14px;
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .footer--modern .foot-contact {
    justify-content: center;
    gap: 8px 16px;
    margin-top: 18px;
  }
  .footer--modern .foot-contact-link {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }
  .footer--modern .foot-columns,
  .footer--modern .foot-columns--wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 0;
  }
  .footer--modern .foot-block {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 16px 14px;
    border-radius: 14px;
    text-align: center;
  }
  .footer--modern .foot-heading {
    margin-bottom: 10px;
    font-size: 0.61rem;
    letter-spacing: 0.14em;
    text-align: center;
  }
  .footer--modern .foot-list {
    align-items: center;
    gap: 0;
  }
  .footer--modern .foot-list li {
    justify-content: center;
  }
  .footer--modern .foot-list a {
    padding: 6px 0;
    font-size: 0.62rem;
    line-height: 1.35;
    letter-spacing: 0.07em;
    text-align: center;
  }
  .site-foot .foot-trust {
    margin-top: 20px;
  }
  .site-foot .foot-etbis {
    width: 128px;
    margin-right: auto;
    margin-left: auto;
  }
  .footer--modern .foot-meta {
    margin-top: 22px;
    padding-top: 18px;
    text-align: center;
  }
  .footer--modern .foot-copy {
    justify-content: center;
    gap: 7px 10px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .footer--modern .foot-copy-sep {
    display: none;
  }
  .footer--modern .foot-copy .foot-track-link {
    min-height: 26px;
    padding: 5px 9px;
  }
}

@media (min-width: 900px) {
  body.live-ilvisa-home .grid-prod .card:nth-child(8n + 1),
  body.live-ilvisa-home .grid-prod .card:nth-child(8n + 6) {
    grid-column: span 2;
  }
  body.live-ilvisa-home .grid-prod .card:nth-child(8n + 1) .thumb,
  body.live-ilvisa-home .grid-prod .card:nth-child(8n + 6) .thumb {
    aspect-ratio: 8 / 5.35;
  }
}

@media (max-width: 1023px) {
  body.live-ilvisa-home .style-promo__track span {
    min-height: 32px;
    padding: 0 26px;
  }
  body.live-ilvisa-home .hero-slider-viewport,
  body.live-ilvisa-home .hero-slide-inner {
    min-height: min(76vh, 690px);
  }
  body.live-ilvisa-home .hero-slide h2 {
    max-width: 10ch;
  }
  body.live-ilvisa-home .home-live-grid {
    grid-template-columns: 1fr;
  }
  body.live-ilvisa-home .home-live-grid__lead h2 {
    max-width: 13ch;
  }
  body.live-ilvisa-home .home-live-grid__visuals {
    min-height: 500px;
  }
  body.live-ilvisa-home .home-story-strip {
    grid-template-columns: 1fr;
  }
  body.live-ilvisa-home .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  body.live-ilvisa-home .announce {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    background: #ffffff;
    color: #6f6d6d;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }
  body.live-ilvisa-home .style-promo {
    display: none;
  }
  body.live-ilvisa-home .site-head,
  body.live-ilvisa-home .site-head.is-scrolled {
    left: 0;
    right: 0;
    z-index: 110;
    width: 100%;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.live-ilvisa-home .site-head {
    position: absolute;
    top: 42px;
  }
  body.live-ilvisa-home .site-head.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(23, 23, 23, 0.58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  body.live-ilvisa-home .site-head .inner {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-rows: 64px;
    grid-template-areas: "menu brand tools";
    gap: 0 10px;
    padding: 4px 18px;
  }
  body.live-ilvisa-home .site-head .head-menu-search {
    grid-area: menu;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  body.live-ilvisa-home .site-head .head-menu-search .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 8px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.live-ilvisa-home .nav-toggle-bars {
    width: 26px;
    height: 18px;
    gap: 4px;
  }
  body.live-ilvisa-home .nav-toggle-line {
    flex: 0 0 2px;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  }
  body.live-ilvisa-home .site-head .brand {
    grid-area: brand;
    color: #ffffff;
  }
  body.live-ilvisa-home .brand-text {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.34em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
  }
  body.live-ilvisa-home .site-head .head-menu-search .search--head {
    display: none !important;
  }
  body.live-ilvisa-home .site-head .tools {
    grid-area: tools;
    gap: 8px;
  }
  body.live-ilvisa-home .tools .account-menu {
    display: block !important;
    order: 2;
  }
  body.live-ilvisa-home .cart-link,
  body.live-ilvisa-home .account-menu-toggle {
    width: 32px;
    height: 38px;
    margin: 0;
    padding: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.live-ilvisa-home .cart-link {
    order: 2;
  }
  body.live-ilvisa-home .cart-icon-wrap,
  body.live-ilvisa-home .account-menu-icon {
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
  }
  body.live-ilvisa-home .cart-icon,
  body.live-ilvisa-home .account-menu-icon svg {
    width: 22px;
    height: 22px;
  }
  body.live-ilvisa-home .cart-link .badge {
    display: none;
  }
  body.live-ilvisa-home .hero-season {
    display: none;
  }
}

@media (max-width: 680px) {
  body.live-ilvisa-home .site-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.live-ilvisa-home .hero-slider-viewport,
  body.live-ilvisa-home .hero-slide-inner {
    min-height: min(68vh, 610px);
  }
  body.live-ilvisa-home .hero-slide {
    background-position: center top;
  }
  body.live-ilvisa-home .hero-slide--product-focus {
    background-position: 64% top;
  }
  body.live-ilvisa-home .hero-slide-inner {
    padding: 96px 18px 92px;
    justify-content: flex-end;
  }
  body.live-ilvisa-home .hero-slide h2 {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 15vw, 4.35rem);
  }
  body.live-ilvisa-home .hero-slide p {
    max-width: 94vw;
  }
  .hero-brow {
    margin-bottom: 12px;
    padding: 8px 11px;
    font-size: 0.6rem;
  }
  body.live-ilvisa-home .hero-vibe-marquee span {
    padding: 11px 28px;
    font-size: 0.72rem;
  }
  body.live-ilvisa-home .hero-dots {
    bottom: 48px;
  }
  body.live-ilvisa-home .home-live-grid {
    padding: 30px 16px;
  }
  body.live-ilvisa-home .home-live-grid__lead h2 {
    max-width: 12ch;
    font-size: clamp(1.85rem, 10.5vw, 2.9rem);
  }
  body.live-ilvisa-home .home-live-grid__actions .btn {
    width: 100%;
    text-align: center;
  }
  body.live-ilvisa-home .home-live-grid__visuals {
    min-height: 360px;
  }
  body.live-ilvisa-home .home-live-grid__card--primary {
    inset: 0 13% 18% 0;
  }
  body.live-ilvisa-home .home-live-grid__card--secondary {
    top: auto;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 34%;
  }
  body.live-ilvisa-home .home-live-grid__card--accent {
    display: none;
  }
  body.live-ilvisa-home .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  body.live-ilvisa-home .section-head h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }
  body.live-ilvisa-home .collections-grid {
    gap: 8px;
  }
  body.live-ilvisa-home .collection-tile,
  body.live-ilvisa-home .collection-tile:nth-child(4n + 1) {
    min-height: 220px;
  }
  body.live-ilvisa-home .strip-products {
    padding-left: 46px;
    padding-right: 46px;
  }
  body.live-ilvisa-home .strip-products .card,
  body.live-ilvisa-home .strip-more-card {
    flex-basis: min(282px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .style-promo__track,
  .hero-vibe-marquee__track {
    animation: none;
  }
}

/* Live category and product detail pages */
body.page-category,
body.page-product {
  --live-ink: #171717;
  --live-paper: #ffffff;
  --live-cream: #ffffff;
  --live-peach: #efb39b;
  --live-rose: #c6435c;
  --live-lime: #c8d86d;
  --live-blue: #86bdd8;
  --live-line: rgba(23, 23, 23, 0.1);
  --live-shadow: 0 28px 78px rgba(36, 28, 21, 0.16);
  background: #ffffff;
}
body.page-category .site-head,
body.page-product .site-head {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(23, 23, 23, 0.08);
}
body.page-category .site-main,
body.page-product .site-main {
  max-width: 1500px;
}
body.page-category .category-hero {
  min-height: clamp(360px, 48vh, 580px);
  background-position: center 24%;
  isolation: isolate;
}
body.page-category .category-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.72) 0%, rgba(12, 10, 9, 0.22) 52%, rgba(12, 10, 9, 0.08) 100%),
    linear-gradient(to top, rgba(12, 10, 9, 0.78) 0%, rgba(12, 10, 9, 0.12) 64%);
}
body.page-category .category-hero-code {
  border-color: rgba(244, 189, 200, 0.32);
}
body.page-category .category-hero-code::before {
  border-color: rgba(244, 189, 200, 0.42);
}
body.page-category .category-hero-code {
  position: absolute;
  right: clamp(18px, 5vw, 80px);
  bottom: clamp(20px, 6vw, 70px);
  z-index: 2;
  width: clamp(110px, 18vw, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: 50%;
}
body.page-category .category-hero-code::before,
body.page-category .category-hero-code::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(200, 216, 109, 0.34);
  border-radius: 50%;
}
body.page-category .category-hero-code::after {
  inset: 38%;
  background: var(--live-lime);
  border: 0;
}
body.page-category .category-hero-inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(44px, 7vw, 92px);
}
body.page-category .breadcrumb--hero {
  color: rgba(255, 250, 244, 0.74);
  font-weight: 700;
}
body.page-category .category-hero-kicker {
  color: var(--live-lime);
}
body.page-category .category-hero-title {
  max-width: 10ch;
  color: #fffaf4;
  font-size: clamp(2.65rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}
.category-hero-count {
  margin: 0 0 10px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.page-category .category-hero-desc {
  max-width: 560px;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}
body.page-category .category-main {
  width: min(100%, 1320px);
  margin: 0 auto;
}
@media (min-width: 681px) {
  body.page-category .site-main {
    gap: 0;
  }
  body.page-category .category-hero {
    min-height: clamp(320px, 38vh, 430px);
  }
  body.page-category .category-hero-inner {
    padding-top: clamp(28px, 3vw, 42px);
    padding-bottom: clamp(30px, 3.5vw, 48px);
  }
  body.page-category .category-hero-title {
    font-size: clamp(2.65rem, 6.25vw, 5rem);
  }
  body.page-category .category-main {
    padding-top: clamp(26px, 2.5vw, 36px);
  }
}
.category-shop-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 1.2fr);
  gap: 1px;
  margin: 0 0 clamp(22px, 4vw, 42px);
  background: rgba(23, 23, 23, 0.1);
  border: 1px solid rgba(23, 23, 23, 0.1);
}
.category-shop-strip__item,
.category-shop-strip__note {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
}
.category-shop-strip__item strong {
  color: var(--live-rose);
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  line-height: 1;
}
.category-shop-strip span,
.category-shop-strip__note strong {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.category-shop-strip__note {
  background: var(--live-ink);
  color: #fffaf4;
}
.category-shop-strip__note span {
  color: var(--live-lime);
}
body.page-category .subcats-shelf {
  gap: 14px;
}
body.page-category .subcat-card {
  min-height: clamp(190px, 24vw, 310px);
  border: 0;
  box-shadow: 0 18px 44px rgba(36, 28, 21, 0.12);
}
body.page-category .subcat-card::after {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12) 70%),
    linear-gradient(135deg, rgba(200, 216, 109, 0.2), transparent 48%);
}
body.page-category .subcat-card-label {
  font-size: clamp(0.78rem, 1.1vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}
body.page-category .cat-layout--with-sidebar {
  gap: clamp(22px, 3.5vw, 44px);
}
body.page-category .cat-layout__aside {
  top: 150px;
}
body.page-category .cat-toolbar {
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(36, 28, 21, 0.1);
}
body.page-category .cat-toolbar-legend {
  color: var(--live-rose);
  font-weight: 900;
}
body.page-category .grid-prod {
  gap: clamp(16px, 2.2vw, 30px);
}
body.page-category .grid-prod .card .thumb-wrap {
  box-shadow: 0 18px 46px rgba(36, 28, 21, 0.11);
}
body.page-category .grid-prod .card h3 {
  font-weight: 750;
  letter-spacing: 0;
}
body.page-category .grid-prod .card .thumb {
  aspect-ratio: 4 / 5.35;
}
body.page-category .grid-prod .card:nth-child(6n + 1) {
  grid-column: span 2;
}
body.page-category .grid-prod .card:nth-child(6n + 1) .thumb {
  aspect-ratio: 8 / 5.35;
}

body.page-product .site-main {
  gap: clamp(26px, 5vw, 60px);
  width: min(100%, 1500px);
  padding-top: clamp(20px, 4vw, 42px);
}
body.page-product .breadcrumb {
  width: min(100%, 1320px);
  margin: 0 auto;
  color: rgba(23, 23, 23, 0.58);
  font-weight: 700;
}
body.page-product .pdp {
  width: min(100%, 1320px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
body.page-product .pdp-gallery {
  display: grid;
  grid-template-columns: minmax(72px, 92px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
body.page-product .pdp-gallery-stage {
  grid-column: 2;
  min-height: min(78vh, 780px);
  border: 0;
  box-shadow: var(--live-shadow);
  background: #eadbce;
}
body.page-product .pdp-gallery .thumbs {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
  flex-direction: column;
  gap: 12px;
}
body.page-product .pdp-gallery .thumbs button,
body.page-product .pdp-gallery .thumbs .pdp-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 2px solid transparent;
  box-shadow: 0 10px 26px rgba(36, 28, 21, 0.1);
}
body.page-product .pdp-gallery .thumbs button.is-active,
body.page-product .pdp-gallery .thumbs .pdp-thumb.is-active {
  border-color: var(--live-rose);
}
body.page-product .pdp-info {
  position: sticky;
  top: 148px;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 179, 155, 0.18)),
    #fffaf4;
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 24px 70px rgba(36, 28, 21, 0.13);
}
.pdp-live-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(23, 23, 23, 0.6);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pdp-live-topline strong {
  color: var(--live-rose);
}
.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pdp-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--live-ink);
  border: 1px solid rgba(23, 23, 23, 0.08);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pdp-badges .pdp-badge-low-stock {
  background: rgba(255, 247, 237, 0.96);
  color: #9a3412;
  border-color: rgba(234, 88, 12, 0.2);
}
body.page-product .pdp-info h1 {
  margin-bottom: 14px;
  color: var(--live-ink);
  font-size: clamp(1.9rem, 3.7vw, 3.55rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}
body.page-product .pdp-info .lead {
  color: rgba(23, 23, 23, 0.64);
  font-size: 0.95rem;
  line-height: 1.62;
}
body.page-product .pdp-info .prices {
  margin: 18px 0 0;
}
body.page-product .pdp-info .price {
  color: var(--live-rose);
  font-size: clamp(1.25rem, 2.5vw, 2.05rem) !important;
  font-weight: 900;
}
body.page-product .pdp-stock-line {
  color: rgba(23, 23, 23, 0.55);
}
body.page-product .pdp-stock-line--low {
  color: #9a3412;
}
body.page-product .pdp-size-picker__legend,
body.page-product .pdp-qty-label {
  color: var(--live-rose);
  font-weight: 900;
}
body.page-product .pdp-size-chip__face {
  min-width: 3.7rem;
  border-radius: 999px;
  background: #ffffff;
}
body.page-product .pdp-size-chip-input:checked + .pdp-size-chip__face {
  border-color: var(--live-ink);
  background: var(--live-ink);
  color: #ffffff;
  box-shadow: none;
}
body.page-product .pdp-size-chip--low-stock .pdp-size-chip__face {
  border-color: rgba(234, 88, 12, 0.34);
}
body.page-product .proc-form--pdp .pdp-cart-row {
  display: grid;
  grid-template-columns: minmax(78px, 0.28fr) minmax(0, 1fr) auto;
  gap: 10px;
}
body.page-product .proc-form input[type="number"] {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: #ffffff;
  text-align: center;
}
.pdp-wish-btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: var(--live-rose);
  cursor: pointer;
}
.pdp-service-grid {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: rgba(23, 23, 23, 0.1);
  border: 1px solid rgba(23, 23, 23, 0.1);
}
.pdp-service-grid > div {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
}
.pdp-service-grid span,
.pdp-service-grid strong,
.pdp-service-grid a {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pdp-service-grid span {
  color: var(--live-rose);
}
.pdp-service-grid a {
  color: var(--live-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pdp-info-stack details.pdp-installments {
  padding: 12px 0;
}
.pdp-installments-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}
#paytr_taksit_tablosu {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 1200px;
  font-family: Arial, sans-serif;
  font-size: 10.5px;
  text-align: center;
}
#paytr_taksit_tablosu::before {
  display: none !important;
  content: " ";
}
#paytr_taksit_tablosu::after {
  clear: both;
  display: none !important;
  content: "";
}
.taksit-tablosu-wrapper {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 8px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  cursor: default;
}
.taksit-logo img {
  max-height: 22px;
  padding-bottom: 7px;
}
.taksit-tutari-text {
  display: inline-flex;
  float: none !important;
  width: 50% !important;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: rgba(23, 23, 23, 0.52);
  vertical-align: top;
}
.taksit-tutar-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  clear: both;
  width: 100% !important;
  background-color: #f7f7f7;
}
.taksit-tutar-wrapper:hover {
  background-color: #e8e8e8;
}
.taksit-tutari {
  display: flex;
  float: none !important;
  width: auto !important;
  min-height: 45px;
  padding: 5px 2px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  color: #474747;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.taksit-tutari-bold {
  font-weight: 700;
}
@media (max-width: 600px) {
  #paytr_taksit_tablosu {
    grid-template-columns: 1fr;
  }
  .taksit-tablosu-wrapper {
    margin: 5px 0;
  }
}
.pdp-detail-prose {
  margin-top: 20px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}
.pdp-info-stack {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}
.pdp-info-stack details {
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  padding: 12px 0;
}
.pdp-info-stack summary {
  cursor: pointer;
  color: var(--live-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pdp-info-stack p {
  margin: 10px 0 0;
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}
body.page-product .pdp-related.section {
  width: min(100%, 1680px);
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}

@media (min-width: 1100px) {
  body.page-product .pdp-related.section {
    width: calc(100vw - 48px);
    max-width: none;
    margin-right: calc(50% - 50vw + 24px);
    margin-left: calc(50% - 50vw + 24px);
  }
  body.page-product .pdp-related .grid-prod {
    gap: clamp(18px, 1.5vw, 28px);
  }
}

@media (max-width: 1100px) {
  body.page-product .pdp {
    grid-template-columns: 1fr;
  }
  body.page-product .pdp-info {
    position: relative;
    top: auto;
  }
}

@media (max-width: 899px) {
  .category-shop-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-shop-strip__note {
    grid-column: 1 / -1;
  }
  body.page-category .grid-prod .card:nth-child(6n + 1) {
    grid-column: auto;
  }
  body.page-category .grid-prod .card:nth-child(6n + 1) .thumb {
    aspect-ratio: 4 / 5.35;
  }
}

@media (max-width: 680px) {
  body.page-category .site-main {
    gap: 0;
    padding-bottom: 54px;
  }
  body.page-category .category-hero {
    min-height: auto;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    background-image: none !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  }
  body.page-category .category-hero-overlay,
  body.page-category .category-hero-code,
  body.page-category .category-hero--pattern::before {
    display: none;
  }
  body.page-category .category-hero-inner {
    min-height: 0;
    display: block;
    padding: 14px 16px 13px;
    text-align: center;
  }
  body.page-category .breadcrumb--hero {
    margin: 0 0 7px;
    color: rgba(23, 23, 23, 0.54);
    font-size: 0.66rem;
    line-height: 1.35;
  }
  body.page-category .category-hero-kicker {
    display: none;
  }
  body.page-category .category-hero-title {
    max-width: none;
    margin: 0;
    color: var(--live-ink);
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .category-hero-count {
    margin: 7px 0 0;
    color: rgba(23, 23, 23, 0.48);
    font-size: 0.62rem;
  }
  body.page-category .category-hero-desc {
    display: none;
  }
  body.page-category .category-main {
    padding-top: 0;
  }
  body.page-category .section-head,
  body.page-category .category-shop-strip,
  body.page-category .subcats-shelf,
  body.page-category .section-head--sub {
    display: none;
  }
  body.page-category .cat-layout {
    display: block;
  }
  body.page-category .cat-layout__aside {
    position: sticky;
    top: 67px;
    z-index: 60;
    margin: 0 -16px 0;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  }
  body.page-category .cat-mobile-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    overflow: visible;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
  }
  body.page-category .cat-mobile-tool {
    min-height: 43px;
    border: 0;
    border-right: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 0;
    background: #ffffff;
    color: var(--live-ink);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: none;
  }
  body.page-category .cat-mobile-tool:last-child {
    border-right: 0;
  }
  body.page-category .cat-mobile-tool svg {
    width: 14px;
    height: 14px;
  }
  body.page-category .cat-mobile-tool.is-active,
  body.page-category .cat-mobile-tool.has-active {
    color: var(--live-rose);
    background: #ffffff;
  }
  body.page-category .cat-toolbar {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 70;
    margin: 0;
    padding: 16px;
    border: 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(23, 23, 23, 0.12);
  }
  body.page-category .cat-toolbar.is-filter-open,
  body.page-category .cat-toolbar.is-sort-open {
    display: grid;
  }
  body.page-category .cat-layout__main {
    padding-top: 10px;
  }
  body.page-category .grid-prod {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 6px;
    margin-left: -11px;
    margin-right: -11px;
  }
  body.page-category .grid-prod .card {
    min-width: 0;
  }
  body.page-category .grid-prod .card .thumb-wrap {
    box-shadow: none;
  }
  body.page-category .grid-prod .card .thumb {
    aspect-ratio: 2 / 3;
  }
  body.page-category .grid-prod .card .info {
    padding: 9px 4px 12px;
    gap: 4px;
  }
  body.page-category .grid-prod .card h3 {
    min-height: 2.45em;
    overflow: hidden;
    color: var(--live-ink);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: 0;
    text-transform: none;
  }
  body.page-category .grid-prod .prices {
    gap: 6px;
  }
  body.page-category .grid-prod .price {
    font-size: 0.76rem;
  }
  body.page-category .grid-prod .compare {
    font-size: 0.68rem;
  }
  body.page-category .grid-prod .card-badge {
    top: 6px;
    left: 6px;
    bottom: auto;
    padding: 5px 7px;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }
  body.page-category .grid-prod .card-fav {
    top: 7px;
    right: 7px;
    width: 30px;
    height: 30px;
  }
  body.page-category .grid-prod .card-quick {
    left: 6px;
    right: 6px;
    bottom: 6px;
    min-height: 32px;
    font-size: 0.58rem;
    opacity: 0;
  }
  body.page-category .grid-prod .card:nth-child(7n + 3) {
    grid-column: 1 / -1;
  }
  body.page-category .grid-prod .card:nth-child(7n + 3) .thumb {
    aspect-ratio: 4 / 5.25;
  }
  body.page-category .empty {
    padding: 26px 0;
  }
  body.page-product .pdp-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.page-product .pdp-gallery-stage {
    grid-column: 1;
    min-height: auto;
    aspect-ratio: 3 / 4.05;
  }
  body.page-product .pdp-gallery .thumbs {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 8px;
    padding: 0 2px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  body.page-product .pdp-gallery .thumbs button,
  body.page-product .pdp-gallery .thumbs .pdp-thumb {
    flex: 0 0 82px;
    width: 82px;
    height: 104px;
    border-width: 2px;
    scroll-snap-align: start;
    opacity: 1;
  }
  body.page-product .pdp-gallery .thumbs button.is-active,
  body.page-product .pdp-gallery .thumbs .pdp-thumb.is-active {
    border-color: var(--live-rose, var(--accent));
  }
  body.page-product .pdp-gallery .thumbs::-webkit-scrollbar {
    height: 0;
  }
  body.page-product .pdp-info {
    padding: 22px 16px;
  }
body.page-product .pdp-info h1 {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }
  body.page-product .proc-form--pdp .pdp-cart-row {
    grid-template-columns: 1fr auto;
  }
  body.page-product .pdp-qty-label {
    grid-column: 1 / -1;
  }
body.page-product .proc-form--pdp .pdp-add-btn {
    width: 100%;
  }
}
/* White and Ilvisa rose palette */
@scope (body.theme-rose) {
:scope.store {
  --accent: #c6435c;
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --panel: #fff5f7;
  --line: rgba(198, 67, 92, 0.12);
  --line-strong: rgba(198, 67, 92, 0.22);
  --text: #5b1f2b;
  --muted: #9b5966;
  background: #ffffff;
  color: var(--text);
}
:scope.live-ilvisa-home,
:scope.page-category,
:scope.page-product {
  --live-ink: #641f2e;
  --live-paper: #ffffff;
  --live-cream: #ffffff;
  --live-peach: #f4ccd4;
  --live-rose: #c6435c;
  --live-lime: #dc8798;
  --live-blue: #e9aebb;
  --live-line: rgba(198, 67, 92, 0.12);
  --live-shadow: 0 28px 78px rgba(100, 31, 46, 0.16);
}
.announce {
  background: #ffffff;
  color: #7f2b3c;
  border-bottom-color: rgba(198, 67, 92, 0.12);
}
.style-promo {
  background: #8f2f43;
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}
.style-promo__track span::before {
  background: #f4bdc8;
}
.site-head,
:scope.live-ilvisa-home .site-head,
:scope.page-category .site-head,
:scope.page-product .site-head {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(198, 67, 92, 0.12);
}
:scope.live-ilvisa-home .site-head {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
:scope.live-ilvisa-home .site-head.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 52px rgba(100, 31, 46, 0.12);
}
.nav a,
:scope.live-ilvisa-home .nav a {
  color: #702638;
}
.nav a::after,
.cart-link .badge,
:scope.live-ilvisa-home .cart-link .badge {
  background: #c6435c;
}
.cart-link,
.account-menu-toggle,
.nav-toggle,
:scope.live-ilvisa-home .cart-link,
:scope.live-ilvisa-home .account-menu-toggle,
:scope.live-ilvisa-home .nav-toggle {
  border-color: rgba(198, 67, 92, 0.18);
  background: #ffffff;
  color: #7f2b3c;
  box-shadow: 0 10px 28px rgba(100, 31, 46, 0.08);
}
.search input,
:scope.live-ilvisa-home .search input {
  border-bottom-color: rgba(198, 67, 92, 0.28);
  color: #641f2e;
}
.drawer-panel,
.account-menu-dropdown,
.cat-toolbar,
.contact-card,
.return-card,
.cart-summary,
.checkout-card {
  background: #fffafb;
  border-color: rgba(198, 67, 92, 0.14);
}
.btn,
:scope.live-ilvisa-home .btn,
:scope.live-ilvisa-home .btn.ghost,
.pdp-add-btn {
  border-color: #c6435c;
  background: #c6435c;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(198, 67, 92, 0.2);
}
.btn:hover,
:scope.live-ilvisa-home .btn:hover,
:scope.live-ilvisa-home .hero-slide .btn.ghost:hover {
  background: #a9344a;
  color: #ffffff;
}
:scope.live-ilvisa-home .hero-slider-viewport {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, #6f2435 0%, #c6435c 54%, #8f2f43 100%);
}
:scope.live-ilvisa-home .hero-slide:not(.hero-slide--solid)::before,
:scope.page-category .category-hero-overlay {
  background:
    linear-gradient(90deg, rgba(91, 31, 43, 0.76) 0%, rgba(143, 47, 67, 0.24) 54%, rgba(198, 67, 92, 0.1) 100%),
    linear-gradient(to top, rgba(91, 31, 43, 0.72) 0%, rgba(91, 31, 43, 0.08) 64%);
}
.hero-brow::before,
:scope.live-ilvisa-home .hero-dots button.is-active,
:scope.page-category .category-hero-code::after {
  background: #f4bdc8;
  box-shadow: 0 0 0 6px rgba(198, 67, 92, 0.18);
}
.hero-vibe-marquee {
  background: rgba(255, 255, 255, 0.97);
  color: #641f2e;
  border-top-color: rgba(198, 67, 92, 0.16);
}
.home-live-grid,
.home-story-pill,
:scope.live-ilvisa-home .home-product-toggle,
.category-shop-strip__item,
.pdp-badges span,
:scope.page-product .pdp-size-chip__face {
  background: #ffffff;
  border-color: rgba(198, 67, 92, 0.14);
}
.home-live-grid,
.home-story-pill,
:scope.page-category .cat-toolbar,
:scope.page-category .grid-prod .card .thumb-wrap {
  box-shadow: 0 18px 52px rgba(100, 31, 46, 0.1);
}
.home-live-grid__card,
:scope.live-ilvisa-home .card .thumb-wrap,
:scope.page-product .pdp-gallery-stage {
  background: #fae9ed;
}
.home-live-grid__card::after,
:scope.live-ilvisa-home .collection-tile::after,
:scope.page-category .subcat-card::after {
  background:
    linear-gradient(to top, rgba(91, 31, 43, 0.78), transparent 60%),
    linear-gradient(135deg, rgba(198, 67, 92, 0.24), transparent 48%);
}
:scope.live-ilvisa-home .home-product-toggle:hover,
:scope.live-ilvisa-home .home-product-toggle.is-active,
:scope.page-product .pdp-size-chip-input:checked + .pdp-size-chip__face,
.category-shop-strip__note,
:scope.live-ilvisa-home .strip-more-card,
.card-quick,
:scope.live-ilvisa-home .strip-nav {
  border-color: #c6435c;
  background: #c6435c;
  color: #ffffff;
}
.category-shop-strip {
  background: rgba(198, 67, 92, 0.12);
  border-color: rgba(198, 67, 92, 0.12);
}
.category-shop-strip__note span,
:scope.page-category .category-hero-kicker {
  color: #f7d6dd;
}
.card-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #a9344a;
  border: 1px solid rgba(198, 67, 92, 0.16);
}
:scope.page-product .pdp-info {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(198, 67, 92, 0.1)),
    #fffafb;
  border-color: rgba(198, 67, 92, 0.14);
  box-shadow: 0 24px 70px rgba(100, 31, 46, 0.13);
}
.site-foot.footer--modern {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(244, 189, 200, 0.18), transparent 28%),
    linear-gradient(180deg, #8f2f43 0%, #641f2e 100%);
}
.footer--modern .foot-block {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}
.footer--modern .foot-title::after {
  background: linear-gradient(90deg, #ffffff, #f4bdc8);
}
.site-foot.footer--classic {
  background:
    linear-gradient(180deg, rgba(198, 67, 92, 0.05), transparent 42%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(198, 67, 92, 0.08), transparent 55%),
    #ffffff;
  border-top-color: rgba(198, 67, 92, 0.14);
}
.site-foot.footer--classic .foot-title,
.site-foot.footer--classic .foot-heading,
.site-foot.footer--classic .foot-list a,
.site-foot.footer--classic .foot-copy,
.site-foot.footer--classic .foot-copy a,
.site-foot.footer--classic .foot-contact-link {
  color: #7f2b3c;
}
.wa-float-fab {
  background: #c6435c;
  color: #ffffff;
}
}

body.live-ilvisa-home .site-head {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.live-ilvisa-home .site-head.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(198, 67, 92, 0.14);
  box-shadow: 0 18px 52px rgba(100, 31, 46, 0.12);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
body.live-ilvisa-home .site-head:not(.is-scrolled) .brand,
body.live-ilvisa-home .site-head:not(.is-scrolled) .brand-text,
body.live-ilvisa-home .site-head:not(.is-scrolled) .nav a,
body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-link,
body.live-ilvisa-home .site-head:not(.is-scrolled) .account-menu-toggle,
body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-icon-wrap,
body.live-ilvisa-home .site-head:not(.is-scrolled) .account-menu-icon,
body.live-ilvisa-home .site-head:not(.is-scrolled) .search input {
  color: #ffffff;
}
body.live-ilvisa-home .site-head:not(.is-scrolled) .search input {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-link,
body.live-ilvisa-home .site-head:not(.is-scrolled) .account-menu-toggle,
body.live-ilvisa-home .site-head:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

@media (min-width: 1024px) {
  body.live-ilvisa-home .site-head {
    top: 75px;
  }
  body.live-ilvisa-home .site-head:not(.is-scrolled) .nav {
    border-top-color: rgba(255, 255, 255, 0.18);
  }
  body.live-ilvisa-home.desktop-header-separate .site-head,
  body.live-ilvisa-home.desktop-header-separate .site-head:not(.is-scrolled) {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
  }
  body.live-ilvisa-home.desktop-header-separate .site-head.is-scrolled {
    position: fixed;
    top: 0;
  }
  body.live-ilvisa-home.desktop-header-separate .site-head .brand,
  body.live-ilvisa-home.desktop-header-separate .site-head .brand-text,
  body.live-ilvisa-home.desktop-header-separate .site-head .nav a,
  body.live-ilvisa-home.desktop-header-separate .site-head .cart-link,
  body.live-ilvisa-home.desktop-header-separate .site-head .account-menu-toggle,
  body.live-ilvisa-home.desktop-header-separate .site-head .cart-icon-wrap,
  body.live-ilvisa-home.desktop-header-separate .site-head .account-menu-icon,
  body.live-ilvisa-home.desktop-header-separate .site-head .search input {
    color: var(--live-ink);
    text-shadow: none;
    filter: none;
  }
  body.live-ilvisa-home.desktop-header-separate .site-head .search input {
    border-bottom-color: var(--live-line);
  }
  body.live-ilvisa-home.desktop-header-separate .site-head .cart-link,
  body.live-ilvisa-home.desktop-header-separate .site-head .account-menu-toggle,
  body.live-ilvisa-home.desktop-header-separate .site-head .nav-toggle {
    border-color: var(--live-line);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(36, 28, 21, 0.08);
  }
  body.live-ilvisa-home.desktop-header-separate .site-head .nav {
    border-top-color: var(--live-line);
  }
}

@media (max-width: 1023px) {
  body.live-ilvisa-home .site-head {
    top: 42px;
  }
  body.live-ilvisa-home .site-head.is-scrolled {
    top: 0;
  }
  body.live-ilvisa-home .site-head:not(.is-scrolled) .brand,
  body.live-ilvisa-home .site-head:not(.is-scrolled) .brand-text,
  body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-link,
  body.live-ilvisa-home .site-head:not(.is-scrolled) .account-menu-toggle,
  body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-icon-wrap,
  body.live-ilvisa-home .site-head:not(.is-scrolled) .account-menu-icon {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(91, 31, 43, 0.34);
    filter: drop-shadow(0 2px 6px rgba(91, 31, 43, 0.24));
  }
  body.live-ilvisa-home .site-head:not(.is-scrolled) .nav-toggle-line {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(91, 31, 43, 0.28);
  }
  body.live-ilvisa-home .site-head .brand,
  body.live-ilvisa-home .brand-text,
  body.live-ilvisa-home .cart-link,
  body.live-ilvisa-home .account-menu-toggle,
  body.live-ilvisa-home .cart-icon-wrap,
  body.live-ilvisa-home .account-menu-icon {
    color: #8f2f43;
    text-shadow: none;
    filter: none;
  }
  body.live-ilvisa-home .site-head.is-scrolled .nav-toggle-line {
    background: #8f2f43;
    box-shadow: none;
  }
}

body.theme-original {
  --accent: #9a7b5c;
  --muted: #7a7268;
}
body.theme-original.live-ilvisa-home .site-head.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(23, 23, 23, 0.1);
  box-shadow: 0 18px 52px rgba(36, 28, 21, 0.12);
}
@media (max-width: 1023px) {
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .brand,
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .brand-text,
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .cart-link,
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .account-menu-toggle,
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .cart-icon-wrap,
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .account-menu-icon {
    color: #171717;
  }
  body.theme-original.live-ilvisa-home .site-head.is-scrolled .nav-toggle-line {
    background: #171717;
  }
}

@media (max-width: 1023px) {
  body.store:not(.live-ilvisa-home) .site-head {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 52px rgba(36, 28, 21, 0.08);
  }
  body.store:not(.live-ilvisa-home) .site-head .inner {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-rows: 64px;
    gap: 0 10px;
    padding: 4px 18px;
  }
  body.store:not(.live-ilvisa-home) .site-head .head-menu-search .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    padding: 8px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--live-ink, var(--text));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.store:not(.live-ilvisa-home) .nav-toggle-bars {
    width: 26px;
    height: 18px;
    gap: 4px;
  }
  body.store:not(.live-ilvisa-home) .nav-toggle-line {
    flex: 0 0 2px;
    height: 2px;
    background: currentColor;
    box-shadow: none;
  }
  body.store:not(.live-ilvisa-home) .site-head .tools {
    gap: 8px;
  }
  body.store:not(.live-ilvisa-home) .cart-link {
    width: 32px;
    height: 38px;
    margin: 0;
    padding: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--live-ink, var(--text));
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.store:not(.live-ilvisa-home) .cart-icon-wrap {
    color: inherit;
    filter: none;
  }
  body.store:not(.live-ilvisa-home) .cart-icon {
    width: 22px;
    height: 22px;
  }
  body.store:not(.live-ilvisa-home) .cart-link .badge {
    display: none;
  }
}

@media (min-width: 1024px) {
  .site-head .cart-link {
    position: relative;
    gap: 0;
    min-width: 48px;
    min-height: 42px;
    padding: 9px 20px 9px 10px;
  }
  .site-head .cart-link .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--live-ink, #171717);
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: none;
  }
  body.live-ilvisa-home .site-head:not(.is-scrolled) .cart-link .badge {
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(23, 23, 23, 0.28);
    color: #ffffff;
  }
  body.live-ilvisa-home .site-head.is-scrolled .cart-link .badge,
  body.live-ilvisa-home.desktop-header-separate .site-head .cart-link .badge {
    border-color: var(--live-ink, #171717);
    background: rgba(255, 255, 255, 0.88);
    color: var(--live-ink, #171717);
  }
}

@media (min-width: 1024px) {
  body.live-ilvisa-home .nav a {
    font-size: 0.78rem;
  }
}

body.live-ilvisa-home .section--collections-home {
  margin-top: -80px;
}
body.live-ilvisa-home .section--collections-home .section-head {
  margin-bottom: 18px;
}
body.live-ilvisa-home .section--collections-home .collections-grid {
  gap: 8px;
  border: 0;
  background: transparent;
}
body.live-ilvisa-home .section--collections-home .collection-tile,
body.live-ilvisa-home .section--collections-home .collection-tile:nth-child(4n + 1) {
  min-height: clamp(410px, 40vw, 610px);
}
body.live-ilvisa-home .section--collections-home .collection-tile-bg {
  transform: scale(1.08);
}
body.live-ilvisa-home .section--collections-home .collection-tile:hover .collection-tile-bg {
  transform: scale(1.14);
}
body.live-ilvisa-home .section--collections-home .collection-tile-label {
  padding: clamp(20px, 2.2vw, 32px);
  font-size: clamp(0.95rem, 1.35vw, 1.22rem);
  letter-spacing: 0.13em;
}

.home-benefits {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: -64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(46px, 6vw, 82px) max(24px, calc((100vw - 1440px) / 2 + 34px));
  border-top: 1px solid rgba(198, 67, 92, 0.13);
  border-bottom: 1px solid rgba(198, 67, 92, 0.13);
  background: #ffffff;
}
body.live-ilvisa-home .site-main:has(> .home-benefits:last-child) {
  padding-bottom: 20px;
}
.home-benefit {
  min-width: 0;
  padding: 0 clamp(18px, 3vw, 48px);
  text-align: center;
}
.home-benefit + .home-benefit {
  border-left: 1px solid rgba(23, 23, 23, 0.08);
}
.home-benefit__icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: var(--live-ink, #171717);
}
.home-benefit__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-benefit h3 {
  margin: 0 0 8px;
  color: var(--live-ink, #171717);
  font-size: clamp(0.95rem, 1.25vw, 1.18rem);
  font-weight: 800;
  line-height: 1.25;
}
.home-benefit p {
  margin: 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(0.8rem, 1vw, 0.96rem);
  line-height: 1.5;
}

@media (max-width: 780px) {
  body.live-ilvisa-home .section--collections-home {
    margin-top: -28px;
  }
  body.live-ilvisa-home .section--collections-home .section-head {
    margin-bottom: 10px;
  }
  body.live-ilvisa-home .section--collections-home .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  body.live-ilvisa-home .section--collections-home .collection-tile,
  body.live-ilvisa-home .section--collections-home .collection-tile:nth-child(4n + 1) {
    min-height: clamp(285px, 82vw, 390px);
  }
  body.live-ilvisa-home .section--collections-home .collection-tile-label {
    padding: 16px 14px;
    font-size: clamp(0.82rem, 4vw, 1rem);
  }
  .home-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
    padding: 36px 16px;
    row-gap: 34px;
  }
  .home-benefit {
    padding: 0 12px;
  }
  .home-benefit + .home-benefit {
    border-left: 0;
  }
  .home-benefit:nth-child(even) {
    border-left: 1px solid rgba(23, 23, 23, 0.08);
  }
  .home-benefit__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
}

/* Modern footer: editorial white layout */
.site-foot.footer--modern {
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.055), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #171717 0%, #201b19 100%);
  color: #ffffff;
  text-align: left;
}
.footer--modern .foot-inner {
  width: min(100%, 1480px);
  max-width: none;
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 78px) 34px;
  align-items: stretch;
}
.footer--modern .foot-top {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.72fr);
  gap: clamp(58px, 8vw, 140px);
  align-items: start;
}
.footer--modern .foot-columns,
.footer--modern .foot-columns--wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: clamp(26px, 4vw, 72px);
  justify-content: stretch;
}
.footer--modern .foot-block {
  width: auto;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}
.footer--modern .foot-heading {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: left;
}
.footer--modern .foot-list {
  align-items: flex-start;
  gap: 2px;
  margin: 0;
}
.footer--modern .foot-list li {
  justify-content: flex-start;
}
.footer--modern .foot-list a {
  width: auto;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: left;
  text-transform: none;
}
.footer--modern .foot-list a:hover {
  color: #ffffff;
  background: transparent;
  transform: translateX(3px);
}
.footer--modern .foot-brand {
  width: 100%;
  max-width: 420px;
  margin: 0;
  text-align: left;
}
.footer--modern .foot-title {
  max-width: none;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-align: left;
}
.footer--modern .foot-title::after {
  display: none;
}
.footer--modern .foot-brand-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.75;
}
.footer--modern .foot-tagline {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}
.footer--modern .foot-contact {
  justify-content: flex-start;
  gap: 8px 20px;
  margin-top: 20px;
}
.footer--modern .foot-contact-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}
.footer--modern a.foot-contact-link:hover {
  color: #ffffff;
}
.footer--modern .foot-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer--modern .foot-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}
.footer--modern .foot-socials a:hover {
  color: #171717;
  background: #ffffff;
}
.footer--modern .foot-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer--modern .foot-trust {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 26px;
  width: 100%;
  max-width: none;
  margin: 42px 0 0;
}
.footer--modern .foot-payments {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 32px;
}
.footer--modern .foot-payment {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.footer--modern .foot-payment--master {
  position: relative;
  width: 36px;
  height: 22px;
}
.footer--modern .foot-payment--master i {
  position: absolute;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e64632;
}
.footer--modern .foot-payment--master i:first-child {
  left: 2px;
}
.footer--modern .foot-payment--master i:last-child {
  right: 2px;
  background: #ef9f35;
  opacity: 0.92;
}
.footer--modern .foot-payment--troy {
  color: #d8f5f4;
  letter-spacing: 0.02em;
}
.footer--modern .foot-etbis {
  width: 74px;
  margin: 0;
  padding: 5px;
  background: #ffffff;
  border-radius: 4px;
}
.footer--modern .foot-etbis {
  width: 104px;
  padding: 7px;
}
.footer--modern .foot-meta {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px clamp(24px, 5vw, 78px);
  border: 0;
  background: #171717;
  text-align: left;
}
.footer--modern .foot-copy {
  width: min(100%, 1324px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.footer--modern .foot-copy a {
  color: rgba(255, 255, 255, 0.68);
}
.footer--modern .foot-copy a:hover {
  color: #f4bdc8;
}
.footer--modern .foot-copy-name {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .footer--modern .foot-inner {
    padding: 46px 22px 28px;
  }
  .footer--modern .foot-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer--modern .foot-brand {
    max-width: 620px;
    grid-row: 1;
  }
  .footer--modern .foot-columns,
  .footer--modern .foot-columns--wide {
    grid-row: 2;
  }
  .footer--modern .foot-trust {
    justify-content: flex-start;
    margin-top: 34px;
  }
}

@media (max-width: 600px) {
  .site-foot.footer--modern {
    padding: 0;
    text-align: left;
  }
  .footer--modern .foot-inner {
    padding: 38px 18px 24px;
  }
  .footer--modern .foot-top {
    gap: 34px;
  }
  .footer--modern .foot-brand,
  .footer--modern .foot-title,
  .footer--modern .foot-tagline {
    text-align: left;
  }
  .footer--modern .foot-title {
    margin-right: 0;
    margin-left: 0;
    font-size: 1.08rem;
  }
  .footer--modern .foot-brand-copy {
    font-size: 0.82rem;
  }
  .footer--modern .foot-contact {
    justify-content: flex-start;
  }
  .footer--modern .foot-columns,
  .footer--modern .foot-columns--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .footer--modern .foot-block {
    padding: 0;
    text-align: left;
  }
  .footer--modern .foot-block:nth-child(3) {
    grid-column: 1 / -1;
  }
  .footer--modern .foot-heading {
    margin-bottom: 13px;
    font-size: 0.72rem;
    text-align: left;
  }
  .footer--modern .foot-list {
    align-items: flex-start;
  }
  .footer--modern .foot-list li {
    justify-content: flex-start;
  }
  .footer--modern .foot-list a {
    padding: 6px 0;
    font-size: 0.76rem;
    text-align: left;
  }
  .footer--modern .foot-trust {
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
  }
  .footer--modern .foot-etbis {
    width: 92px;
  }
  .footer--modern .foot-meta {
    padding: 18px;
  }
  .footer--modern .foot-copy {
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 0.6rem;
    text-align: left;
  }
}

/* Category page: compact hero and quiet filters */
@media (min-width: 681px) {
  body.page-category .category-hero {
    min-height: 210px;
    max-height: 250px;
    background-position: center 30%;
  }
  body.page-category .category-hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.7) 0%, rgba(12, 10, 9, 0.28) 46%, rgba(12, 10, 9, 0.12) 100%),
      linear-gradient(to top, rgba(12, 10, 9, 0.55), rgba(12, 10, 9, 0.06));
  }
  body.page-category .category-hero-inner {
    min-height: 210px;
    justify-content: center;
    padding: 28px clamp(28px, 4vw, 58px);
  }
  body.page-category .breadcrumb--hero {
    margin-bottom: 13px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  body.page-category .category-hero-title {
    max-width: none;
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 3.1rem);
    line-height: 1;
    letter-spacing: 0.025em;
  }
  body.page-category .category-hero-count {
    margin: 10px 0 0;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }
  body.page-category .category-main {
    padding-top: 22px;
  }
}

@media (min-width: 900px) {
  body.page-category .cat-layout--with-sidebar {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 38px);
  }
}
body.page-category .cat-layout__aside {
  top: 128px;
}
body.page-category .cat-toolbar {
  gap: 18px;
  padding: 4px 18px 18px 0;
  border: 0;
  border-right: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.page-category .cat-toolbar-fieldset + .cat-toolbar-fieldset {
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}
body.page-category .cat-toolbar-legend,
body.page-category .cat-toolbar-fieldset.cat-toolbar-sort .cat-toolbar-legend {
  margin-bottom: 9px;
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
body.page-category .bc-select-trigger {
  min-height: 38px;
  padding: 7px 8px 7px 11px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}
body.page-category .bc-select-trigger:hover,
body.page-category .bc-select.is-open > .bc-select-trigger {
  border-color: rgba(23, 23, 23, 0.28);
  box-shadow: none;
}
body.page-category .bc-select-arrow {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
}
body.page-category .bc-select-panel {
  border-radius: 2px;
  border-color: rgba(23, 23, 23, 0.12);
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.12);
}
body.page-category .cat-toolbar-filter {
  gap: 10px;
}
body.page-category .cat-toolbar-money {
  gap: 4px !important;
}
body.page-category .cat-toolbar-label > span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}
body.page-category .cat-toolbar-money input {
  padding: 9px 10px;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
}
body.page-category .cat-toolbar-money input:focus {
  outline: 0;
  border-bottom-color: #171717;
}
body.page-category .cat-toolbar-checkbox {
  gap: 8px;
  margin-top: 2px;
  color: rgba(23, 23, 23, 0.76);
  font-size: 0.75rem;
}
body.page-category .cat-toolbar-checkbox input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}
body.page-category .cat-toolbar-checkbox-grid {
  gap: 7px 12px;
}
body.page-category .cat-toolbar-beden-fieldset {
  margin-top: 4px;
  padding-top: 15px;
}
body.page-category .cat-toolbar-beden-fieldset > .muted {
  display: none;
}
body.page-category .cat-toolbar-submit {
  gap: 8px;
}
body.page-category .cat-toolbar-submit .btn {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 2px;
  box-shadow: none;
  font-size: 0.65rem;
}

@media (max-width: 680px) {
  body.page-category .cat-toolbar {
    padding: 14px 16px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    background: rgba(255, 255, 255, 0.99);
  }
  body.page-category .cat-toolbar-fieldset + .cat-toolbar-fieldset {
    padding-top: 14px;
  }
  body.page-category .cat-mobile-tool {
    min-height: 40px;
    font-size: 0.69rem;
    font-weight: 700;
  }
}
.header-search-link {
  display: none;
}

.header-search-panel {
  display: none;
}

@media (max-width: 680px) {
  .site-head .header-search-link {
    display: grid;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 38px;
    padding: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--live-ink, var(--text));
    box-shadow: none;
    cursor: pointer;
  }

  .site-head .header-search-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  body.live-ilvisa-home .site-head:not(.is-scrolled) .header-search-link {
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
  }

  .header-search-panel {
    position: relative;
    z-index: 99;
    display: block;
    width: 100%;
    padding: 7px 12px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(23, 23, 23, 0.08);
  }

  .header-search-panel[hidden] {
    display: none;
  }

  .header-search-form {
    display: flex;
    height: 38px;
    align-items: center;
    border: 1px solid rgba(23, 23, 23, 0.14);
    background: #ffffff;
  }

  .header-search-form input {
    flex: 1;
    min-width: 0;
    height: 36px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    font-size: 0.76rem;
  }

  .header-search-form button {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 36px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
  }

  .header-search-form svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  body.page-category .category-hero {
    min-height: 44px;
    height: 44px;
  }

  body.page-category .category-hero::before {
    display: none;
  }

  body.page-category .category-hero-inner {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
  }

  body.page-category .breadcrumb--hero {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    color: rgba(23, 23, 23, 0.58);
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: none;
  }

  body.page-category .breadcrumb--hero a {
    color: inherit;
  }

  body.page-category .breadcrumb--hero > span:last-child {
    color: #171717;
    font-weight: 700;
    text-transform: uppercase;
  }

  body.page-category .breadcrumb-separator {
    color: rgba(23, 23, 23, 0.48);
    font-size: 1rem;
    font-weight: 400;
  }

  body.page-category .category-hero-title,
  body.page-category .category-hero-count {
    display: none;
  }
}

/* Category listing final layout: prevent sticky overlap and normalize card sizing */
@media (min-width: 681px) {
  body.page-category .grid-prod {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 34px);
  }

  body.page-category .grid-prod .card {
    grid-column: auto;
  }

  body.page-category .grid-prod .card:nth-child(n + 2) {
    grid-column: auto;
  }

  body.page-category .grid-prod .card .thumb {
    aspect-ratio: 4 / 5.35;
  }

  body.page-category .grid-prod .card:nth-child(n + 2) .thumb {
    aspect-ratio: 4 / 5.35;
  }

  body.page-category .grid-prod .card h3 {
    min-height: 2.45em;
  }

  body.page-category .grid-prod .card:first-child {
    grid-column: span 2;
  }

  body.page-category .grid-prod .card:first-child .thumb {
    aspect-ratio: 8 / 5.35;
  }
}

@media (max-width: 680px) {
  body.page-category .cat-layout__aside {
    position: static;
    top: auto;
    z-index: auto;
    margin: 0 -16px 10px;
  }

  body.page-category .cat-layout__main {
    padding-top: 0;
  }

  body.page-category .grid-prod {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 8px;
    margin-right: -10px;
    margin-left: -10px;
  }

  body.page-category .grid-prod .card {
    grid-column: auto;
  }

  body.page-category .grid-prod .card .thumb {
    aspect-ratio: 3 / 4.55;
  }

  body.page-category .grid-prod .card:nth-child(3n) {
    grid-column: 1 / -1;
  }

  body.page-category .grid-prod .card:nth-child(3n) .thumb {
    aspect-ratio: 4 / 5.25;
  }

  body.page-category .grid-prod .card .info {
    padding: 10px 5px 14px;
  }

  body.page-category .grid-prod .card h3 {
    min-height: 2.35em;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  body.page-category .grid-prod .price {
    font-size: 0.84rem;
  }

  body.page-category .grid-prod .compare {
    font-size: 0.72rem;
  }
}

@media (max-width: 899px) {
  .site-head .header-search-link {
    display: grid;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 38px;
    padding: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--live-ink, var(--text));
    box-shadow: none;
    cursor: pointer;
  }

  .site-head .header-search-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  body.page-category .category-hero {
    min-height: 44px;
    height: 44px;
  }

  body.page-category .category-hero::before {
    display: none;
  }

  body.page-category .category-hero-inner {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
  }

  body.page-category .breadcrumb--hero {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    color: rgba(23, 23, 23, 0.58);
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: none;
  }

  body.page-category .breadcrumb--hero > span:last-child {
    color: #171717;
    font-weight: 700;
    text-transform: uppercase;
  }

  body.page-category .category-hero-title,
  body.page-category .category-hero-count {
    display: none;
  }

  body.page-category .cat-layout {
    display: block;
  }

  body.page-category .cat-layout__aside {
    position: static;
    top: auto;
    z-index: auto;
    margin: 0 -16px 12px;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  }

  body.page-category .cat-mobile-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    overflow: visible;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
  }

  body.page-category .cat-mobile-tool {
    min-height: 43px;
    border: 0;
    border-right: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 0;
    background: #ffffff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: none;
  }

  body.page-category .cat-mobile-tool:last-child {
    border-right: 0;
  }

  body.page-category .cat-layout__main {
    padding-top: 0;
  }

  body.page-category .grid-prod {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
    margin-right: -12px;
    margin-left: -12px;
  }

  body.page-category .grid-prod .card,
  body.page-category .grid-prod .card:nth-child(n) {
    grid-column: auto;
    min-width: 0;
  }

  body.page-category .grid-prod .card:nth-child(3n) {
    grid-column: 1 / -1;
  }

  body.page-category .grid-prod .card .thumb,
  body.page-category .grid-prod .card:nth-child(n) .thumb {
    aspect-ratio: 3 / 4.9;
  }

  body.page-category .grid-prod .card:nth-child(3n) .thumb {
    aspect-ratio: 4 / 5.75;
  }

  body.page-category .grid-prod .card .info {
    padding: 7px 5px 10px;
  }

  body.page-category .grid-prod .card h3 {
    min-height: 2.15em;
    font-size: clamp(0.76rem, 3vw, 0.9rem);
    line-height: 1.15;
  }

  body.page-category .grid-prod .price {
    font-size: clamp(0.86rem, 3.5vw, 1.04rem);
    line-height: 1.1;
  }

  body.page-category .grid-prod .compare {
    display: block;
    margin-top: 2px;
    font-size: clamp(0.7rem, 2.8vw, 0.84rem);
    line-height: 1.05;
  }

  body.page-category .grid-prod .card-badge {
    top: 8px;
    left: 8px;
    padding: 7px 10px;
    font-size: 0.62rem;
  }
}

@media (max-width: 1023px) {
  body.live-ilvisa-home .tools .account-menu {
    display: none !important;
  }
}

/* Mobile fixes: keep category tools and ETBIS trust badge in a predictable flow. */
@media (max-width: 899px) {
  body.page-category .cat-layout__aside {
    position: relative;
    z-index: 30;
    margin-bottom: 12px;
  }

  body.page-category .cat-mobile-tools {
    position: relative;
    z-index: 2;
  }

  body.page-category .cat-toolbar {
    position: static !important;
    inset: auto !important;
    width: 100%;
    margin: 0 0 14px !important;
    padding: 14px 14px 16px !important;
    border: 1px solid rgba(23, 23, 23, 0.09) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(23, 23, 23, 0.08) !important;
  }

  body.page-category .cat-toolbar.is-sort-open,
  body.page-category .cat-toolbar.is-filter-open {
    display: grid !important;
  }

  body.page-category .cat-toolbar .bc-select-panel {
    z-index: 120;
    max-height: 220px;
  }
}

@media (max-width: 600px) {
  .footer--modern .foot-trust,
  .site-foot .foot-trust {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px;
    margin: 28px auto 0;
  }

  .footer--modern .foot-payments {
    width: 100%;
    justify-content: center;
  }

  .footer--modern .foot-etbis,
  .site-foot .foot-etbis {
    width: min(42vw, 150px) !important;
    min-width: 118px;
    max-width: 150px;
    margin: 0 auto !important;
    padding: 8px !important;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }

  .footer--modern .foot-etbis a,
  .site-foot .foot-etbis a {
    display: block;
    width: 100%;
  }

  .footer--modern .foot-etbis img,
  .site-foot .foot-etbis img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .site-foot.footer--modern .foot-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(118px, 0.82fr);
    column-gap: 18px;
    row-gap: 28px;
  }

  .site-foot.footer--modern .foot-top,
  .site-foot.footer--modern .foot-columns,
  .site-foot.footer--modern .foot-columns--wide {
    display: contents;
  }

  .site-foot.footer--modern .foot-brand {
    grid-column: 1 / -1;
  }

  .site-foot.footer--modern .foot-block {
    min-width: 0;
  }

  .site-foot.footer--modern .foot-block:nth-child(3) {
    grid-column: 1;
  }

  .site-foot.footer--modern .foot-trust {
    grid-column: 2;
    align-self: start;
    width: 100%;
    margin: 34px 0 0 !important;
    gap: 10px;
  }

  .site-foot.footer--modern .foot-etbis {
    order: 1;
    width: min(31vw, 136px) !important;
    min-width: 112px;
    max-width: 136px;
    padding: 7px !important;
  }

  .site-foot.footer--modern .foot-payments {
    order: 2;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .site-foot.footer--modern .foot-payment {
    font-size: 0.58rem;
  }

  .site-foot.footer--modern .foot-meta {
    margin-top: 0;
  }
}
