/* 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: var(--nurfia-sans);
  --nurfia-header-h: 108px;
  --nurfia-topstrip-h: 36px;
  --nurfia-control: 42px;
  --nurfia-control-gap: 14px;
  --nurfia-control-border: rgba(10, 10, 10, 0.12);
}

.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);
}

/* ── 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: 11px;
  font-weight: 500;
  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 (solid white bar) ── */
.theme-nurfia .header-shell--overlay .mainhdr {
  background: var(--nurfia-white);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.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: 14px 0;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .brand {
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

/* 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;
  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;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nurfia-ink);
}

.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;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .logo.logo--header {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .logo--custom .site-header-logo__img {
  height: 36px;
  max-height: var(--nurfia-control);
}

.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;
}

.theme-nurfia .header-shell--overlay .header-account:not(.header-account--logged) .header-account__panel {
  display: none;
}

/* Ghost outline icons + black count badges (Nurfia header) */
.theme-nurfia .header-shell--overlay .mainhdr-desktop .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 {
  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 {
  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 {
  border: none;
  background: transparent;
  color: var(--nurfia-ink);
  opacity: 0.65;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .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 {
  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 {
  width: 20px;
  height: 20px;
  display: block;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .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 {
  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] {
  order: 2;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > a.iconbtn[data-header-compare-btn] {
  order: 4;
}

.theme-nurfia .header-shell--overlay .mainhdr-desktop .actions--nurfia > .header-cart {
  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) {
  .theme-nurfia .header-shell--overlay .mainhdr-mobile {
    display: none;
  }
}

@media (max-width: 980px) {
  .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 {
    background: var(--nurfia-white);
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-roundbtn {
    border: none;
    background: transparent;
    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;
  }

  .theme-nurfia .header-shell--overlay .logo-wordmark,
  .theme-nurfia .header-shell--overlay .mainhdr-mobile__logo {
    color: var(--nurfia-ink);
  }

  .theme-nurfia .header-shell--overlay .mainhdr-mobile__sub {
    display: none;
  }
}

/* ── 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: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.42) 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 24px 72px;
  box-sizing: border-box;
}

.hero-cine__content {
  max-width: 720px;
  text-align: center;
  color: var(--nurfia-white);
}

.hero--cine .hero-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.88);
}

.hero--cine .hero-title {
  margin: 0 0 18px;
  font-family: var(--nurfia-sans);
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nurfia-white);
}

.hero--cine .hero-desc {
  margin: 0 auto 28px;
  max-width: 54ch;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  font-weight: 400;
  color: var(--nurfia-muted);
}

.hero--cine .hero-cta {
  margin-top: 4px;
}

.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: 760px) {
  .hero-cine-slider,
  .hero-cine-track,
  .hero-cine-slide,
  .hero-cine__inner {
    min-height: min(78vh, 640px);
  }

  .hero--cine .hero-title {
    letter-spacing: 0.04em;
  }

  .hero-cine__inner {
    padding: 32px 18px 64px;
  }
}

/* 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;
  animation: home-ticker-scroll 42s 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-sans, 'Poppins', system-ui, sans-serif);
  font-size: clamp(3.5rem, 8.4vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nurfia-ink, #0a0a0a);
  white-space: nowrap;
  line-height: 1;
}

.home-ticker__sep {
  font-family: var(--nurfia-sans, 'Poppins', system-ui, sans-serif);
  font-size: clamp(3rem, 7.2vw, 5.2rem);
  font-weight: 400;
  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(-50%, 0, 0);
  }
}

@media (max-width: 760px) {
  .home-ticker__group {
    padding: 32px 0;
  }

  .home-ticker__item {
    letter-spacing: 0.06em;
  }
}

@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 .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 .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: 12px;
  font-weight: 500;
}

.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 .sp-title {
  font-family: var(--nurfia-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.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: 12px;
  font-weight: 600;
}

.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-weight: 600;
}

.theme-nurfia .mobile-bottom-nav__item.is-active {
  color: var(--nurfia-ink);
}

.theme-nurfia .footer {
  background: var(--nurfia-white);
}

.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,
  .hero--cine .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: 600;
}

.theme-nurfia :where(
  .pprice .now,
  .prating .score,
  .garage-main
) {
  font-weight: 600;
  letter-spacing: 0;
}

.theme-nurfia .shop-layout{
  margin-top:12px;
}
.theme-nurfia .shop-sidebar-panel,
.theme-nurfia .shop-sort-picker__trigger,
.theme-nurfia .shop-per-page-select,
.theme-nurfia .shop-view-toggle{
  border-color:rgba(10,10,10,.1);
}
.theme-nurfia .shop-widget-title{
  font-weight:600;
  letter-spacing:0;
}
.theme-nurfia .shop-grid .pcard--shop .ptitle a{
  color:var(--nurfia-ink);
}
.theme-nurfia .shop-filter-btn{
  letter-spacing:.08em;
}

