/* Nurfia-inspired storefront — phase 1: header + home hero */

.theme-nurfia {
  --nurfia-ink: #000000;
  --nurfia-white: #ffffff;
  --nurfia-muted: rgba(255, 255, 255, 0.78);
  --nurfia-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --nurfia-serif: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --nurfia-display: var(--nurfia-serif);
  --nurfia-header-h: 108px;
  --nurfia-topstrip-h: 36px;
  --nurfia-control: 42px;
  --nurfia-control-gap: 14px;
  --nurfia-control-border: rgba(10, 10, 10, 0.12);
  --nurfia-logo-h: 38px;
  --nurfia-logo-h-mobile: 34px;
  --nurfia-logo-brand-gap: 14px;
  --soft: #ffffff;
  --bg: #ffffff;
  --header-bg: #ffffff;
}

html.theme-nurfia,
html.theme-nurfia body,
body.theme-nurfia,
.theme-nurfia .page,
body.site-body.theme-nurfia {
  background-color: #ffffff;
}

.theme-nurfia body,
.theme-nurfia {
  font-family: var(--nurfia-sans);
}

/* ── Home layout ── */
.theme-nurfia .page {
  padding-top: var(--nurfia-header-h);
}

.theme-nurfia .header-shell--overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 300;
  background: var(--nurfia-white);
  box-shadow: 0 4px 24px rgba(10, 10, 10, 0.06);
  min-height: auto;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  transition: background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) {
  background: transparent;
  box-shadow: none;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

body.page-home.theme-nurfia .header-shell--overlay.is-scrolled {
  background: var(--nurfia-white);
  box-shadow: 0 4px 24px rgba(10, 10, 10, 0.06);
  border-bottom-color: rgba(10, 10, 10, 0.08);
}

.theme-nurfia .header-shell .topstrip {
  background: var(--nurfia-ink);
}

/* ── Top strip (black bar) ── */
.theme-nurfia .header-shell--overlay .topstrip {
  background: var(--nurfia-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-nurfia .header-shell--overlay .topstrip .topstrip-ilink,
.theme-nurfia .header-shell--overlay .topstrip .pill-select span,
.theme-nurfia .header-shell--overlay .topstrip .pill-select .pill-select__label {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-nurfia .header-shell--overlay .topstrip .row {
  align-items: center;
  min-height: var(--nurfia-topstrip-h);
  padding: 0;
}

.theme-nurfia .header-shell--overlay .topstrip .topstrip-ilink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--nurfia-topstrip-h);
  padding: 0 2px;
  line-height: 1;
}

.theme-nurfia .header-shell--overlay .topstrip .pill-select .pill-select__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--nurfia-topstrip-h);
  padding: 0 12px;
  line-height: 1;
}

.theme-nurfia .header-shell--overlay .pill-select__chev {
  opacity: 0.75;
}

.theme-nurfia .header-shell--overlay .topstrip .topstrip-ilink:hover,
.theme-nurfia .header-shell--overlay .topstrip .topstrip-ilink:focus-visible {
  color: var(--nurfia-white);
}

.theme-nurfia .header-shell--overlay .topstrip .topstrip-ilink::after,
.theme-nurfia .header-shell--overlay .topstrip .controls .pill-select::after {
  background: var(--nurfia-white);
}

.theme-nurfia .header-shell--overlay .topstrip-sep,
.theme-nurfia .header-shell--overlay .topstrip-tail::before {
  background: rgba(255, 255, 255, 0.18);
}

.theme-nurfia .header-shell--overlay .topstrip-sep {
  align-self: center;
  margin: 0 10px;
}

.theme-nurfia .header-shell--overlay .topstrip-ico {
  display: none;
}

.theme-nurfia .topstrip-promo {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 20px;
  min-height: var(--nurfia-topstrip-h);
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

@media (max-width: 980px) {
  .theme-nurfia .topstrip-promo {
    display: none;
  }
}

/* ── Main header (transparent over hero on home → solid on scroll) ── */
.theme-nurfia .header-shell--overlay .mainhdr {
  background: var(--nurfia-white);
  border-bottom: none;
  transition: background 0.32s ease;
}

body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr {
  background: transparent;
}

body.page-home.theme-nurfia .header-shell--overlay.is-scrolled .mainhdr {
  background: var(--nurfia-white);
}

/* White logo / nav / icons while hero is visible behind header (home only) */
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .logo-wordmark,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-nav__link,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .burger,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > a.iconbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > button.iconbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > .header-cart > a.iconbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia .garage.garage--account,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-search-btn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__actions.actions--nurfia > a.iconbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__actions.actions--nurfia > button.iconbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-roundbtn,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__logo {
  color: var(--nurfia-white);
  transition: color 0.32s ease, opacity 0.18s ease;
}

body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-nav__link:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-nav__link:focus-visible,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .burger:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > a.iconbtn:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > button.iconbtn:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia > .header-cart > a.iconbtn:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-desktop .actions--nurfia .garage.garage--account:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__actions.actions--nurfia > a.iconbtn:hover,
body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__actions.actions--nurfia > button.iconbtn:hover {
  color: var(--nurfia-white);
  opacity: 0.72;
}

body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .logo--custom .site-header-logo__img {
  filter: brightness(0) invert(1);
  transition: filter 0.32s ease;
}

body.page-home.theme-nurfia .header-shell--overlay.is-scrolled .logo--custom .site-header-logo__img {
  filter: none;
}

/* Home: hero full-bleed behind fixed header */
body.page-home.theme-nurfia .page {
  padding-top: 0;
}

body.page-home.theme-nurfia .hero-cine__inner {
  padding-top: calc(var(--nurfia-header-h) + 24px);
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .search,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .brand > .garage {
  display: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .row {
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  min-height: calc(var(--nurfia-control) + 24px);
  box-sizing: border-box;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  gap: var(--nurfia-logo-brand-gap);
  min-height: var(--nurfia-control);
}

/* Inline center nav (Nurfia) */
.mainhdr-nav {
  display: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-width: 0;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: var(--nurfia-control);
  padding: 0 14px;
  color: var(--nurfia-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__link:hover,
.theme-nurfia .header-shell--overlay .mainhdr-nav__link:focus-visible {
  color: var(--nurfia-ink);
  opacity: 0.72;
  outline: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__chev {
  flex-shrink: 0;
  opacity: 0.8;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__drop {
  position: relative;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 8px 0;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__drop:hover .mainhdr-nav__panel,
.theme-nurfia .header-shell--overlay .mainhdr-nav__drop:focus-within .mainhdr-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__panel-link {
  display: block;
  padding: 9px 18px;
  color: var(--nurfia-ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.theme-nurfia .header-shell--overlay .mainhdr-nav__panel-link:hover,
.theme-nurfia .header-shell--overlay .mainhdr-nav__panel-link:focus-visible {
  background: rgba(10, 10, 10, 0.04);
  outline: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .burger {
  display: grid;
  place-items: center start;
  flex: 0 0 var(--nurfia-control);
  width: var(--nurfia-control);
  height: var(--nurfia-control);
  min-width: var(--nurfia-control);
  min-height: var(--nurfia-control);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-ink);
  align-self: center;
  line-height: 0;
  -webkit-appearance: none;
  appearance: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .burger:hover {
  opacity: 0.65;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .burger svg,
.theme-nurfia .header-shell--overlay .mainhdr-search-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Hamburger çizgileri: üst şeritteki ilk link (Sipariş Takibi) ile sol hizada */
.theme-nurfia .header-shell--overlay .mainhdr-desktop .burger svg {
  margin-left: calc(2px - 20px * 4 / 24);
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .logo.logo--header {
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  line-height: 0;
  height: var(--nurfia-control);
  min-height: var(--nurfia-control);
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .logo--custom .site-header-logo__img {
  display: block;
  flex-shrink: 0;
  height: var(--nurfia-logo-h);
  max-height: var(--nurfia-control);
  max-width: none;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.theme-nurfia .header-shell--overlay .logo-wordmark {
  font-family: var(--nurfia-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nurfia-ink);
  line-height: 1;
  white-space: nowrap;
}

.theme-nurfia .header-shell--overlay .logo--custom .site-header-logo__img {
  filter: none;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions .garage--account .garage-txt {
  display: none;
}

/* Ghost outline icons + black count badges (Nurfia header) */
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia {
  align-items: center;
  gap: var(--nurfia-control-gap);
  flex-shrink: 0;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-account,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn.garage--account {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--nurfia-control);
  width: var(--nurfia-control);
  height: var(--nurfia-control);
  min-width: var(--nurfia-control);
  min-height: var(--nurfia-control);
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > button.iconbtn,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart > a.iconbtn,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .garage.garage--account,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > button.iconbtn {
  position: relative;
  width: var(--nurfia-control);
  height: var(--nurfia-control);
  min-width: var(--nurfia-control);
  min-height: var(--nurfia-control);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-ink);
  box-shadow: none;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn:hover,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > button.iconbtn:hover,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart > a.iconbtn:hover,
.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .garage.garage--account:hover,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn:hover,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > button.iconbtn:hover {
  border: none;
  background: transparent;
  color: var(--nurfia-ink);
  opacity: 0.65;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .garage--account,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia .garage--account {
  justify-content: center;
  margin-left: 0;
  gap: 0;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .garage--account .garage-ico,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia .garage--account .garage-ico {
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  display: grid;
  place-items: center;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia svg,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia svg {
  width: 20px;
  height: 20px;
  display: block;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .badge,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia .badge {
  top: -2px;
  right: -4px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border: none;
  border-radius: 999px;
  background: var(--nurfia-ink);
  color: var(--nurfia-white);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .header-account {
  order: 3;
}

.theme-nurfia .header-shell--overlay .mainhdr-search-btn,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions .mainhdr-search-btn {
  display: grid;
  place-items: center;
  order: 1;
  flex: 0 0 var(--nurfia-control);
  width: var(--nurfia-control);
  height: var(--nurfia-control);
  min-width: var(--nurfia-control);
  min-height: var(--nurfia-control);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--nurfia-ink);
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn[data-header-wishlist-btn],
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn[data-header-wishlist-btn] {
  order: 2;
}

.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn.garage--account {
  order: 3;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn[data-header-compare-btn],
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn[data-header-compare-btn] {
  order: 4;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart,
.theme-nurfia .header-shell--overlay .mainhdr-mobile__actions.actions--nurfia > a.iconbtn[data-header-cart-btn] {
  order: 5;
}

@media (min-width: 981px) {
  .theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia .header-account .garage.garage--account {
    min-height: var(--nurfia-control);
    height: var(--nurfia-control);
    width: var(--nurfia-control);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn,
  .theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > button.iconbtn,
  .theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart > a.iconbtn,
  .theme-nurfia .header-shell--overlay .mainhdr-search-btn {
    width: var(--nurfia-control);
    height: var(--nurfia-control);
    min-width: var(--nurfia-control);
    min-height: var(--nurfia-control);
  }
}

.mainhdr-search-btn {
  display: none;
}

/* ── Nav overlay (legacy bar hidden on home) ── */
.theme-nurfia .header-shell--overlay .navwrap {
  display: none;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .theme-nurfia .header-shell--overlay .mainhdr-nav__link {
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .theme-nurfia .header-shell--overlay .logo-wordmark {
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: 0.1em;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .theme-nurfia .header-shell--overlay .mainhdr-desktop .logo--custom .site-header-logo__img {
    height: var(--nurfia-logo-h);
    max-height: var(--nurfia-control);
    width: auto;
  }
}

@media (min-width: 981px) {
  .theme-nurfia .header-shell--overlay .mainhdr-desktop .actions .header-account .garage.garage--account {
    min-height: var(--nurfia-control);
    height: var(--nurfia-control);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile {
    display: none;
  }
}

@media (max-width: 980px) {
  .theme-nurfia .page {
    padding-top: calc(var(--nurfia-control) + 16px);
  }

  body.page-home.theme-nurfia .page {
    padding-top: 0;
  }

  body.page-home.theme-nurfia .hero-cine__inner {
    padding-top: calc(var(--nurfia-control) + 32px);
  }

  .theme-nurfia .header-shell--overlay .topstrip {
    display: none;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-desktop,
  .theme-nurfia .header-shell--overlay .mainhdr-nav {
    display: none;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile {
    display: block;
  }

  .theme-nurfia .header-shell--overlay .mainhdr {
    border-bottom: none;
  }

  body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr {
    background: transparent;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-height: calc(var(--nurfia-control) + 16px);
    padding: 8px 0;
    border-bottom: none;
    background: var(--nurfia-white);
    box-sizing: border-box;
    transition: background 0.32s ease;
  }

  body.page-home.theme-nurfia .header-shell--overlay:not(.is-scrolled) .mainhdr-mobile__top {
    background: transparent;
  }

  body.page-home.theme-nurfia .header-shell--overlay.is-scrolled .mainhdr-mobile__top {
    background: var(--nurfia-white);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-roundbtn {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: transparent;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: color 0.32s ease, opacity 0.18s ease;
  }

  .theme-nurfia .header-shell--overlay.is-scrolled .mainhdr-roundbtn {
    color: var(--nurfia-ink);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-roundbtn .badge {
    top: -3px;
    right: -5px;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    border: none;
    border-radius: 999px;
    background: var(--nurfia-ink);
    color: var(--nurfia-white);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-roundbtn svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 0;
    height: var(--nurfia-control);
    min-height: var(--nurfia-control);
    transition: color 0.32s ease;
  }

  .theme-nurfia .header-shell--overlay.is-scrolled .mainhdr-mobile__logo {
    color: var(--nurfia-ink);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile .logo--custom .site-header-logo__img {
    display: block;
    flex-shrink: 0;
    height: var(--nurfia-logo-h-mobile);
    max-height: var(--nurfia-control);
    width: auto;
    object-fit: contain;
    object-position: center center;
  }

  .theme-nurfia .header-shell--overlay.is-scrolled .logo-wordmark {
    color: var(--nurfia-ink);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__sub {
    display: none;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__top .mainhdr-mobile__actions.actions--nurfia {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 2px;
    padding: 0;
    margin: 0;
    border: none;
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__top .mainhdr-mobile__actions.actions--nurfia > a.iconbtn,
  .theme-nurfia .header-shell--overlay .mainhdr-mobile__top .mainhdr-mobile__actions.actions--nurfia > button.iconbtn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* ── Cinematic hero ── */
.hero--cine {
  position: relative;
  margin: 0;
  background: var(--nurfia-ink);
}

.hero-cine-slider {
  position: relative;
  min-height: min(92vh, 860px);
  overflow: hidden;
}

.hero-cine-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  min-height: min(92vh, 860px);
}

.hero-cine-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: min(92vh, 860px);
  overflow: hidden;
}

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

.hero-cine__img,
.hero-cine__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-cine__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 72% 58% at 50% 52%,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.22) 52%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.24) 48%,
      rgba(0, 0, 0, 0.4) 100%
    );
  pointer-events: none;
}

.hero-cine__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(92vh, 860px);
  padding: 48px clamp(24px, 6vw, 80px) 72px;
  box-sizing: border-box;
}

.hero-cine__content {
  width: min(100%, 960px);
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  text-align: center;
  color: var(--nurfia-white);
}

.hero--cine .hero-kicker,
.hero--cine .hero-desc {
  font-family: var(--nurfia-sans);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.hero--cine .hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 22px);
  margin: 0;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.92);
}

.hero--cine .hero-kicker::before,
.hero--cine .hero-kicker::after {
  content: '';
  flex: 0 0 auto;
  width: clamp(32px, 6vw, 56px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.72) 50%,
    transparent 100%
  );
}

.hero--cine .hero-title {
  margin: 0;
  max-width: 100%;
  font-family: var(--nurfia-display);
  font-size: clamp(32px, 6.2vw, 76px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0.08em;
  color: var(--nurfia-white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.hero--cine .hero-title::after {
  content: '';
  display: block;
  width: clamp(48px, 8vw, 72px);
  height: 1px;
  margin: clamp(10px, 1.6vw, 16px) auto 0;
  background: rgba(255, 255, 255, 0.42);
}

.hero--cine .hero-desc {
  margin: 0;
  width: min(100%, 760px);
  max-width: min(68ch, calc(100% - 24px));
  padding-inline: clamp(8px, 3vw, 20px);
  box-sizing: border-box;
  font-size: clamp(13px, 0.35vw + 0.78rem, 16px);
  line-height: 1.62;
  font-weight: 300;
  letter-spacing: 0.035em;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
}

.hero--cine .hero-cta {
  margin: 0;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  border: 1px solid var(--nurfia-white);
  border-radius: 0;
  background: var(--nurfia-white);
  color: var(--nurfia-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-hero:hover {
  background: transparent;
  color: var(--nurfia-white);
}

.btn-hero:focus-visible {
  outline: 2px solid var(--nurfia-white);
  outline-offset: 3px;
}

.hero--cine .hero-countdown-wrap,
.hero--cine .hero-badge,
.hero--cine .hero-nav:not(.hero-cine-nav) {
  display: none;
}

.hero-cine-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-cine-nav:hover {
  opacity: 1;
  filter: none;
}

.hero-cine-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.hero-cine-nav.hero-prev {
  left: clamp(12px, 3vw, 36px);
}

.hero-cine-nav.hero-next {
  right: clamp(12px, 3vw, 36px);
}

@media (max-width: 760px) {
  .hero-cine-nav {
    display: none;
  }
}

.hero-cine-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero--cine .hero-dot {
  width: 20px;
  height: 2px;
  border-radius: 0;
  border: none;
  background: rgba(255, 255, 255, 0.32);
  padding: 0;
  cursor: pointer;
  transition: width 0.28s ease, background 0.2s ease, opacity 0.2s ease;
}

.hero--cine .hero-dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero--cine .hero-dot[aria-selected='true'] {
  width: 36px;
  background: var(--nurfia-white);
}

@media (max-width: 1024px) {
  .hero-cine__content {
    width: min(100%, 760px);
    max-width: 100%;
    gap: clamp(12px, 2vw, 18px);
  }

  .hero--cine .hero-desc {
    width: min(100%, 620px);
    max-width: min(58ch, calc(100% - 32px));
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
  }
}

@media (max-height: 820px) and (min-width: 761px) {
  .hero-cine__content {
    gap: 12px;
  }

  .hero--cine .hero-title {
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.05;
  }

  .hero--cine .hero-desc {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.58;
  }
}

@media (max-width: 760px) {
  .hero-cine-slider,
  .hero-cine-track,
  .hero-cine-slide,
  .hero-cine__inner {
    min-height: min(78vh, 640px);
  }

  .hero-cine__inner {
    padding: 32px 18px 64px;
  }

  .hero-cine__content {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .hero--cine .hero-title {
    letter-spacing: 0.08em;
    font-size: clamp(28px, 9vw, 44px);
    line-height: 1.06;
  }

  .hero--cine .hero-desc {
    width: 100%;
    max-width: min(42ch, calc(100% - 16px));
    padding-inline: 6px;
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.58;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 480px) {
  .hero--cine .hero-desc {
    max-width: calc(100% - 12px);
    font-size: 13px;
    line-height: 1.55;
  }
}

/* Slider altı kayan yazı */
.home-ticker {
  overflow: hidden;
  background: var(--nurfia-white, #fff);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.home-ticker__viewport {
  overflow: hidden;
}

.home-ticker__track {
  display: flex;
  width: max-content;
  --home-ticker-shift: 50%;
  --home-ticker-duration: 42s;
  animation: home-ticker-scroll var(--home-ticker-duration) linear infinite;
  will-change: transform;
}

.home-ticker:hover .home-ticker__track {
  animation-play-state: paused;
}

.home-ticker__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 40px 0;
}

.home-ticker__item {
  font-family: var(--nurfia-display);
  font-size: clamp(3.5rem, 8.4vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nurfia-ink, #0a0a0a);
  white-space: nowrap;
  line-height: 1;
  font-feature-settings: 'liga' 1, 'kern' 1;
}

.home-ticker__sep {
  font-family: var(--nurfia-display);
  font-size: clamp(3rem, 7.2vw, 5.2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(10, 10, 10, 0.42);
  line-height: 1;
  padding: 0 0.55em;
  user-select: none;
}

@keyframes home-ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--home-ticker-shift)), 0, 0);
  }
}

@media (max-width: 760px) {
  .home-ticker__group {
    padding: 32px 0;
  }

  .home-ticker__item {
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-ticker__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .home-ticker__group[aria-hidden='true']:last-child {
    display: none;
  }
}

.theme-nurfia .home-ticker--section {
  border-bottom: none;
}

.theme-nurfia .home-ticker--section .home-ticker__track {
  --home-ticker-duration: 32s;
}

.theme-nurfia .home-ticker--section .home-ticker__group {
  padding: clamp(36px, 5vw, 52px) 0;
}


.theme-nurfia .header-shell--overlay .topstrip .controls {
  align-items: center;
}

.theme-nurfia .header-shell--overlay .topstrip .links--main {
  flex: 0 0 auto;
  align-items: center;
}

.theme-nurfia .header-shell--overlay .topstrip-tail {
  flex: 0 0 auto;
  align-items: center;
  margin-left: auto;
  padding-left: 0;
  border-left: none;
}

.theme-nurfia .header-shell--overlay .topstrip-tail::before {
  display: none;
}

/* TRY: sağ kenar, alt header ikonlarıyla aynı hizada */
.theme-nurfia .header-shell--overlay .topstrip-tail .controls .pill-select:last-child .pill-select__label {
  padding-right: 0;
}

.theme-nurfia .header-shell--overlay .topstrip-tail .controls .pill-select:last-child::after {
  right: 0;
}

/* ── Global storefront (inner pages + shared) ── */
.theme-nurfia .sf-page{
  padding-top:calc(var(--nurfia-header-h) + 20px);
}
@media (max-width:980px){
  .theme-nurfia .sf-page{
    padding-top:calc(var(--nurfia-control) + 28px);
  }
}
.theme-nurfia .header-shell {
  background: var(--nurfia-white);
}

.theme-nurfia .topstrip {
  background: var(--nurfia-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-nurfia .topstrip .topstrip-ilink,
.theme-nurfia .topstrip .pill-select span,
.theme-nurfia .topstrip .pill-select .pill-select__label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-nurfia .topstrip .topstrip-ilink:hover,
.theme-nurfia .topstrip .topstrip-ilink:focus-visible {
  color: var(--nurfia-white);
}

.theme-nurfia .topstrip .topstrip-ilink::after,
.theme-nurfia .topstrip .controls .pill-select::after {
  background: var(--nurfia-white);
}

.theme-nurfia .topstrip-sep,
.theme-nurfia .topstrip-tail::before {
  background: rgba(255, 255, 255, 0.18);
}

.theme-nurfia .mainhdr {
  background: var(--nurfia-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-nurfia .navwrap {
  background: var(--nurfia-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-nurfia .nav a.link {
  color: var(--nurfia-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-nav);
  font-weight: var(--fw-nav-menu);
  line-height: var(--lh-nav-menu);
}

.theme-nurfia .nav a.link:hover,
.theme-nurfia .nav a.link:focus-visible {
  color: var(--nurfia-ink);
  opacity: 0.72;
}

.theme-nurfia .nav-sep {
  background: rgba(0, 0, 0, 0.12);
}

.theme-nurfia .logo-wordmark {
  font-family: var(--nurfia-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nurfia-ink);
  line-height: 1;
}

.theme-nurfia .module-title,
.theme-nurfia .site-module-header .entry-title,
.theme-nurfia .sf-page-title,
.theme-nurfia .sf-account-main__title,
.theme-nurfia .sp-title {
  font-family: var(--nurfia-sans);
  font-size: var(--text-page-title);
  font-weight: var(--fw-title);
  letter-spacing: 0.02em;
  line-height: var(--lh-tight);
}
.theme-nurfia .module-title,
.theme-nurfia .site-module-header .entry-title {
  font-size: var(--text-xl);
}

.theme-nurfia .btn-primary,
.theme-nurfia .variant-primary {
  border-radius: 0;
  background: var(--nurfia-ink);
  border-color: var(--nurfia-ink);
  box-shadow: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .btn-primary:hover,
.theme-nurfia .variant-primary:hover {
  filter: none;
  background: #222;
  border-color: #222;
}

.theme-nurfia .module-link {
  color: var(--nurfia-ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .mobile-bottom-nav__item {
  color: #9ca3af;
}

.theme-nurfia .mobile-bottom-nav__item.is-active {
  color: var(--nurfia-ink);
}

.theme-nurfia .mobile-bottom-nav__ico {
  color: var(--nurfia-ink);
}

.theme-nurfia .footer,
.theme-nurfia .site-footer {
  background: #000;
}

.theme-nurfia .mainhdr-desktop .actions {
  gap: 16px;
}

.theme-nurfia .mainhdr-desktop .actions > a.iconbtn,
.theme-nurfia .mainhdr-desktop .actions > .header-cart > a.iconbtn,
.theme-nurfia .mainhdr-desktop .actions .garage.garage--account {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 2px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-ink);
  box-shadow: none;
}

.theme-nurfia .mainhdr-desktop .actions > a.iconbtn:hover,
.theme-nurfia .mainhdr-desktop .actions > .header-cart > a.iconbtn:hover,
.theme-nurfia .mainhdr-desktop .actions .garage.garage--account:hover {
  border: none;
  background: transparent;
  color: var(--nurfia-ink);
  opacity: 0.65;
}

.theme-nurfia .mainhdr-desktop .actions .badge,
.theme-nurfia .mainhdr-roundbtn .badge {
  top: -3px;
  right: -5px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border: none;
  border-radius: 999px;
  background: var(--nurfia-ink);
  color: var(--nurfia-white);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.theme-nurfia .mainhdr-roundbtn {
  border: none;
  background: transparent;
  color: var(--nurfia-ink);
}

.theme-nurfia .mainhdr-desktop .actions svg,
.theme-nurfia .mainhdr-roundbtn svg {
  width: 20px;
  height: 20px;
}

/* ── Unified Poppins typography (match header on all pages) ── */
.theme-nurfia body {
  font-family: var(--nurfia-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.theme-nurfia :where(
  h1,
  h2,
  h3,
  h4,
  .pname,
  .modal-title,
  .contact-hero__title
) {
  font-family: var(--nurfia-sans);
  letter-spacing: 0.02em;
}

.theme-nurfia :where(
  .module-title,
  .site-module-header .entry-title,
  .sf-page-title,
  .sp-title,
  .pname,
  .modal-title,
  .contact-hero__title
) {
  font-weight: var(--fw-semibold);
}

.theme-nurfia :where(
  .pprice .now,
  .garage-main
) {
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}
.theme-nurfia :where(.pprice .was) {
  color: rgba(0, 0, 0, 0.42);
  text-decoration: line-through;
  font-weight: var(--fw-regular);
}
.theme-nurfia :where(.pprice--sale .now) {
  color: var(--nurfia-ink);
}
.theme-nurfia :where(.prating .score) {
  font-weight: var(--fw-regular);
}
.theme-nurfia :where(.prating--empty .sp-stars) {
  opacity: 0.42;
}
.theme-nurfia :where(.pmeta .prating .sp-stars) {
  --star-size: 11px;
  --star-gap: 1px;
}
.theme-nurfia :where(.pmeta .prating:not(.prating--empty) .sp-stars) {
  opacity: 0.92;
}

.theme-nurfia .shop-layout{
  margin-top:12px;
}
.theme-nurfia .shop-sidebar-panel,
.theme-nurfia .shop-sort-picker__trigger{
  border-color:rgba(10,10,10,.1);
}
.theme-nurfia .shop-drawer-head{
  background:#ffffff;
}
.theme-nurfia .shop-drawer-title{
  font-family:var(--nurfia-sans);
  font-size:var(--text-md);
  font-weight:var(--fw-semibold);
  color:var(--nurfia-ink, #3d4f63);
  letter-spacing:0;
}
.theme-nurfia .shop-drawer-close{
  color:var(--nurfia-ink, #3d4f63);
}
.theme-nurfia .shop-filter-toggle{
  font-family:var(--nurfia-sans);
  font-size:var(--text-base);
  font-weight:var(--fw-semibold);
  color:var(--nurfia-ink, #3d4f63);
  border-color:rgba(10,10,10,.1);
}
.theme-nurfia .shop-widget-title{
  font-family: var(--nurfia-sans);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  color: #3d4f63;
  margin-bottom: 14px;
}
.theme-nurfia .shop-pill-filter{
  font-family:var(--nurfia-sans);
  font-size:var(--text-base);
  font-weight:var(--fw-medium);
  border-color:rgba(10,10,10,.1);
  color:var(--nurfia-ink);
  min-height:32px;
  padding:6px 12px 6px 10px;
}
.theme-nurfia .shop-pill-filter:hover{
  border-color:rgba(10,10,10,.22);
  color:var(--nurfia-ink);
}
.theme-nurfia .shop-pill-filter.is-current{
  border-color:var(--nurfia-ink);
  background:var(--nurfia-ink);
  color:#fff;
}
.theme-nurfia .shop-pill-filter__check{
  border-color:#cbd5e1;
  border-radius:2px;
}
.theme-nurfia .shop-pill-filter.is-current .shop-pill-filter__check{
  border-color:#fff;
  background:#fff;
  color:var(--nurfia-ink);
}
.theme-nurfia .shop-widget-body--pills{
  gap:8px;
}
.theme-nurfia .shop-filter-btn{
  letter-spacing:.08em;
}
.theme-nurfia .shop-grid .pcard--shop .ptitle a,
.theme-nurfia .pcard--shop .ptitle a{
  color:var(--nurfia-ink);
}

/* ── Logo: tutarlı boyut ve hizalama (header / drawer / footer) ── */
.theme-nurfia .logo.logo--header.logo--custom {
  gap: 0;
}

.theme-nurfia .logo--custom .site-header-logo__img {
  display: block;
  height: var(--nurfia-logo-h);
  max-height: var(--nurfia-control);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Footer koyu zemin: logo beyaz, arka plan kutusu yok */
.theme-nurfia .footer-info .site-footer-logo__img {
  display: block;
  height: var(--nurfia-logo-h);
  max-height: none;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.theme-nurfia .mainhdr-mobile .logo.logo--header.logo--custom .site-header-logo__img {
  height: var(--nurfia-logo-h-mobile);
  max-height: var(--nurfia-control);
  object-position: center center;
}

.theme-nurfia .drawer .logo.logo--header.logo--custom .site-header-logo__img {
  height: var(--nurfia-logo-h);
  max-height: var(--nurfia-control);
}

@media (min-width: 981px) {
  .theme-nurfia .mainhdr-desktop .logo.logo--header.logo--custom .site-header-logo__img {
    height: var(--nurfia-logo-h);
    max-height: var(--nurfia-control);
  }

  .theme-nurfia .footer-info .site-footer-logo__img {
    height: var(--nurfia-logo-h);
    max-height: none;
  }
}

.theme-nurfia .drawer-head__logo {
  display: flex;
  align-items: center;
  height: var(--nurfia-control);
  min-height: var(--nurfia-control);
}

/* ── Nurfia yan menü (soldan açılan panel) ── */
.theme-nurfia .drawer--nurfia {
  width: min(320px, 88vw);
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 12px 0 40px rgba(10, 10, 10, 0.08);
}

body.drawer-open .drawer-backdrop {
  z-index: 340;
}

body.drawer-open .drawer {
  z-index: 350;
}

.theme-nurfia .drawer-head--nurfia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 28px 18px;
  border-bottom: none;
  background: #fff;
}

.theme-nurfia .drawer-head__title {
  margin: 0;
  font-family: var(--nurfia-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(10, 10, 10, 0.42);
  letter-spacing: 0.02em;
}

.theme-nurfia .drawer-head--nurfia .drawer-head__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-ink);
  opacity: 0.75;
}

.theme-nurfia .drawer-head--nurfia .drawer-head__close:hover,
.theme-nurfia .drawer-head--nurfia .drawer-head__close:focus-visible {
  opacity: 1;
}

.theme-nurfia .drawer-body--nurfia {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 24px;
}

.theme-nurfia .drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 20px;
}

.theme-nurfia .drawer-nav-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.theme-nurfia .drawer-nav-item:last-child {
  border-bottom: none;
}

.theme-nurfia .drawer-nav-item__row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
}

.theme-nurfia .drawer-nav-item__link {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: 14px 8px;
  font-family: var(--nurfia-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--nurfia-ink);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.theme-nurfia .drawer-nav-item__link:hover,
.theme-nurfia .drawer-nav-item__link:focus-visible {
  opacity: 0.65;
  outline: none;
}

.theme-nurfia .drawer-nav-item__toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(10, 10, 10, 0.45);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.2s ease;
}

.theme-nurfia .drawer-nav-item__toggle:hover,
.theme-nurfia .drawer-nav-item__toggle:focus-visible {
  color: var(--nurfia-ink);
  outline: none;
}

.theme-nurfia .drawer-nav-item.is-open .drawer-nav-item__toggle {
  transform: rotate(90deg);
}

.theme-nurfia .drawer-nav-item__sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 10px 16px;
}

.theme-nurfia .drawer-nav-item__sublink {
  display: block;
  padding: 10px 8px;
  font-family: var(--nurfia-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(10, 10, 10, 0.72);
  text-decoration: none;
}

.theme-nurfia .drawer-nav-item__sublink:hover,
.theme-nurfia .drawer-nav-item__sublink:focus-visible {
  color: var(--nurfia-ink);
  outline: none;
}

.theme-nurfia .drawer-foot--nurfia {
  margin-top: auto;
  padding: 20px 28px calc(24px + env(safe-area-inset-bottom, 0));
  border-top: none;
  background: #fff;
}

.theme-nurfia .drawer-foot--nurfia .drawer-foot-copy {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.38);
  text-align: left;
}

.theme-nurfia .avc-footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

/* ── Home split banners (Women / Men) ── */
.theme-nurfia .module + .home-split-banners {
  margin-top: clamp(40px, 6vw, 72px);
}

.theme-nurfia .home-split-banners {
  width: 100%;
  margin: 0;
  padding: 0;
}

.theme-nurfia .home-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.theme-nurfia .home-split-card {
  position: relative;
  display: block;
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  color: var(--nurfia-white);
  text-decoration: none;
  background: #111;
}

.theme-nurfia .home-split-card__media {
  position: absolute;
  inset: 0;
}

.theme-nurfia .home-split-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-nurfia .home-split-card:hover .home-split-card__media img,
.theme-nurfia .home-split-card:focus-visible .home-split-card__media img {
  transform: scale(1.04);
}

.theme-nurfia .home-split-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.18) 62%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.theme-nurfia .home-split-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 40px);
  text-align: center;
}

.theme-nurfia .home-split-card__title {
  margin: 0;
  font-family: var(--nurfia-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--nurfia-white);
}

.theme-nurfia .home-split-card__desc {
  margin: 0;
  max-width: 34ch;
  font-family: var(--nurfia-sans);
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 760px) {
  .theme-nurfia .home-split-grid {
    grid-template-columns: 1fr;
  }

  .theme-nurfia .home-split-card {
    min-height: clamp(280px, 72vw, 420px);
  }

  .theme-nurfia .home-split-card__desc {
    max-width: 42ch;
  }
}

/* ── Home look banner (The Looks You'll Love) ── */
.theme-nurfia .home-look-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.theme-nurfia .home-look-banner__link {
  position: relative;
  display: block;
  min-height: clamp(360px, 52vw, 620px);
  overflow: hidden;
  color: var(--nurfia-white);
  text-decoration: none;
  background: #111;
}

.theme-nurfia .home-look-banner__media {
  position: absolute;
  inset: 0;
}

.theme-nurfia .home-look-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-nurfia .home-look-banner__link:hover .home-look-banner__media img,
.theme-nurfia .home-look-banner__link:focus-visible .home-look-banner__media img {
  transform: scale(1.03);
}

.theme-nurfia .home-look-banner__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.22) 68%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

.theme-nurfia .home-look-banner__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px);
  text-align: center;
}

.theme-nurfia .home-look-banner__title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--nurfia-display);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--nurfia-white);
}

.theme-nurfia .home-look-banner__desc {
  margin: 0;
  max-width: 52ch;
  font-family: var(--nurfia-sans);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 760px) {
  .theme-nurfia .home-look-banner__link {
    min-height: clamp(300px, 78vw, 460px);
  }

  .theme-nurfia .home-look-banner__title {
    max-width: none;
    font-size: clamp(28px, 8.5vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-nurfia .home-look-banner__media img {
    transition: none;
  }
}

/* ── Home featured products row ── */
.theme-nurfia .home-featured {
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 88px);
}

.theme-nurfia .home-featured + .home-look-banner {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.theme-nurfia .home-featured__head {
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.theme-nurfia .home-featured__head .module-subrow {
  align-items: center;
  gap: 16px 28px;
}

.theme-nurfia .home-featured__subrow-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  margin-left: auto;
}

.theme-nurfia .home-featured__subrow-actions .module-link {
  display: inline;
}

.theme-nurfia .home-featured__title {
  margin: 0;
  font-family: var(--nurfia-sans);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  color: var(--nurfia-ink);
}

.theme-nurfia .home-featured__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.theme-nurfia .home-featured__tab {
  margin: 0;
  padding: 0 0 3px;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-family: var(--nurfia-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  color: rgba(10, 10, 10, 0.72);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.theme-nurfia .home-featured__tab:hover,
.theme-nurfia .home-featured__tab:focus-visible {
  color: var(--nurfia-ink);
}

.theme-nurfia .home-featured__tab.is-active {
  color: var(--nurfia-ink);
  border-bottom-color: var(--nurfia-ink);
}

.theme-nurfia .home-featured__panels {
  padding-top: 22px;
}

.theme-nurfia .home-featured__panel[hidden] {
  display: none;
}

.theme-nurfia .home-featured__carousel {
  margin-top: 0;
}

.theme-nurfia .home-featured__carousel .pcard--shop .pbtn {
  display: none;
}

@media (max-width: 760px) {
  .theme-nurfia .home-featured__head .module-subrow {
    flex-direction: column;
    align-items: flex-start;
  }

  .theme-nurfia .home-featured__subrow-actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .theme-nurfia .home-featured__subrow-actions .module-link {
    display: inline;
  }

  .theme-nurfia .home-featured__tabs {
    gap: 6px 16px;
  }
}

/* ── Home blog module ── */
.theme-nurfia .blog-module .entry-post-title {
  font-family: var(--nurfia-sans);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  line-height: var(--lh-tight);
  color: var(--nurfia-ink);
}

.theme-nurfia .blog-module .entry-post-category {
  font-family: var(--nurfia-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.45);
}

.theme-nurfia .blog-module .entry-post-byline {
  font-family: var(--nurfia-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  color: rgba(10, 10, 10, 0.45);
}

.theme-nurfia .blog-module .site-module-header .entry-description {
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  color: rgba(10, 10, 10, 0.52);
}

.theme-nurfia .blog-module .site-module-header {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.theme-nurfia .blog-module .site-module-header .button-column a {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Home testimonial carousel ── */
.theme-nurfia .home-testimonial {
  width: 100%;
}

.theme-nurfia .home-testimonial__bg {
  background: #ffffff;
  padding: clamp(40px, 8vw, 116px) 0;
}

.theme-nurfia .home-testimonial__wrap {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}

.theme-nurfia .home-testimonial-slider {
  position: relative;
}

.theme-nurfia .home-testimonial-viewport {
  overflow: hidden;
}

.theme-nurfia .home-testimonial-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.theme-nurfia .home-testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.theme-nurfia .site-testimonial-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 36px);
  text-align: center;
}

.theme-nurfia .entry-testimonial-title {
  margin: 0;
  max-width: 34ch;
  font-family: var(--nurfia-sans);
  font-size: clamp(20px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--nurfia-ink);
}

.theme-nurfia .testimonial-user {
  line-height: 0;
}

.theme-nurfia .testimonial-user img {
  display: block;
  width: clamp(56px, 8vw, 72px);
  height: clamp(56px, 8vw, 72px);
  object-fit: cover;
  object-position: center top;
}

.theme-nurfia .home-testimonial-controls {
  pointer-events: none;
}

.theme-nurfia .home-testimonial-nav {
  pointer-events: auto;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--nurfia-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-nurfia .home-testimonial-nav:hover,
.theme-nurfia .home-testimonial-nav:focus-visible {
  border-color: rgba(10, 10, 10, 0.28);
  background: rgba(255, 255, 255, 0.45);
}

.theme-nurfia .home-testimonial-nav--prev {
  left: max(-56px, -4vw);
}

.theme-nurfia .home-testimonial-nav--next {
  right: max(-56px, -4vw);
}

@media (max-width: 980px) {
  .theme-nurfia .home-testimonial-nav--prev {
    left: -8px;
  }

  .theme-nurfia .home-testimonial-nav--next {
    right: -8px;
  }

  .theme-nurfia .entry-testimonial-title {
    max-width: 28ch;
    padding-inline: 44px;
  }
}

@media (max-width: 760px) {
  .theme-nurfia .home-testimonial__bg {
    padding: 40px 0 56px;
  }

  .theme-nurfia .entry-testimonial-title {
    font-size: clamp(18px, 5.2vw, 24px);
    max-width: none;
    padding-inline: 40px;
  }

  .theme-nurfia .home-testimonial-nav {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-nurfia .home-testimonial-track {
    transition: none;
  }
}

/* ── Home earth section (Fashion That Loves The Earth) ── */
.theme-nurfia .home-earth {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--nurfia-white);
}

.theme-nurfia .home-earth__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.72fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.theme-nurfia .home-earth__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 34ch;
  padding-right: clamp(8px, 2vw, 24px);
}

.theme-nurfia .home-earth__title {
  margin: 0 0 clamp(18px, 2.5vw, 28px);
  font-family: var(--nurfia-display);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--nurfia-ink);
}

.theme-nurfia .home-earth__desc {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.theme-nurfia .home-earth__desc p {
  margin: 0;
  font-family: var(--nurfia-sans);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
}

.theme-nurfia .home-earth__btn.button.variant-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid var(--nurfia-ink);
  border-radius: 0;
  background: var(--nurfia-ink);
  color: var(--nurfia-white);
  font-family: var(--nurfia-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-nurfia .home-earth__btn.button.variant-black:hover,
.theme-nurfia .home-earth__btn.button.variant-black:focus-visible {
  background: #222;
  border-color: #222;
  color: var(--nurfia-white);
}

.theme-nurfia .home-earth__media {
  line-height: 0;
}

.theme-nurfia .home-earth__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.theme-nurfia .home-earth__media--main img {
  aspect-ratio: 992 / 1213;
  max-height: min(78vh, 820px);
  object-position: center top;
}

.theme-nurfia .home-earth__media--side {
  align-self: center;
  padding-top: clamp(0px, 2vw, 24px);
}

.theme-nurfia .home-earth__media--side img {
  aspect-ratio: 1 / 1;
  max-width: min(100%, 340px);
  margin-inline: auto;
  object-position: center top;
}

@media (max-width: 980px) {
  .theme-nurfia .home-earth__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "main side";
    gap: 24px 16px;
  }

  .theme-nurfia .home-earth__copy {
    grid-area: copy;
    max-width: none;
    padding-right: 0;
  }

  .theme-nurfia .home-earth__media--main {
    grid-area: main;
  }

  .theme-nurfia .home-earth__media--side {
    grid-area: side;
    padding-top: 0;
  }

  .theme-nurfia .home-earth__media--main img {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .theme-nurfia .home-earth {
    padding: 40px 0 48px;
  }

  .theme-nurfia .home-earth__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "main"
      "side";
    gap: 20px;
  }

  .theme-nurfia .home-earth__title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .theme-nurfia .home-earth__media--side img {
    max-width: min(72vw, 280px);
  }
}

/* ── Nurfia footer (4-column + bottom bar) ── */
.theme-nurfia .site-footer {
  margin-top: clamp(32px, 4vw, 56px);
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.theme-nurfia .site-footer-row {
  border-top: none;
}

.theme-nurfia .footer-widgets {
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.theme-nurfia .footer-widgets .container {
  padding-top: 56px;
  padding-bottom: 48px;
}

.theme-nurfia .site-footer-widgets.footer-widgets-column-4 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.45fr);
  gap: 32px 40px;
}

.theme-nurfia .footer-newsletter-col {
  min-width: 0;
}

.theme-nurfia .site-footer-widgets .widget-title,
.theme-nurfia .footer-acc-btn {
  margin: 0 0 18px;
  font-family: var(--nurfia-sans);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  color: #fff;
}

.theme-nurfia .site-footer-widgets .menu {
  gap: 10px;
}

.theme-nurfia .site-footer-widgets .menu a {
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  text-decoration: none;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.theme-nurfia .site-footer-widgets .menu a:hover,
.theme-nurfia .site-footer-widgets .menu a:focus-visible {
  color: #fff;
  background: transparent;
  transform: none;
  text-decoration: underline;
  text-decoration-color: #fff;
  outline: none;
}

.theme-nurfia .footer-newsletter-title {
  margin: 0 0 12px;
}

.theme-nurfia .footer-newsletter-desc {
  margin: 0 0 18px;
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.72);
}

.theme-nurfia .footer-newsletter-form .mc4wp-form-fields {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.theme-nurfia .footer-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

@media (max-width: 480px) {
  .theme-nurfia .footer-newsletter-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .theme-nurfia .footer-subscribe-btn {
    width: 100%;
  }
}

.theme-nurfia .footer-subscribe-input {
  width: 100%;
  height: 44px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--nurfia-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  outline: none;
  box-sizing: border-box;
}

.theme-nurfia .footer-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.theme-nurfia .footer-subscribe-input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  outline: none;
}

.theme-nurfia .footer-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  height: 44px;
  margin: 0;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: var(--nurfia-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.theme-nurfia .footer-subscribe-btn:hover,
.theme-nurfia .footer-subscribe-btn:focus-visible {
  background: transparent;
  color: #fff;
  border-color: #fff;
  outline: none;
}

.theme-nurfia .footer-subscribe-btn.is-btn-loading::before {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 0;
}

.theme-nurfia .footer-subscribe-btn.is-btn-loading::after {
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: #000;
}

.theme-nurfia .footer-newsletter-privacy {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.5);
}

.theme-nurfia .footer-newsletter-privacy a {
  color: #fff;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.15s ease;
}

.theme-nurfia .footer-newsletter-privacy a:hover,
.theme-nurfia .footer-newsletter-privacy a:focus-visible {
  text-decoration: underline;
  text-decoration-color: #fff;
  outline: none;
}

.theme-nurfia .footer-bottom {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.theme-nurfia .footer-bottom .container {
  padding-top: 22px;
  padding-bottom: 28px;
}

.theme-nurfia .site-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.theme-nurfia .footer-bottom .site-copyright {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.55);
}

.theme-nurfia .footer-bottom-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-nurfia .footer-bottom-payments .item {
  min-width: 44px;
  height: 28px;
  min-height: 28px;
  padding: 3px 6px;
  border: none;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.theme-nurfia .footer-bottom-payments .item img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 22px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .theme-nurfia .site-footer {
    scroll-margin-bottom: calc(var(--mobile-bottom-nav-h) + env(safe-area-inset-bottom, 0));
  }
}

@media (max-width: 980px) {
  .theme-nurfia .site-footer-widgets.footer-widgets-column-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .theme-nurfia .footer-newsletter-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .theme-nurfia .footer-widgets .container,
  .theme-nurfia .footer-bottom .container {
    padding-top: 32px;
    padding-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .theme-nurfia .footer-bottom .container {
    padding-top: 22px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
  }

  .theme-nurfia .site-footer-widgets.footer-widgets-column-4 {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-width: 0;
  }

  .theme-nurfia .site-footer-widgets.footer-widgets-column-4 .column {
    min-width: 0;
    padding-top: 0;
  }

  .theme-nurfia .site-footer-widgets.footer-widgets-column-4 .column:not(.footer-newsletter-col) {
    margin-bottom: 10px;
  }

  .theme-nurfia .footer-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: var(--text-md);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.01em;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
  }

  .theme-nurfia .footer-acc-btn:hover,
  .theme-nurfia .footer-acc-btn:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
  }

  .theme-nurfia .footer-acc-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.18);
    outline-offset: 2px;
  }

  .theme-nurfia .footer-acc-btn::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-left: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(-45deg);
    transition: transform 0.15s ease;
  }

  .theme-nurfia .footer-acc-btn[aria-expanded="true"]::after {
    transform: rotate(45deg);
  }

  .theme-nurfia .footer-acc-panel {
    padding: 4px 0 16px;
  }

  .theme-nurfia .footer-newsletter-col {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
  }

  .theme-nurfia .footer-newsletter-title {
    padding-top: 4px;
  }

  .theme-nurfia .footer-newsletter-form,
  .theme-nurfia .footer-newsletter-form .mc4wp-form,
  .theme-nurfia .footer-newsletter-form .mc4wp-form-fields {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .theme-nurfia .site-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }

  .theme-nurfia .footer-bottom-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .theme-nurfia .footer-bottom-payments .item {
    flex: 0 0 auto;
    width: auto;
    min-width: 52px;
    max-width: 72px;
    height: 28px;
    min-height: 28px;
    padding: 3px 6px;
  }

  .theme-nurfia .footer-bottom-payments .item img {
    width: auto;
    height: 100%;
    max-height: 22px;
    max-width: 100%;
    transform: none;
  }
}

/* ── Single product (Nurfia layout) ── */
.theme-nurfia .sp-breadcrumb--product {
  padding: 2px 0 4px;
}

.theme-nurfia .sp-page .sp-single {
  padding-top: 0;
}

.theme-nurfia .sp-wrap--grid .sp-body {
  padding-top: 8px;
}

.theme-nurfia .sp-wrap--grid .sp-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.theme-nurfia .sp-wrap--grid .sp-meta {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
  font-size: var(--text-sm);
}

.theme-nurfia .sp-wrap--grid .sp-sku .sku {
  font-weight: var(--fw-semibold);
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-short p {
  color: rgba(0, 0, 0, 0.62);
  font-weight: var(--fw-regular);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.theme-nurfia .sp-wrap--grid .sp-price ins {
  color: var(--nurfia-ink);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-price del {
  color: rgba(0, 0, 0, 0.42);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-wrap--grid .sp-stock.in {
  color: #16a34a;
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
}

.theme-nurfia .sp-wrap--grid .sp-add {
  background: var(--nurfia-ink);
  border: 1px solid var(--nurfia-ink);
  border-radius: var(--radius);
  box-shadow: none;
  height: 52px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-sm);
}

.theme-nurfia .sp-wrap--grid .sp-add:hover {
  filter: none;
  background: #222;
  border-color: #222;
}

.theme-nurfia .sp-wrap--grid .sp-qty {
  border-radius: var(--radius);
}

.theme-nurfia .sp-wrap--grid .sp-stars,
.theme-nurfia .sp-wrap--grid .sp-review-stars {
  --star-fill: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e8b923' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.theme-nurfia .sp-wrap--grid .sp-tab.is-active {
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-tab {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-submit {
  background: var(--nurfia-ink);
  border-color: var(--nurfia-ink);
  border-radius: var(--radius);
}

.theme-nurfia .sp-breadcrumb,
.theme-nurfia .sp-breadcrumb--product {
  font-weight: var(--fw-regular);
  text-transform: none;
  letter-spacing: 0;
}

.theme-nurfia .sp-breadcrumb a:hover,
.theme-nurfia .sp-breadcrumb--product a:hover {
  color: var(--nurfia-ink);
}

/* ── Breadcrumb: uniform link weight, semibold current only ── */
.theme-nurfia .sp-breadcrumb,
.theme-nurfia .sp-breadcrumb--product,
.theme-nurfia .sp-breadcrumb a,
.theme-nurfia .sp-breadcrumb--product a {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-breadcrumb .current,
.theme-nurfia .sp-breadcrumb--product .current {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-rating-count,
.theme-nurfia .sp-wrap--grid .sp-rating-score {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-wrap--grid .sp-stars,
.theme-nurfia .sp-wrap--grid .sp-review-stars {
  --star-empty: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d4d4d4' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.theme-nurfia .sp-wrap--grid .sp-picker-label {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-medium);
}

.theme-nurfia .sp-wrap--grid .sp-picker-label strong {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-size-clear {
  color: rgba(0, 0, 0, 0.55);
}

.theme-nurfia .sp-wrap--grid .sp-size-clear:hover {
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-size-btn {
  border-radius: var(--radius);
}

.theme-nurfia .sp-wrap--grid .sp-qty-btn {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-qty-btn:hover {
  color: var(--nurfia-ink);
  background: var(--soft);
}

.theme-nurfia .sp-wrap--grid .sp-action-link {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-medium);
}

.theme-nurfia .sp-wrap--grid .sp-action-link:hover {
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-shipping-msg {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--nurfia-white);
}

.theme-nurfia .sp-wrap--grid .sp-shipping-msg__sub {
  color: rgba(0, 0, 0, 0.55);
}

.theme-nurfia .sp-wrap--grid .sp-shipping-msg__sep {
  color: rgba(0, 0, 0, 0.18);
}

.theme-nurfia .sp-wrap--grid .sp-gallery-cell {
  border-color: rgba(0, 0, 0, 0.08);
}

.theme-nurfia .sp-gallery-progress__track {
  background: rgba(0, 0, 0, 0.12);
}

.theme-nurfia .sp-gallery-progress__bar {
  background: var(--nurfia-ink, #0f172a);
}

/* ── Product gallery lightbox (Nurfia fullscreen) ── */
.theme-nurfia .sp-gallery-lightbox {
  background: #000;
}

.theme-nurfia .sp-gallery-lightbox__count,
.theme-nurfia .sp-gallery-lightbox__nav,
.theme-nurfia .sp-gallery-lightbox__tool {
  color: #fff;
}

.theme-nurfia .sp-gallery-lightbox__tool:hover,
.theme-nurfia .sp-gallery-lightbox__tool.is-active {
  background: transparent;
  opacity: 0.72;
}

.theme-nurfia .sp-gallery-lightbox__nav:hover {
  background: transparent;
}

.theme-nurfia .sp-wrap--grid .sp-gallery-cell--empty {
  background: var(--soft);
}

.theme-nurfia .sp-wrap--grid .sp-gallery-video-wrap {
  background: var(--nurfia-ink);
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
}

.theme-nurfia .sp-wrap--grid .sp-badge--sale {
  background: var(--nurfia-white);
  color: var(--nurfia-ink);
  border-color: rgba(0, 0, 0, 0.08);
}

.theme-nurfia .sp-wrap--grid .sp-share-btn:hover {
  background: var(--soft);
  border-color: rgba(0, 0, 0, 0.18);
}

.theme-nurfia .sp-wrap--grid .sp-tab {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-medium);
}

.theme-nurfia .sp-wrap--grid .sp-tab.is-active {
  color: var(--nurfia-ink);
  border-bottom-color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-panel p,
.theme-nurfia .sp-wrap--grid .sp-desc-html,
.theme-nurfia .sp-wrap--grid .sp-desc-html p {
  color: rgba(0, 0, 0, 0.62);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-wrap--grid .sp-desc-html h2,
.theme-nurfia .sp-wrap--grid .sp-desc-html h3,
.theme-nurfia .sp-wrap--grid .sp-desc-html h4,
.theme-nurfia .sp-wrap--grid .sp-desc-html h5,
.theme-nurfia .sp-wrap--grid .sp-desc-html h6 {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-desc-html blockquote {
  background: var(--soft);
  color: rgba(0, 0, 0, 0.62);
  border-left-color: rgba(0, 0, 0, 0.12);
}

.theme-nurfia .sp-wrap--grid .sp-desc-html pre,
.theme-nurfia .sp-wrap--grid .sp-desc-html th {
  background: var(--soft);
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-desc-html a {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-attrs th {
  background: var(--soft);
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-attrs td {
  color: rgba(0, 0, 0, 0.62);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-wrap--grid .sp-rev-head h2 span {
  color: rgba(0, 0, 0, 0.55);
}

.theme-nurfia .sp-wrap--grid .sp-rev-score {
  background: var(--soft);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-rev-note,
.theme-nurfia .sp-wrap--grid .sp-review-meta,
.theme-nurfia .sp-wrap--grid .sp-review-text,
.theme-nurfia .sp-wrap--grid .sp-field span {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-wrap--grid .sp-review-meta strong {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-submit {
  box-shadow: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-submit:hover {
  filter: none;
  background: #222;
  border-color: #222;
}

.theme-nurfia .sp-wrap--grid .sp-variant-pill {
  border-color: rgba(0, 0, 0, 0.12);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-variant-label,
.theme-nurfia .sp-wrap--grid .sp-variant-name {
  color: var(--nurfia-ink);
  font-weight: var(--fw-medium);
}

.theme-nurfia .sp-wrap--grid a.sp-variant-pill:hover {
  border-color: rgba(0, 0, 0, 0.28);
  background: var(--soft);
  color: var(--nurfia-ink);
  box-shadow: none;
}

.theme-nurfia .sp-wrap--grid .sp-variant-pill.is-current {
  border-color: var(--nurfia-ink);
  background: var(--soft);
  box-shadow: 0 0 0 1px var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-color-card {
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
}

.theme-nurfia .sp-wrap--grid a.sp-color-card:hover {
  border-color: rgba(0, 0, 0, 0.28);
}

.theme-nurfia .sp-wrap--grid .sp-color-card__thumb {
  border-radius: max(0px, calc(var(--radius) - 1px));
}

.theme-nurfia .sp-wrap--grid .sp-color-card.is-current,
.theme-nurfia .sp-wrap--grid .sp-color-card[aria-checked="true"] {
  border-color: var(--nurfia-ink);
  box-shadow: 0 0 0 1px var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-color-card__tip {
  background: var(--nurfia-ink);
  border-radius: var(--radius);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-color-card__tip::after {
  border-top-color: var(--nurfia-ink);
}

.theme-nurfia .sp-wrap--grid .sp-product-specs {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  background: var(--soft);
}

.theme-nurfia .sp-wrap--grid .sp-product-spec dt {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
}

.theme-nurfia .sp-wrap--grid .sp-product-spec dd {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sp-related-module .module-desc {
  color: rgba(0, 0, 0, 0.55);
}

.theme-nurfia .sp-related-module__head {
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.theme-nurfia .sp-related-module__head .module-subrow {
  align-items: center;
  gap: 16px 28px;
}

.theme-nurfia .sp-related-module__head .module-title {
  margin: 0;
  font-family: var(--nurfia-sans);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  color: var(--nurfia-ink);
}

.theme-nurfia .sp-related-grid {
  padding-top: 22px;
}

@media (max-width: 760px) {
  .theme-nurfia .sp-related-module__head .module-subrow {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Storefront modals & toasts (favori, karşılaştırma, bülten, hata) ── */
.theme-nurfia .sf-added-modal-backdrop,
.theme-nurfia .modal-backdrop {
  background: rgba(0, 0, 0, 0.48);
}

.theme-nurfia .sf-added-modal-box,
.theme-nurfia .modal-inner {
  border-radius: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.theme-nurfia .sf-added-modal-product {
  color: var(--nurfia-ink);
  font-weight: var(--fw-semibold);
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}

.theme-nurfia .sf-added-modal-note {
  color: rgba(0, 0, 0, 0.62);
  font-size: var(--text-md);
  font-weight: var(--fw-regular);
}

.theme-nurfia .sf-added-modal-btn {
  border-radius: 0;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  box-shadow: none;
}

.theme-nurfia a.sf-added-modal-btn {
  background: var(--nurfia-ink);
  border: 1px solid var(--nurfia-ink);
  color: var(--nurfia-white);
}

.theme-nurfia a.sf-added-modal-btn:hover {
  background: #222;
  border-color: #222;
}

.theme-nurfia .sf-added-modal-actions button.sf-added-modal-btn {
  background: transparent;
  border: 1px solid var(--nurfia-ink);
  color: var(--nurfia-ink);
}

.theme-nurfia .sf-added-modal-actions button.sf-added-modal-btn:hover {
  background: var(--soft);
  border-color: var(--nurfia-ink);
  color: var(--nurfia-ink);
}

.theme-nurfia .sf-added-modal-actions button.sf-added-modal-btn:only-child {
  background: var(--nurfia-ink);
  border-color: var(--nurfia-ink);
  color: var(--nurfia-white);
}

.theme-nurfia .sf-added-modal-actions button.sf-added-modal-btn:only-child:hover {
  background: #222;
  border-color: #222;
  color: var(--nurfia-white);
}

.theme-nurfia .sf-added-modal-btn:focus-visible {
  outline-color: var(--nurfia-ink);
}

.theme-nurfia .sf-added-modal-box--error {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.theme-nurfia .modal-title {
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  color: var(--nurfia-ink);
}

.theme-nurfia .modal-sub {
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-regular);
}

.theme-nurfia .modal-foot {
  color: rgba(0, 0, 0, 0.42);
}

.theme-nurfia .contact-flash-modal--ok .modal-inner {
  border-top-color: var(--nurfia-ink);
}

.theme-nurfia .avc-cart-toast {
  background: #2d7d32;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(45, 125, 50, 0.22);
}

.theme-nurfia .avc-cart-toast__link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: var(--fw-medium);
}

.theme-nurfia .avc-cart-toast__link:hover {
  color: var(--nurfia-white);
}

/* Commerce / account: page-tone grays → white canvas */
.theme-nurfia :is(
  .sf-empty,
  .sf-cart-ship-banner-inner,
  .sf-table thead th,
  .sf-data-table thead th,
  .sf-wish-table thead th,
  .sf-cart-table thead th,
  .sf-account-dash-shortcut,
  .sf-account-panel,
  .sf-account-card,
  .sf-checkout-panel,
  .sf-checkout-summary,
  .sf-combobox__list,
  .sf-combobox__option[aria-selected='true']
) {
  background: #ffffff;
}

.theme-nurfia .sf-cart-ship-banner-inner--ok {
  background: rgba(22, 163, 74, 0.07);
  border-color: rgba(22, 163, 74, 0.22);
}
.theme-nurfia .sf-cart-ship-banner-inner--ok .sf-cart-ship-banner-head p {
  color: #15803d;
}
.theme-nurfia .sf-cart-ship-banner-inner--ok .sf-cart-ship-ico {
  color: #16a34a;
}
.theme-nurfia .sf-cart-ship-progress > span {
  background: #94a3b8;
}
.theme-nurfia .sf-cart-ship-banner-inner--ok .sf-cart-ship-progress > span {
  background: #22c55e;
}

.theme-nurfia .sf-account-dash-shortcut:hover {
  background: #ffffff;
}
