/** Shopify CDN: Minification failed

Line 12:80 Unexpected ")"

**/
/* ══════════════════════════════════════════════════════════════════════════
   RICHARD — critical.css
   Screen Glow design system · Inter · #4A4A8A accent · 0 radius
   ══════════════════════════════════════════════════════════════════════════

   TABLE OF CONTENTS
   (Cmd+F a section name to jump to it. All banners use /* ══ NAME ══ */)

   GLOBAL
     Reset
     Base typography
     Full-width section helper
     Buttons (shared)
     Forms (shared)
     Accessibility (skip link, focus)
     Utilities (visually-hidden, rte)

   LAYOUT
     Header — Customer Promise (navigation, search, cart icon)
     Announcement bar
     Trust bar
     Category bar
     Header dropdown + mega menu
     Mobile nav drawer
     Footer
     Pre-footer

   HOMEPAGE SECTIONS
     Hero
     Category grid (carousel)
     Spotlight
     Editorial banner
     Brand strip
     Promise bar
     Newsletter
     Featured collection (carousel)

   PRODUCT CARD + CAROUSELS
     Product card (grid variant + carousel variant)
     Product grid (collection pages)
     Collections grid (list pages)
     Collection tile (carousel-only)
     Carousel primitives (.carousel, .carousel-arrow)

   COLLECTION PAGE
     Collection layout (sidebar + grid)
     Collection filters (sidebar)
     Collection toolbar
     Pagination

   PDP — HERO COLUMN
     Top section (gallery + info)
     Gallery (main image + thumbs)
     Info column (brand, title, rating)
     Price block + save badge
     Wishlist heart
     Key highlights (numbered list)
     Klarna inline + energy label + stock urgency
     Variant options (swatches, text-options)
     Submit CTA button + reassurance
     Hero trust strip
     Concierge card

   PDP — BELOW HERO
     USP strip (Customer Promise)
     Feature rows (Editorial Stories)
     Category showcase primitives
     Category showcases (TV, Coffee, Vacuum, AC, Washer, Dryer, Heater, Air Fryer)
     Key specs preview tile
     Specifications table (dt/dd grid)
     Accordion (description + tabs)
     Video section
     Recently viewed rail
     Recommendations rail
     Sticky buy bar
     PDP lightbox

   CART
     Cart drawer (premium, slide-out)
     Cart progress bar
     Cart items, quantity selector
     Cart empty state
     Cart upsell carousel (+ free-delivery filler)
     Cart trust badges + payment icons
     Klarna messaging
     Cart page (full page)

   ACCOUNT
     Auth (login, register, recover)
     Dashboard (orders list + sidebar)
     Order detail

   CONTENT
     Policy / legal pages
     Contact page
     Blog index + featured + grid
     Article page (magazine layout)

   GLOBAL OVERLAYS
     Cookie consent banner
     Welcome popup
     WhatsApp floating button

   UTILITY
     Language switcher
     Mobile QA fixes (cross-cutting responsive)

   ══════════════════════════════════════════════════════════════════════════ */

/* ══ Reset ══ */

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

* {
  margin: 0;
}

[hidden] { display: none !important; }

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  background-color: var(--color-bg);
  color: var(--color-fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

a {
  color: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
}

/* ========================================
   Typography — Screen Glow
   Light headings (300), quiet body (400)
   ======================================== */

h1 {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.25;
}

h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h5 { font-size: 13px; font-weight: 500; line-height: 1.4; }
h6 { font-size: 12px; font-weight: 500; line-height: 1.4; }

@media (max-width: 749px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
}

/* ========================================
   Layout
   ======================================== */

main {
  flex: 1;
}

.shopify-section {
  display: grid;
  grid-template-columns:
    minmax(var(--page-margin), 1fr)
    min(100% - var(--page-margin) * 2, var(--page-width))
    minmax(var(--page-margin), 1fr);
}

.shopify-section > * {
  grid-column: 2;
}

.shopify-section > .full-width {
  grid-column: 1 / -1;
}

@media (max-width: 749px) {
  :root {
    --page-margin: 20px;
  }
}

/* ========================================
   Components — Section Label
   ======================================== */

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
}

/* ========================================
   Components — Underline CTA Link
   ======================================== */

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.cta-link:hover {
  opacity: 0.6;
}

.cta-link--white {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.cta-link--dark {
  color: var(--color-fg);
  border-bottom-color: var(--color-fg);
}

/* ========================================
   Components — Button (used sparingly)
   ======================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: var(--color-accent-hover);
}

.button--dark {
  background-color: var(--color-fg);
}

.button--dark:hover {
  background-color: #333;
}

.button--secondary {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-fg);
}

.button--secondary:hover {
  border-color: var(--color-fg);
}

/* ========================================
   Forms
   ======================================== */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background-color: var(--color-bg);
  font-size: 13px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ========================================
   Product Card
   ======================================== */

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
}

.product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: var(--color-bg-product);
  padding: 24px;
  transition: opacity 0.3s;
}

.product-card:hover .product-card__image {
  opacity: 0.85;
}

.product-card__brand {
  font-size: 11px;
  color: var(--color-fg-faint);
  margin-top: var(--space-md);
}

.product-card__title {
  font-size: 14px;
  font-weight: 400;
  margin-top: var(--space-2xs);
}

.product-card__price {
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--space-xs);
}

.product-card__price s {
  color: var(--color-fg-muted);
  margin-right: 4px;
  font-weight: 400;
}

/* Legacy card support (other pages) */
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.card img {
  aspect-ratio: 1;
  object-fit: cover;
  background-color: var(--color-bg-product);
}

.card__info {
  padding-block: 0.75rem;
  text-align: center;
}

.card__title {
  font-size: 14px;
  font-weight: 400;
}

.card__price {
  font-size: 14px;
  font-weight: 500;
  margin-top: var(--space-xs);
}

.card__price s {
  color: var(--color-fg-muted);
  margin-right: 4px;
}

/* ========================================
   Tables
   ======================================== */

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ========================================
   Accessibility
   ======================================== */

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

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.skip-to-content:focus {
  top: 0.5rem;
}

/* ========================================
   Utilities
   ======================================== */

.empty-state {
  padding: var(--space-5xl) var(--space-md);
  text-align: center;
}

.empty-state p {
  color: var(--color-fg-muted);
  margin-bottom: var(--space-lg);
}

.text-muted { color: var(--color-fg-muted); }
.text-faint { color: var(--color-fg-faint); }
.text-center { text-align: center; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-block: var(--space-2xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  font-size: 13px;
}

.pagination a:hover {
  border-color: var(--color-fg);
}

.pagination .active {
  background-color: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
}

/* ========================================
   Header
   ======================================== */

/* --- Trust bar --- */
.trust-bar {
  background: var(--color-fg);
  color: var(--color-bg);
}

.trust-bar__wrap {
  display: flex;
  align-items: stretch;
  position: relative;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px var(--page-margin);
  gap: 0;
  flex: 1;
  min-width: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  padding-inline: var(--space-xl);
  position: relative;
}

.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}

.trust-bar__icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
}

/* Arrow buttons — hidden on desktop, visible on mobile */
.trust-bar__nav {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex: 0 0 36px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.trust-bar__nav:hover,
.trust-bar__nav:focus-visible {
  color: rgba(255,255,255,1);
}

.trust-bar__nav:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 749px) {
  .trust-bar__nav {
    display: flex;
  }

  .trust-bar__inner {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__item {
    flex: 0 0 100%;
    justify-content: center;
    padding-inline: var(--space-md);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* No separator dividers when items are one-at-a-time */
  .trust-bar__item:not(:last-child)::after {
    display: none;
  }
}

/* --- Category bar --- */
.category-bar {
  border-bottom: 1px solid var(--color-border);
}

.category-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: 10px var(--page-margin);
}

.category-bar__link {
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-fg-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.category-bar__link:hover,
.category-bar__link[aria-current="page"] {
  color: var(--color-fg);
}

@media (max-width: 749px) {
  .category-bar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: var(--space-xl);
  }
  .category-bar__inner::-webkit-scrollbar {
    display: none;
  }
}

/* --- Header layout --- */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  height: 72px;
  padding-inline: var(--page-margin);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.site-header__center {
  width: 100%;
  max-width: 720px;
  justify-self: center;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  justify-self: end;
}

/* --- Logo --- */
.site-header__logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-fg);
  white-space: nowrap;
}

/* --- Categories button --- */
.site-header__cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-primary);
  color: var(--color-fg-muted);
  background: none;
  border: 1px solid var(--color-border);
  padding: 7px 14px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.site-header__cat-btn:hover {
  color: var(--color-fg);
  border-color: var(--color-fg-muted);
}

.site-header__chevron {
  transition: transform 0.2s;
}

/* --- Dropdown menu --- */
.site-header__dropdown {
  position: relative;
}

.site-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 60;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  min-width: 200px;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}

.site-header__dropdown button[aria-expanded="true"] .site-header__chevron {
  transform: rotate(180deg);
}

.site-header__dropdown button[aria-expanded="true"] + .site-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  text-decoration: none;
  color: var(--color-fg-muted);
  transition: color 0.15s, background 0.15s;
}

.site-header__dropdown-menu a:hover {
  color: var(--color-fg);
  background: var(--color-bg-alt);
}

/* --- Search bar --- */
.site-header__search {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__search-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--color-fg-muted);
  pointer-events: none;
}

.site-header__search input {
  width: 100%;
  height: 44px;
  padding: 0 18px 0 44px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-size: 14px;
  font-family: var(--font-primary);
  background: var(--color-bg-alt);
  transition: border-color 0.2s;
}

.site-header__search input::placeholder {
  color: var(--color-fg-faint);
}

.site-header__search input:focus {
  outline: none;
  border-color: var(--color-fg-muted);
  background: var(--color-bg);
}

/* --- Icon buttons (account, cart) --- */
.site-header__icon {
  color: var(--color-fg);
  transition: color 0.2s;
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__icon:hover {
  color: var(--color-fg-muted);
}

.site-header__cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* --- Mobile --- */
.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-fg);
  padding: 0;
}

@media (max-width: 749px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: var(--space-md);
  }
  .site-header__left {
    gap: 0;
  }
  .site-header__dropdown {
    display: none;
  }
  .site-header__center {
    display: none;
  }
  .site-header__menu-toggle {
    display: flex;
  }
}

/* --- Mobile nav drawer --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--color-bg);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-fg);
}

.mobile-nav__links {
  padding: var(--space-md) 0;
}

.mobile-nav__links > a,
.mobile-nav__links > details > summary {
  display: block;
  padding: 12px var(--space-xl);
  font-size: 14px;
  text-decoration: none;
  color: var(--color-fg);
  cursor: pointer;
  list-style: none;
}

.mobile-nav__links > details > summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__sub a {
  display: block;
  padding: 10px var(--space-xl) 10px var(--space-3xl);
  font-size: 13px;
  text-decoration: none;
  color: var(--color-fg-muted);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

body.mobile-nav-open .mobile-nav__overlay {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   Footer
   ======================================== */

/* ══════════════════════════════════════════
   PRE-FOOTER
   ══════════════════════════════════════════ */

.pre-footer {
  background: var(--color-bg-product);
  border-top: 1px solid var(--color-border);
}

.pre-footer__service {
  padding: 80px var(--page-margin);
}

@media (max-width: 749px) {
  .pre-footer__service {
    padding: 56px var(--page-margin);
  }
}

.pre-footer__service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 899px) {
  .pre-footer__service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 499px) {
  .pre-footer__service-grid {
    grid-template-columns: 1fr;
  }
}

.pre-footer__card {
  position: relative;
  padding: 48px 44px;
  text-decoration: none;
  color: var(--color-fg);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--color-border);
  transition: background-color 0.3s;
}

.pre-footer__card:first-child {
  border-left: none;
}

@media (max-width: 899px) {
  .pre-footer__card:nth-child(3) {
    border-left: none;
  }
  .pre-footer__card:nth-child(n+3) {
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 499px) {
  .pre-footer__card {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 32px 0;
  }
  .pre-footer__card:first-child {
    border-top: none;
  }
}

.pre-footer__card:hover {
  background: var(--color-bg);
}

/* Icon */
.pre-footer__card-icon {
  margin-bottom: 20px;
  color: var(--color-accent);
  line-height: 1;
}

.pre-footer__card-icon svg {
  display: block;
}

/* Title */
.pre-footer__card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

/* Description */
.pre-footer__card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  flex: 1;
  margin-bottom: 20px;
}

/* Link */
.pre-footer__card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  transition: opacity 0.2s;
}

.pre-footer__card:hover .pre-footer__card-link {
  opacity: 0.7;
}

/* ── Footer ── */

.site-footer {
  background: var(--color-fg);
  color: var(--color-bg);
  padding-inline: var(--page-margin);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding: 64px 0 56px;
}

@media (max-width: 899px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Brand column */
.site-footer__brand {
  max-width: 280px;
}

.site-footer__logo {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-bg);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.site-footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

/* Link columns */
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 749px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.site-footer__col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.site-footer__col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 2;
  transition: color 0.2s;
}

.site-footer__col a:hover {
  color: var(--color-bg);
}

/* Bottom bar */
.site-footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 599px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.site-footer__payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-footer__payment-icons svg {
  width: 38px;
  height: 24px;
  opacity: 0.5;
}

/* ========================================
   Announcement Bar
   ======================================== */

.announcement-bar {
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  text-decoration: none;
  transition: opacity 0.2s;
}

.announcement-bar a:hover {
  opacity: 0.7;
}

/* ========================================
   Hero — Screen Glow
   Centered text above, full-width inset image below
   ======================================== */

.hero {
  text-align: center;
  padding: var(--space-5xl) var(--space-3xl) var(--space-3xl);
}

.hero__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 560px;
  margin: 0 auto;
}

.hero__subtitle {
  font-size: 15px;
  color: var(--color-fg-muted);
  margin-top: var(--space-md);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero .cta-link {
  margin-top: var(--space-lg);
}

.hero__image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  background-color: var(--color-bg-product);
}

@media (max-width: 749px) {
  .hero {
    padding: var(--space-3xl) var(--space-md) var(--space-lg);
  }
  .hero__image {
    height: 300px;
  }
}

/* ========================================
   Category Navigation (inline pills)
   ======================================== */

.category-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-3xl);
  border-bottom: 1px solid var(--color-border);
}

.category-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-fg-faint);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1.5px solid transparent;
  transition: all 0.2s;
}

.category-nav a:hover,
.category-nav a.active {
  color: var(--color-fg);
  border-bottom-color: var(--color-fg);
}

@media (max-width: 749px) {
  .category-nav {
    gap: var(--space-lg);
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: var(--page-margin);
    padding-right: var(--page-margin);
  }
  .category-nav a {
    white-space: nowrap;
  }
}

/* ========================================
   Spotlight (two editorial cards)
   ======================================== */

.spotlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding-block: var(--space-4xl);
}

.spotlight__card-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  background-color: var(--color-bg-product);
}

.spotlight__card-content {
  padding-top: var(--space-lg);
}

.spotlight__card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.spotlight__card-content h3 {
  margin-top: var(--space-sm);
}

.spotlight__card-content p {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin-top: var(--space-xs);
  line-height: 1.6;
}

.spotlight__card-content .cta-link {
  margin-top: 14px;
}

@media (max-width: 749px) {
  .spotlight {
    grid-template-columns: 1fr;
  }
  .spotlight__card-image {
    height: 320px;
  }
}

/* ========================================
   Featured Collection / Product Grid
   ======================================== */

.featured-collection {
  padding-block: var(--space-5xl);
}

.featured-collection__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-3xl);
}

.featured-collection__head .cta-link {
  font-size: 13px;
}

/* ========================================
   Carousel — Shared scroll-snap base
   ======================================== */

.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.carousel-wrap:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:hover {
  border-color: var(--color-fg-muted);
}

.carousel-arrow[disabled] {
  opacity: 0 !important;
  pointer-events: none;
}

.carousel-arrow--prev { left: -22px; }
.carousel-arrow--next { right: -22px; }

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-fg);
  stroke-width: 1.5;
  fill: none;
}

@media (max-width: 749px) {
  .carousel-arrow { display: none; }
}

/* Product carousel */
.carousel--products {
  align-items: flex-start;
}

.carousel--products .product-card {
  width: 440px;
  flex-shrink: 0;
  text-align: left;
}

@media (max-width: 749px) {
  .carousel--products .product-card {
    width: 320px;
  }
  .carousel--products {
    gap: var(--space-md);
  }
}

/* ========================================
   Product Grid (collection pages)
   ======================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 1800px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 749px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

/* ========================================
   Collection list grid
   ======================================== */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 749px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   Editorial Banner (full-width image + overlay)
   ======================================== */

.editorial-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.editorial-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--color-bg-product);
}

.editorial-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--color-overlay-dark) 0%, transparent 50%);
}

.editorial-banner__content {
  position: absolute;
  bottom: 64px;
  left: var(--space-3xl);
  right: var(--space-3xl);
  color: #fff;
}

.editorial-banner__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.editorial-banner__content h2 {
  max-width: 480px;
  color: #fff;
}

.editorial-banner__content .cta-link {
  margin-top: var(--space-md);
}

@media (max-width: 749px) {
  .editorial-banner {
    height: 380px;
  }
  .editorial-banner__content {
    bottom: 32px;
    left: var(--page-margin);
    right: var(--page-margin);
  }
}

/* ========================================
   Category Grid (3-column portrait cards)
   ======================================== */

.category-grid {
  padding-block: var(--space-5xl);
}

.category-grid .section-label {
  margin-bottom: var(--space-3xl);
}

/* ========================================
   Collection Tile — Overlay style for carousel
   ======================================== */

.collection-tile {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.collection-tile__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--color-bg-product);
}

.collection-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.collection-tile:hover .collection-tile__media img {
  opacity: 0.85;
}

.collection-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.collection-tile__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-product);
}

.collection-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  color: #fff;
}

.collection-tile__content h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.collection-tile__content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--space-2xs);
}

/* Collection carousel item sizing */
.carousel--collections .collection-tile {
  width: calc((100% - var(--space-lg) * 2) / 2.5);
}

@media (min-width: 1000px) {
  .carousel--collections .collection-tile {
    width: calc((100% - var(--space-lg) * 3) / 3.5);
  }
}

@media (max-width: 749px) {
  .carousel--collections .collection-tile {
    width: calc((100% - var(--space-md)) / 1.4);
  }
  .carousel--collections {
    gap: var(--space-md);
  }
}

/* ========================================
   Brand Strip
   ======================================== */

.brand-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: var(--space-2xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ddd;
}

@media (max-width: 749px) {
  .brand-strip {
    flex-wrap: wrap;
    gap: 24px 40px;
    font-size: 12px;
  }
}

/* ========================================
   Promise Bar
   ======================================== */

.promise-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  padding: 56px 0;
}

.promise-bar__item {
  text-align: center;
}

.promise-bar__item h4 {
  font-size: 13px;
  font-weight: 500;
}

.promise-bar__item p {
  font-size: 12px;
  color: var(--color-fg-faint);
  margin-top: var(--space-2xs);
}

@media (max-width: 749px) {
  .promise-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Newsletter
   ======================================== */

.newsletter {
  padding: var(--space-5xl) var(--space-3xl);
  text-align: center;
  background: var(--color-bg-alt);
}

.newsletter h2 {
  font-size: 22px;
}

.newsletter p {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin-top: var(--space-sm);
}

.newsletter__form {
  display: flex;
  max-width: 400px;
  margin: 28px auto 0;
}

.newsletter__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 0;
  font-size: 13px;
  background: var(--color-bg);
  outline: none;
}

.newsletter__form input:focus {
  border-color: var(--color-accent);
}

.newsletter__form button {
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter__form button:hover {
  background: var(--color-accent-hover);
}

/* ========================================
   Product page — Editorial, image-focused
   ======================================== */

/* ── Hero: full-bleed product image ── */

/* ── Breadcrumb ── */

.section-padding:has(> .pdp-breadcrumb) {
  padding-top: 0;
}

.pdp-breadcrumb {
  grid-column: 1 / -1;
  padding: 16px var(--page-margin);
}

.pdp-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--color-fg-muted);
}

.pdp-breadcrumb li + li::before {
  content: '/';
  margin: 0 10px;
  color: var(--color-fg-faint);
}

.pdp-breadcrumb a {
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.pdp-breadcrumb a:hover {
  color: var(--color-fg);
}

.pdp-breadcrumb [aria-current="page"] {
  color: var(--color-fg);
}

/* ── Product form ── */

product-form {
  grid-column: 1 / -1;
}

/* ══════════════════════════════════════════
   TOP SECTION: Gallery + Product Info
   Two columns on desktop, stacked on mobile
   ══════════════════════════════════════════ */

.pdp-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 85vh;
}

@media (max-width: 899px) {
  .pdp-top {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* ── Left: Image gallery ── */

.pdp-top__gallery {
  display: flex;
  flex-direction: column;
  padding: 0;
}

@media (max-width: 899px) {
  .pdp-top__gallery {
    padding: 0;
  }
}

.pdp-top__main-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-top__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-top__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thumbnail strip — single row, horizontally scrollable */
.pdp-top__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 4px; /* room for focus ring */
  -webkit-overflow-scrolling: touch;
}

.pdp-top__thumbs::-webkit-scrollbar { display: none; } /* WebKit */

.pdp-top__thumb {
  flex: 0 0 auto;
  width: 80px;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: transparent;
  border: 1.5px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.pdp-top__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-top__thumb:hover {
  opacity: 0.85;
  border-color: var(--color-fg-muted);
}

.pdp-top__thumb.is-active {
  opacity: 1;
  border-color: var(--color-fg);
}

/* ── Right: Product info (premium hero column) ── */

.pdp-top__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 56px 56px 48px;
  gap: 0;
}

@media (max-width: 899px) {
  .pdp-top__info {
    padding: 36px var(--page-margin) 32px;
  }
}

.pdp-top__vendor {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-fg-muted);
  margin: 0 0 10px;
}

.pdp-top__title {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  padding-right: 52px; /* space for wishlist heart */
}

@media (max-width: 749px) {
  .pdp-top__title {
    font-size: 24px;
  }
}

.pdp-top__divider {
  height: 1px;
  background: var(--color-border);
  margin: 18px 0;
}

/* ─── Rating placeholder ─── */
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 4px;
}

.pdp-rating__stars {
  display: inline-flex;
  gap: 1px;
  color: #FFB400;
}

.pdp-rating__stars svg { display: block; }

.pdp-rating__value {
  font-weight: 600;
  color: var(--color-fg);
}

.pdp-rating__sep {
  color: var(--color-fg-faint, #C0C0C0);
}

.pdp-rating__count {
  color: var(--color-fg-muted);
}

/* ─── Price block ─── */
.pdp-top__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 6px;
}

.pdp-top__price {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-fg);
  letter-spacing: -0.01em;
}

.pdp-top__was {
  color: var(--color-fg-muted);
  font-weight: 400;
  font-size: 15px;
}

.pdp-save-badge {
  background: var(--color-accent);
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.4;
}

/* ─── Wishlist heart (top-right corner) ─── */
.pdp-wishlist {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-fg);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 2;
}

.pdp-wishlist:hover {
  border-color: var(--color-fg);
}

.pdp-wishlist__icon-filled { display: none; color: var(--color-accent); }
.pdp-wishlist.is-active .pdp-wishlist__icon-outline { display: none; }
.pdp-wishlist.is-active .pdp-wishlist__icon-filled { display: block; }
.pdp-wishlist.is-active { border-color: var(--color-accent); }

@keyframes wish-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.pdp-wishlist.is-bump .pdp-wishlist__icon-filled {
  animation: wish-bump 0.4s ease;
}

@media (max-width: 899px) {
  .pdp-wishlist { top: 28px; right: var(--page-margin); }
}

/* ─── Key highlights (numbered editorial list) ─── */
.pdp-highlights {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  border-top: 1px solid var(--color-border);
}

.pdp-highlights li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.pdp-highlights__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  font-feature-settings: 'tnum';
}

.pdp-highlights__text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-fg);
  letter-spacing: 0.005em;
}

/* ─── Description (editorial at bottom) ─── */
.pdp-top__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-fg-muted);
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  max-width: 52ch;
}

.pdp-top__desc p { margin-bottom: 10px; }
.pdp-top__desc p:last-child { margin-bottom: 0; }

/* ─── Variant options ─── */
.pdp-top__options {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* ── Variant selectors ── */

.pdp-buy__option-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 11px;
}

.pdp-buy__option-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-fg);
}

.pdp-buy__option-value {
  font-size: 13px;
  color: var(--color-fg-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.pdp-buy__swatches {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.pdp-buy__swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1px solid var(--color-border);
  outline-offset: -1px;
  cursor: pointer;
  transition: transform 0.2s, outline-color 0.2s, border-color 0.2s;
  padding: 0;
}

.pdp-buy__swatch:hover {
  transform: scale(1.08);
  outline-color: var(--color-fg-muted);
}

.pdp-buy__swatch.is-selected {
  border-color: var(--color-fg);
  outline-color: transparent;
}

.pdp-buy__text-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-buy__text-option {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 13px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-fg);
  background: none;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pdp-buy__text-option:hover {
  border-color: var(--color-fg-muted);
}

.pdp-buy__text-option.is-selected {
  border-color: var(--color-fg);
  background: var(--color-fg);
  color: var(--color-bg);
}

/* ── Quantity stepper ── */
.pdp-buy__qty-wrap {
  margin: 24px 0 16px;
}

.pdp-buy__qty-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-fg);
  margin: 0 0 10px;
}

.pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.pdp-qty button {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  color: var(--color-fg);
  transition: background 0.15s;
}

.pdp-qty button:hover {
  background: var(--color-bg-alt);
}

.pdp-qty input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-primary);
  background: transparent;
  -moz-appearance: textfield;
}

.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Submit button (B&O-inspired: confident typography + arrow + bottom accent) ── */
.pdp-buy__submit {
  width: 100%;
  height: 66px;
  padding: 0 32px;
  background: var(--color-fg);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.pdp-buy__submit::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50%;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-buy__submit-label {
  grid-column: 2;
  padding-right: 2px;
}

.pdp-buy__submit-arrow {
  grid-column: 3;
  justify-self: end;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.5);
}

.pdp-buy__submit-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-buy__submit:hover:not(:disabled) {
  background: #000;
}

.pdp-buy__submit:hover:not(:disabled)::before {
  width: 48px;
  left: 16px;
}

.pdp-buy__submit:hover:not(:disabled) .pdp-buy__submit-arrow {
  transform: translateX(8px);
  color: #fff;
}

.pdp-buy__submit:hover:not(:disabled) .pdp-buy__submit-underline {
  width: 100%;
}

.pdp-buy__submit:active:not(:disabled) {
  transform: translateY(1px);
}

.pdp-buy__submit:disabled {
  background: var(--color-fg-muted);
  cursor: not-allowed;
  opacity: 0.5;
}

.pdp-buy__submit:disabled::before,
.pdp-buy__submit:disabled .pdp-buy__submit-arrow,
.pdp-buy__submit:disabled .pdp-buy__submit-underline {
  display: none;
}

.pdp-buy__reassurance {
  text-align: center;
  font-size: 11px;
  color: var(--color-fg-muted);
  margin: 14px 0 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}

.pdp-buy__reassurance span[aria-hidden="true"] {
  color: var(--color-fg-faint, #C0C0C0);
}

/* ── Express payment buttons (Shopify built-in) ── */
.pdp-buy__express {
  margin-top: 10px;
}

.pdp-buy__express .shopify-payment-button {
  width: 100%;
}

.pdp-buy__express .shopify-payment-button__button {
  width: 100%;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 0 !important;
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
}

.pdp-buy__express .shopify-payment-button__more-options {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-fg-muted);
  text-decoration: underline;
  margin-top: 10px;
  text-align: center;
  display: block;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Form error ── */
.pdp-top__info .form-error {
  margin-top: 10px;
  font-size: 12px;
  color: #B00020;
}

.pdp-top__info .form-error:empty {
  display: none;
}

/* ── Hero trust strip (below CTA) ── */
.pdp-hero-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pdp-hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-fg-muted);
  letter-spacing: 0.02em;
}

.pdp-hero-trust__item svg {
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 399px) {
  .pdp-hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── Concierge card (human contact, replaces ask-specialist link) ── */
.pdp-concierge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.pdp-concierge__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.pdp-concierge__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.pdp-concierge__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: var(--color-fg);
  letter-spacing: 0.01em;
}

.pdp-concierge__sub {
  font-size: 11px;
  color: var(--color-fg-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.pdp-concierge__link {
  font-size: 12px;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 3px;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
  word-break: break-all;
}

.pdp-concierge__link:hover {
  gap: 8px;
}

/* ══════════════════════════════════════════
   USP STRIP
   ══════════════════════════════════════════ */

/* USP STRIP — Customer Promise (editorial row) */
.pdp-usps-wrap {
  padding: 72px var(--page-margin);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  margin-top: var(--space-3xl);
}

.pdp-usps__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 40px;
}

.pdp-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.pdp-usps__item {
  position: relative;
  padding: 24px 28px;
  text-align: left;
  cursor: default;
}

.pdp-usps__item + .pdp-usps__item {
  border-left: 1px solid var(--color-border);
}

.pdp-usps__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.pdp-usps__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(74, 74, 138, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 22px;
}

.pdp-usps__icon-wrap svg {
  display: block;
  width: 24px;
  height: 24px;
}

.pdp-usps__heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-fg);
  line-height: 1.3;
  margin: 0 0 6px;
}

.pdp-usps__text {
  font-size: 12px;
  color: var(--color-fg-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 899px) {
  .pdp-usps-wrap { padding: 56px var(--page-margin); }
  .pdp-usps { grid-template-columns: repeat(2, 1fr); }
  .pdp-usps__item:nth-child(odd) { border-left: none; }
  .pdp-usps__item:nth-child(n+3) { border-top: 1px solid var(--color-border); padding-top: 40px; }
  .pdp-usps__item:nth-child(n+3) .pdp-usps__num { top: 40px; }
}

@media (max-width: 499px) {
  .pdp-usps { grid-template-columns: 1fr; }
  .pdp-usps__item { border-left: none !important; padding: 28px 0; }
  .pdp-usps__item + .pdp-usps__item { border-top: 1px solid var(--color-border); }
  .pdp-usps__num { top: 28px; right: 0; }
  .pdp-usps__item:nth-child(n+3) { padding-top: 28px; }
  .pdp-usps__item:nth-child(n+3) .pdp-usps__num { top: 28px; }
}

/* ══════════════════════════════════════════
   SPECIFICATIONS — 2-col dt/dd grid
   ══════════════════════════════════════════ */

.pdp-specs {
  max-width: 720px;
  margin: 80px auto 0;
  padding-inline: var(--page-margin);
}

.pdp-specs__list {
  display: grid;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.pdp-specs__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-lg);
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  line-height: 1.45;
}

.pdp-specs__row:nth-child(even) {
  background: var(--color-bg-alt);
}

.pdp-specs__row dt {
  color: var(--color-fg-muted);
  margin: 0;
  font-weight: 400;
}

.pdp-specs__row dd {
  color: var(--color-fg);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 599px) {
  .pdp-specs__row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 14px;
  }
  .pdp-specs__row dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
}

/* ══════════════════════════════════════════
   FEATURE ROWS — Editorial Stories (full-bleed, numbered, magazine)
   ══════════════════════════════════════════ */

.pdp-features {
  margin: 0 calc(-1 * var(--page-margin));
}

.pdp-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--color-bg);
}

.pdp-feature--alt {
  background: var(--color-bg-alt);
}

@media (max-width: 899px) {
  .pdp-feature {
    grid-template-columns: 1fr;
  }
}

/* ── Media side ── */
.pdp-feature__media {
  background: var(--color-bg-product);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.pdp-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-feature:hover .pdp-feature__img {
  transform: scale(1.03);
}

/* Fallback when no image — accent-tinted editorial panel */
.pdp-feature__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px;
  background:
    radial-gradient(circle at 20% 30%, rgba(74,74,138,0.14) 0%, transparent 55%),
    linear-gradient(135deg, rgba(74,74,138,0.10) 0%, rgba(74,74,138,0.02) 100%);
}

.pdp-feature__fallback-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.pdp-feature__fallback-heading {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-accent);
  margin-top: 14px;
  max-width: 10ch;
}

@media (max-width: 899px) {
  .pdp-feature__fallback { padding: 40px var(--page-margin); }
  .pdp-feature__fallback-heading { font-size: 40px; }
}

/* ── Content side ── */
.pdp-feature__content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.pdp-feature__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.pdp-feature__rule {
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 22px;
}

.pdp-feature__heading {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  max-width: 14ch;
  color: var(--color-fg);
}

.pdp-feature__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-fg-muted);
  margin: 0;
  max-width: 48ch;
}

@media (max-width: 1199px) {
  .pdp-feature__content { padding: 64px 48px; }
  .pdp-feature__heading { font-size: 32px; }
}

@media (max-width: 899px) {
  .pdp-feature__content { padding: 48px var(--page-margin); max-width: none; }
  .pdp-feature__heading { font-size: 28px; }
}

/* ── Reversed row: text left, image right ── */
.pdp-feature--reverse .pdp-feature__media {
  order: 2;
}

.pdp-feature--reverse .pdp-feature__content {
  order: 1;
  margin-left: auto;
}

@media (max-width: 899px) {
  .pdp-feature--reverse .pdp-feature__media { order: 0; }
  .pdp-feature--reverse .pdp-feature__content { order: 0; margin-left: 0; }
}

/* ══════════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════════ */

.pdp-video-section {
  max-width: 1200px;
  margin: 80px auto;
  padding-inline: var(--page-margin);
}

.pdp-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.pdp-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.pdp-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ══════════════════════════════════════════
   DETAILS: Accordion
   ══════════════════════════════════════════ */

.pdp-details {
  max-width: 600px;
  margin: 80px auto;
  padding-inline: var(--page-margin);
}

.pdp-details .accordion__item summary {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.pdp-details .accordion__content {
  font-size: 14px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   RECOMMENDATIONS
   ══════════════════════════════════════════ */

.pdp-recommendations {
  padding: 80px var(--page-margin);
  border-top: 1px solid var(--color-border);
}

/* ── Legacy compat — keep old classes working ── */
.product__vendor { font-size: 11px; color: var(--color-fg-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.product__title { font-size: 28px; font-weight: 300; }
.product__price { font-size: 18px; font-weight: 500; }
.product__price s { color: var(--color-fg-muted); margin-right: 8px; font-weight: 400; }
.product__description { font-size: 14px; line-height: 1.7; color: var(--color-fg-muted); }
.product__form { display: flex; flex-direction: column; gap: 1rem; }
.product__variants { display: flex; flex-direction: column; gap: 12px; }
.product__quantity { display: flex; align-items: center; gap: 8px; }
.product__quantity input { width: 4rem; text-align: center; padding: 10px; border: 1px solid var(--color-border); }

/* ========================================
   Cart
   ======================================== */

.cart-items {
  width: 100%;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.cart-item img {
  width: 80px;
  aspect-ratio: 1;
  object-fit: cover;
  background-color: var(--color-bg-product);
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__title {
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}

.cart-item__remove {
  font-size: 12px;
  color: var(--color-fg-muted);
}

.cart-footer {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.cart-footer__subtotal {
  font-size: 18px;
  font-weight: 500;
}

.cart-footer__note {
  font-size: 12px;
  color: var(--color-fg-muted);
}

/* ========================================
   Section spacing
   ======================================== */

.section-padding {
  padding-block: var(--space-4xl);
}

/* ========================================
   Grid utilities (legacy support)
   ======================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); }

/* ========================================
   Rich text
   ======================================== */

.rte {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-fg-muted);
}

.rte a {
  color: var(--color-accent);
  text-decoration: underline;
}

.rte p + p {
  margin-top: 1em;
}

/* ========================================
   Collection page
   ======================================== */

.collection-header {
  padding-bottom: var(--space-2xl);
}

.collection-header h1 {
  font-size: 32px;
  font-weight: 300;
  margin-top: var(--space-xs);
}

.collection-header p {
  font-size: 14px;
  color: var(--color-fg-muted);
  margin-top: var(--space-sm);
  max-width: 36rem;
}

/* ══ Collection hero (full-bleed banner) ══ */
.collection-hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: var(--space-3xl);
}

.collection-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

/* Fallback backdrop when no collection image uploaded */
.collection-hero--fallback {
  background:
    radial-gradient(circle at 15% 30%, rgba(74,74,138,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(74,74,138,0.08) 0%, rgba(74,74,138,0.02) 100%);
}

.collection-hero__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
  overflow: hidden;
  pointer-events: none;
}

.collection-hero__watermark {
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: rgba(74, 74, 138, 0.08);
  line-height: 0.9;
  white-space: nowrap;
  text-transform: uppercase;
}

.collection-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 56px var(--page-margin);
  color: var(--color-fg);
}

.collection-hero--image .collection-hero__content { color: #fff; }

.collection-hero__breadcrumb {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.collection-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.15s;
}

.collection-hero__breadcrumb a:hover { opacity: 1; }
.collection-hero__breadcrumb span[aria-current] { font-weight: 500; }
.collection-hero__breadcrumb span[aria-hidden] { opacity: 0.4; }

.collection-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.8;
  margin: 0 0 12px;
}

.collection-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: inherit;
}

.collection-hero__description {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 56ch;
  opacity: 0.85;
  color: inherit;
}

@media (max-width: 749px) {
  .collection-hero {
    min-height: 220px;
    margin-bottom: var(--space-2xl);
  }
  .collection-hero__content { padding: 32px var(--page-margin); }
  .collection-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .collection-hero__description { font-size: 13px; }
}

/* --- Sidebar + grid layout --- */
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* --- Toolbar --- */
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.collection-toolbar__count {
  font-size: 13px;
  color: var(--color-fg-muted);
}

.collection-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.collection-toolbar__sort label {
  font-size: 13px;
  color: var(--color-fg-muted);
}

.collection-toolbar__sort select {
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-size: 13px;
  font-family: var(--font-primary);
  background: var(--color-bg);
  cursor: pointer;
}

.collection-toolbar__filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-primary);
  background: none;
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  cursor: pointer;
}

/* --- Sidebar --- */
.collection-sidebar {
  position: sticky;
  top: 80px;
}

/* --- Breadcrumb in sidebar --- */
.filter-breadcrumb {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.filter-breadcrumb a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-fg-muted);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s;
}

.filter-breadcrumb a:hover {
  color: var(--color-fg);
}

.filter-breadcrumb__current {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fg);
  padding: 3px 0 0 12px;
}

/* --- Active filter tags --- */
.filter-active {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.filter-active__tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-fg);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.filter-active__tag span {
  font-size: 14px;
  line-height: 1;
}

.filter-active__tag:hover {
  border-color: var(--color-fg-muted);
}

.filter-active__clear {
  font-size: 12px;
  color: var(--color-accent);
  text-decoration: none;
  padding: 4px 0;
}

/* --- Filter groups --- */
.filter-group {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* --- Checkbox options --- */
.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 13px;
}

.filter-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-option__check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}

.filter-option input:checked + .filter-option__check {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.filter-option input:checked + .filter-option__check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.filter-option:hover .filter-option__check {
  border-color: var(--color-fg-muted);
}

.filter-option__label {
  color: var(--color-fg);
  flex: 1;
}

.filter-option__count {
  color: var(--color-fg-faint);
  font-size: 12px;
}

/* --- Price filter --- */
.filter-group__price {
  margin: 0;
}

.filter-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price-field {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  padding: 0 8px;
  flex: 1;
}

.filter-price-field__currency {
  font-size: 13px;
  color: var(--color-fg-muted);
}

.filter-price-field input {
  width: 100%;
  border: none;
  padding: 8px 4px;
  font-size: 13px;
  font-family: var(--font-primary);
  background: transparent;
  outline: none;
}

.filter-price-row__sep {
  font-size: 12px;
  color: var(--color-fg-muted);
}

.filter-price-submit {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-price-submit:hover {
  opacity: 0.85;
}

/* --- Mobile filter overlay --- */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 89;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

body.filter-open .filter-overlay {
  opacity: 1;
  visibility: visible;
}

/* --- Responsive --- */
@media (max-width: 899px) {
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    background: var(--color-bg);
    z-index: 90;
    overflow-y: auto;
    padding: var(--space-xl);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .collection-sidebar.is-open {
    transform: translateX(0);
  }

  .collection-toolbar__filter-btn {
    display: flex;
  }
}

/* ========================================
   Accordion (details/summary)
   ======================================== */

.accordion {
  border-top: 1px solid var(--color-border);
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.accordion__item summary::-webkit-details-marker {
  display: none;
}

.accordion__item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 300;
  color: var(--color-fg-muted);
  transition: transform 0.2s;
}

.accordion__item[open] summary::after {
  content: '−';
}

.accordion__item summary > .accordion__label {
  flex: 1;
}

.accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.accordion__icon svg {
  display: block;
}

.accordion__item .accordion__content {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-fg-muted);
}

/* ========================================
   Cart drawer — Premium
   ======================================== */

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay-dark, rgba(0, 0, 0, 0.45));
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--color-bg);
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

/* ─── Header ─── */
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cart-drawer__count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: var(--color-fg);
  color: var(--color-bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 11px;
  transition: transform 0.25s ease;
}

.cart-drawer__count-pill.is-bump {
  animation: pill-bump 0.35s ease;
}

@keyframes pill-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-fg);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.cart-drawer__close:hover {
  opacity: 0.6;
}

/* ─── Slim progress bar (sits just above subtotal) ─── */
.cart-progress--slim {
  padding: 0 0 10px;
  margin-bottom: 2px;
}

.cart-progress[hidden] {
  display: none;
}

.cart-progress--slim .cart-progress__row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.cart-progress__icon {
  color: var(--color-fg-muted);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.cart-progress.is-complete .cart-progress__icon {
  color: #1A8F5B;
}

.cart-progress--slim .cart-progress__message {
  font-size: 11px;
  line-height: 1.35;
  color: var(--color-fg-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

.cart-progress__message strong {
  color: var(--color-fg);
  font-weight: 600;
}

.cart-progress__hint {
  color: var(--color-accent);
  font-weight: 500;
}

.cart-progress--slim .cart-progress__bar {
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.cart-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.cart-progress__fill.is-complete {
  background: #1A8F5B;
}

/* ─── Body (scrolling area) ─── */
.cart-drawer__body {
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
}

.cart-drawer__items[hidden] {
  display: none;
}

.cart-drawer__items .cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease, border-color 0.3s ease;
}

.cart-drawer__items .cart-item:last-child {
  border-bottom: none;
}

.cart-drawer__items .cart-item.is-removing {
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
}

.cart-item__media {
  display: block;
  width: 72px;
  height: 72px;
  background: var(--color-bg-product, #F5F4F1);
  overflow: hidden;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item__title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-fg);
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-item__title:hover {
  text-decoration: underline;
}

.cart-item__variant {
  font-size: 11px;
  color: var(--color-fg-muted);
  margin: 0;
}

.cart-item__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--color-fg-muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.cart-item__remove:hover {
  color: var(--color-fg);
}

.cart-item__line-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-fg);
  white-space: nowrap;
  margin: 0;
  align-self: start;
}

/* Tighter qty selector inside drawer */
.cart-drawer__items .qty-selector button {
  width: 28px;
  height: 28px;
  font-size: 14px;
}

.cart-drawer__items .qty-selector input {
  width: 32px;
  height: 28px;
  font-size: 12px;
}

/* ─── Empty state ─── */
.cart-drawer__empty[hidden] {
  display: none;
}

.cart-empty {
  text-align: center;
  padding: 32px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-empty__icon {
  color: var(--color-fg-muted);
  margin-bottom: 16px;
}

.cart-empty__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.cart-empty__text {
  font-size: 13px;
  color: var(--color-fg-muted);
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 28ch;
}

.cart-empty__cta {
  margin-top: 4px;
}

/* ─── Upsell carousel ─── */
.cart-upsell[hidden] {
  display: none;
}

.cart-upsell__title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 10px;
}

.cart-upsell__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -24px;
  padding: 0 24px 4px;
}

.cart-upsell__scroll::-webkit-scrollbar { display: none; }

.cart-upsell__skeleton {
  display: flex;
  gap: 8px;
}

.cart-upsell__skeleton div {
  width: 110px;
  height: 150px;
  background: linear-gradient(90deg, #f5f5f5 0%, #ececec 50%, #f5f5f5 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.cart-upsell-card {
  flex: 0 0 110px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 6px;
  transition: border-color 0.2s;
}

.cart-upsell-card:hover {
  border-color: var(--color-fg-muted);
}

.cart-upsell-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-product, #F5F4F1);
  margin-bottom: 6px;
  overflow: hidden;
}

.cart-upsell-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-upsell-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 36px;
}

.cart-upsell-card__title {
  font-size: 10px;
  line-height: 1.3;
  color: var(--color-fg);
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-upsell-card__price {
  font-size: 11px;
  font-weight: 600;
  margin: 2px 0 0;
}

.cart-upsell-card__price s {
  color: var(--color-fg-muted);
  font-weight: 400;
  margin-right: 3px;
  font-size: 10px;
}

.cart-upsell-card__add {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}

.cart-upsell-card__add svg {
  width: 11px;
  height: 11px;
}

.cart-upsell-card__add:hover {
  transform: scale(1.1);
}

.cart-upsell-card__add.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-upsell-card__add.is-added {
  background: #1A8F5B;
  animation: add-pop 0.5s ease;
}

@keyframes add-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.cart-upsell-card__soldout {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-fg-muted);
  background: var(--color-bg);
  padding: 2px 4px;
  border: 1px solid var(--color-border);
}

/* ─── Free-delivery filler highlight ─── */
.cart-upsell-card.is-free-shipping-filler {
  border-color: #1A8F5B;
  flex-basis: 124px;
}

.cart-upsell-card__filler-tag {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: #1A8F5B;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

.cart-upsell-card__filler-tag svg {
  flex-shrink: 0;
}

.cart-upsell-card.is-free-shipping-filler .cart-upsell-card__media {
  margin-top: 18px;
}

/* ─── Footer ─── */
.cart-drawer__footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-bg);
}

/* ─── Whisper trust line (single tiny row at the very bottom) ─── */
.cart-trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-fg-muted);
  margin: 8px 0 0;
  padding: 0;
}

.cart-trust-line > span:not(.cart-trust-line__sep) {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.cart-trust-line svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.cart-trust-line__sep {
  color: var(--color-fg-faint, #C0C0C0);
  font-weight: 400;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.cart-drawer__subtotal-label {
  letter-spacing: 0.02em;
}

.cart-drawer__subtotal-value {
  font-size: 17px;
  font-weight: 600;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.cart-drawer__subtotal-value.is-flash {
  animation: subtotal-flash 0.5s ease;
}

@keyframes subtotal-flash {
  0%   { color: var(--color-accent); transform: scale(1.04); }
  100% { color: var(--color-fg);     transform: scale(1); }
}

.cart-klarna-msg {
  font-size: 12px;
  color: var(--color-fg-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.cart-klarna-msg[hidden] {
  display: none;
}

.cart-klarna-msg strong {
  color: var(--color-fg);
  font-weight: 600;
}

.klarna-badge {
  display: inline-block;
  padding: 1px 6px;
  background: #FFA8CD;
  color: #0B051D;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cart-drawer__note {
  font-size: 11px;
  text-align: center;
  color: var(--color-fg-muted);
  margin: 4px 0 4px;
}

.cart-drawer__footer .button--full {
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
}

.cart-drawer__footer .button--ghost {
  background: none;
  color: var(--color-fg-muted);
  border: none;
  font-size: 12px;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-drawer__footer .button--ghost:hover {
  color: var(--color-fg);
}

.cart-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-payment-icons__item {
  display: inline-flex;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.cart-payment-icons__item:hover {
  opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 499px) {
  .cart-drawer {
    width: 100vw;
  }
  .cart-drawer__body {
    padding: 16px 20px;
  }
  .cart-drawer__footer {
    padding: 14px 20px 18px;
  }
  .cart-upsell__scroll {
    margin: 0 -20px;
    padding: 0 20px 4px;
  }
  .cart-upsell-card {
    flex-basis: 140px;
  }
  .cart-trust-badges__item {
    font-size: 9px;
  }
  .cart-payment-icons {
    flex-wrap: wrap;
    gap: 3px;
  }
}

/* ========================================
   Quantity selector
   ======================================== */

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.qty-selector button {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fg);
}

.qty-selector button:hover {
  background: var(--color-bg-alt);
}

.qty-selector input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 13px;
  font-family: var(--font-primary);
  -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ========================================
   Predictive search
   ======================================== */

.predictive-search {
  position: relative;
}

.predictive-search__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: none;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.predictive-search__results.is-open {
  display: block;
}

.predictive-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--color-fg);
  transition: background-color 0.15s;
}

.predictive-search__item:hover,
.predictive-search__item[aria-selected="true"] {
  background: var(--color-bg-alt);
}

.predictive-search__item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--color-bg-product);
}

.predictive-search__item-info {
  flex: 1;
}

.predictive-search__item-title {
  font-size: 13px;
  font-weight: 400;
}

.predictive-search__item-price {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-fg-muted);
}

.predictive-search__item-type {
  font-size: 11px;
  color: var(--color-fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.predictive-search__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-fg-faint);
  padding: 12px 16px 4px;
}

/* ========================================
   Blog card
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 749px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  text-decoration: none;
  color: var(--color-fg);
  display: block;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--color-bg-product);
}

.blog-card__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-fg-faint);
  margin-top: 16px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 300;
  margin-top: 8px;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.blog-card:hover img {
  opacity: 0.85;
}

/* ========================================
   Article
   ======================================== */

.article-header {
  margin-bottom: var(--space-2xl);
}

.article-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-fg-faint);
  margin-top: var(--space-sm);
}

.article-image {
  margin-bottom: var(--space-2xl);
}

.article-image img {
  width: 100%;
}

.article-content {
  max-width: 42rem;
}

.article-comments {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.article-comments .form-grid {
  margin-top: var(--space-xl);
  max-width: 32rem;
}

.comment {
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.comment__author {
  font-weight: 500;
  font-size: 14px;
}

.comment__date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-fg-faint);
}

.comment__body {
  margin-top: var(--space-xs);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-fg-muted);
}

/* ========================================
   Customer pages
   ======================================== */

.customer-page {
  max-width: 24rem;
  margin-inline: auto;
}

.customer-page--wide {
  max-width: 48rem;
  margin-inline: auto;
}

.customer-page .form-grid,
.customer-page--wide .form-grid {
  margin-top: var(--space-xl);
}

.customer-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.customer-page__links {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-top: var(--space-md);
}

.order-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.order-addresses h3 {
  margin-bottom: var(--space-sm);
}

.order-addresses p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-fg-muted);
}

/* ========================================
   Form error
   ======================================== */

.form-error {
  color: var(--color-error);
  font-size: 13px;
}

/* ========================================
   Utility classes
   ======================================== */

.hidden {
  display: none !important;
}

.text-right {
  text-align: right;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.table-wrap {
  margin-top: var(--space-md);
  overflow-x: auto;
}

.cart-item__variant {
  font-size: 13px;
  color: var(--color-fg-muted);
}

.cart-item__line-price {
  font-size: 14px;
  font-weight: 500;
}

.cart-form {
  margin-top: var(--space-2xl);
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-footer__actions {
  display: flex;
  gap: 0.75rem;
}

/* ========================================
   Page content
   ======================================== */

/* ══════════════════════════════════════════
   POLICY / PAGE TEMPLATE
   ══════════════════════════════════════════ */

.policy-page {
  grid-column: 1 / -1;
}

/* ── Hero banner ── */

.policy-page__hero {
  background: var(--color-bg-product);
  padding: 72px 48px 64px;
  text-align: center;
}

.policy-page__breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 12px;
  color: var(--color-fg-muted);
}

.policy-page__breadcrumb li + li::before {
  content: '/';
  margin: 0 10px;
  color: var(--color-fg-faint);
}

.policy-page__breadcrumb a {
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.policy-page__breadcrumb a:hover {
  color: var(--color-fg);
}

.policy-page__title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  max-width: 600px;
  margin-inline: auto;
}

@media (max-width: 749px) {
  .policy-page__title {
    font-size: 28px;
  }
}

.policy-page__meta {
  font-size: 12px;
  color: var(--color-fg-faint);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ── Two-column layout: sidebar + body ── */

.policy-page__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  max-width: 960px;
  margin-inline: auto;
  padding: 64px 48px 96px;
  align-items: start;
}

@media (max-width: 899px) {
  .policy-page__layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 24px 72px;
  }
}

/* ── Sidebar: table of contents ── */

.policy-page__sidebar {
  position: sticky;
  top: 100px;
}

@media (max-width: 899px) {
  .policy-page__sidebar {
    position: static;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
  }
}

.policy-page__sidebar-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-fg-faint);
  margin-bottom: 16px;
}

.policy-page__toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-page__toc li {
  margin-bottom: 0;
}

.policy-page__toc a {
  display: block;
  padding: 7px 0;
  font-size: 13px;
  color: var(--color-fg-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 14px;
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4;
}

.policy-page__toc a:hover {
  color: var(--color-fg);
  border-left-color: var(--color-fg);
}

/* ── Body content ── */

.policy-page__body {
  min-width: 0;
}

.policy-page__content h2 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 8px;
  scroll-margin-top: 80px;
}

.policy-page__content h2:first-child {
  margin-top: 0;
}

.policy-page__content h3 {
  font-size: 17px;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 12px;
}

.policy-page__content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-fg-muted);
  margin-bottom: 18px;
}

.policy-page__content ul,
.policy-page__content ol {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-fg-muted);
  padding-left: 24px;
  margin-bottom: 18px;
}

.policy-page__content li {
  margin-bottom: 8px;
}

.policy-page__content li::marker {
  color: var(--color-accent);
}

.policy-page__content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.policy-page__content a:hover {
  opacity: 0.7;
}

.policy-page__content strong {
  font-weight: 500;
  color: var(--color-fg);
}

.policy-page__content blockquote {
  border-left: 2px solid var(--color-accent);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--color-fg-muted);
  font-style: italic;
}

.policy-page__content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 48px 0;
}

/* Legacy compat */
.page-content {
  max-width: 48rem;
}

.page-content .rte {
  margin-top: var(--space-2xl);
}

/* ========================================
   Collection card (list-collections)
   ======================================== */

.collection-card {
  text-decoration: none;
  color: var(--color-fg);
  display: block;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--color-bg-product);
}

.collection-card h3 {
  font-size: 15px;
  font-weight: 400;
  margin-top: 14px;
}

.collection-card .sub {
  font-size: 12px;
  color: var(--color-fg-faint);
  margin-top: var(--space-2xs);
}

.collection-card:hover img {
  opacity: 0.85;
}

/* ========================================
   Product recommendations
   ======================================== */

.product-recommendations {
  padding-block: var(--space-4xl);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-3xl);
}

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════ */

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  animation: cookie-slide-up 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookie-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
}

.cookie-consent__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}

.cookie-consent__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-fg-muted);
  margin: 0;
}

.cookie-consent__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid var(--color-fg);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-consent__btn--ghost {
  background: transparent;
  color: var(--color-fg);
}
.cookie-consent__btn--ghost:hover {
  background: var(--color-bg-alt);
}

.cookie-consent__btn--primary {
  background: var(--color-fg);
  color: var(--color-bg);
}
.cookie-consent__btn--primary:hover {
  background: #000;
}

@media (max-width: 699px) {
  .cookie-consent {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-consent__actions {
    width: 100%;
  }
  .cookie-consent__btn {
    flex: 1;
  }
}

/* ══════════════════════════════════════════
   POLICY / LEGAL PAGES
   ══════════════════════════════════════════ */

.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px var(--page-margin) 120px;
}

.page-content__header {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.page-content__header h1 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-content__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-fg);
}

.page-content__body h2 {
  font-size: 26px;
  font-weight: 300;
  margin: 48px 0 16px;
  letter-spacing: -0.005em;
}
.page-content__body h2:first-child { margin-top: 0; }

.page-content__body h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 36px 0 12px;
  color: var(--color-fg);
}

.page-content__body p {
  margin: 0 0 16px;
  color: var(--color-fg-muted);
}

.page-content__body ul,
.page-content__body ol {
  padding-left: 20px;
  margin: 0 0 20px;
  color: var(--color-fg-muted);
}

.page-content__body ul li,
.page-content__body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-content__body strong {
  color: var(--color-fg);
  font-weight: 600;
}

.page-content__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content__body table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.page-content__body th,
.page-content__body td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.page-content__body th {
  font-weight: 600;
  background: var(--color-bg-alt);
}

.page-content__body em {
  color: var(--color-fg-faint, #888);
  font-style: normal;
  font-size: 12px;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

.contact-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--page-margin);
}

.contact-page__head {
  text-align: center;
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 60px;
}

.contact-page__title {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 12px 0 14px;
}

.contact-page__intro {
  font-size: 15px;
  color: var(--color-fg-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 80px;
}

@media (max-width: 899px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.contact-page__channels {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.contact-channel__icon {
  color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-channel h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 4px;
}

.contact-channel p {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin: 0 0 6px;
  line-height: 1.5;
}

.contact-channel a,
.contact-channel address {
  font-size: 14px;
  color: var(--color-fg);
  text-decoration: none;
  font-style: normal;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.contact-channel a:hover {
  border-color: var(--color-fg);
}

/* ── Contact form ── */
.contact-page__form-title {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg);
}

.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-fg);
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-fg);
}

.contact-form__submit {
  margin-top: 8px;
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--color-fg);
  color: var(--color-bg);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form__submit:hover {
  background: #000;
}

.contact-form__success,
.contact-form__errors {
  padding: 16px 18px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
  margin-bottom: 20px;
}

.contact-form__success p,
.contact-form__errors p {
  font-size: 13px;
  margin: 0 0 4px;
  line-height: 1.5;
  color: var(--color-fg);
}

.contact-form__errors {
  border-color: #B00020;
}

/* ══════════════════════════════════════════
   CART PAGE (full cart, premium)
   ══════════════════════════════════════════ */

.cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--page-margin);
}

.cart-page__header {
  text-align: center;
  padding: 40px 0 56px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 56px;
}

.cart-page__title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 12px 0 0;
}

.cart-page__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 899px) {
  .cart-page__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Items ── */
.cart-page__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-page__item:first-child { padding-top: 0; }

.cart-page__item-media {
  display: block;
  width: 100px;
  height: 100px;
  background: var(--color-bg-product);
}

.cart-page__item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cart-page__item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-page__item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.cart-page__item-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-fg);
  text-decoration: none;
  line-height: 1.35;
  flex: 1;
}

.cart-page__item-title:hover { text-decoration: underline; }

.cart-page__item-remove {
  background: none;
  border: none;
  color: var(--color-fg-muted);
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cart-page__item-remove:hover { color: var(--color-fg); }

.cart-page__item-variant {
  font-size: 12px;
  color: var(--color-fg-muted);
  margin: 0;
}

.cart-page__item-unit {
  font-size: 13px;
  color: var(--color-fg);
  margin: 0;
  font-weight: 400;
}

.cart-page__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cart-page__item-line-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-fg);
  margin: 0;
}

.cart-page__continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.cart-page__continue:hover { color: var(--color-fg); }

/* ── Summary sidebar ── */
.cart-page__summary {
  position: sticky;
  top: 100px;
}

.cart-page__summary-inner {
  padding: 28px 28px 32px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.cart-page__summary-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.cart-page__summary .cart-progress { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }

.cart-page__summary-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-fg);
}

.cart-page__summary-row--muted { color: var(--color-fg-muted); font-size: 13px; }

.cart-page__summary-row--total {
  font-size: 16px;
  font-weight: 600;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
}

.cart-page__summary .cart-klarna-msg {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart-page__checkout {
  width: 100%;
  height: 56px;
  background: var(--color-fg);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  margin-top: 4px;
  margin-bottom: 18px;
}

.cart-page__checkout:hover { background: #000; }

.cart-page__summary .cart-trust-badges {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.cart-page__summary .cart-payment-icons {
  padding-top: 0;
  border-top: none;
}

/* ── Empty state ── */
.cart-page__empty {
  max-width: 480px;
  margin: 48px auto 0;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  color: var(--color-fg-muted);
}

.cart-page__empty svg {
  color: var(--color-fg-muted);
  margin-bottom: 20px;
}

.cart-page__empty h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-fg);
  margin: 0 0 10px;
}

.cart-page__empty p {
  font-size: 14px;
  margin: 0 0 24px;
}

/* ══════════════════════════════════════════
   ACCOUNT — Auth (login/register)
   ══════════════════════════════════════════ */

.account-auth {
  max-width: 440px;
  margin: 0 auto;
  padding: 48px var(--page-margin);
}

.account-auth__header { text-align: center; margin-bottom: 36px; }

.account-auth__title {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 10px 0 12px;
}

.account-auth__sub {
  font-size: 14px;
  color: var(--color-fg-muted);
  line-height: 1.6;
  margin: 0;
}

.account-auth__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.account-auth__field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg);
}

.account-auth__field input {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-fg);
  transition: border-color 0.2s;
}

.account-auth__field input:focus {
  outline: none;
  border-color: var(--color-fg);
}

.account-auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-auth__row .account-auth__field { margin-bottom: 16px; }

.account-auth__submit {
  width: 100%;
  height: 52px;
  background: var(--color-fg);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.account-auth__submit:hover { background: #000; }

.account-auth__links {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-fg-muted);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.account-auth__links a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
}

.account-auth__links a:hover { border-color: var(--color-accent); }

.account-auth__links span[aria-hidden] { color: var(--color-fg-faint, #C0C0C0); }

.account-auth__recover {
  border-top: 1px solid var(--color-border);
  padding-top: 36px;
  margin-top: 36px;
}

.account-auth__recover h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
}

.account-auth__recover p {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin: 0 0 20px;
}

.account-auth__errors,
.account-auth__success {
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13px;
  border-left: 3px solid #B00020;
  background: var(--color-bg-alt);
}

.account-auth__success { border-left-color: #1A8F5B; }

/* ══════════════════════════════════════════
   ACCOUNT — Dashboard
   ══════════════════════════════════════════ */

.account {
  padding-top: 40px;
}

.account__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: var(--page-margin);
}

.account__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-fg-muted);
  text-decoration: none;
  margin-bottom: 20px;
}

.account__back:hover { color: var(--color-fg); }

.account__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.account__greeting {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 10px 0 0;
}

.account__logout {
  font-size: 13px;
  color: var(--color-fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
}

.account__logout:hover { color: var(--color-fg); }

.account__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 899px) {
  .account__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Sidebar ── */
.account__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.account__nav a {
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.15s;
}

.account__nav a:hover { color: var(--color-fg); }

.account__nav a.is-current {
  color: var(--color-fg);
  font-weight: 600;
}

.account__card {
  padding: 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.account__card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 6px;
}

.account__card-value {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-fg);
  margin: 0;
}

.account__section-title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px;
}

/* ── Orders list ── */
.account__orders {
  display: flex;
  flex-direction: column;
}

.account__order {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: -1px;
}

.account__order:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-fg-muted);
  position: relative;
  z-index: 1;
}

.account__order-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.account__order-number {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-fg);
  margin-right: 12px;
}

.account__order-date {
  font-size: 12px;
  color: var(--color-fg-muted);
}

.account__order-total {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-fg);
}

.account__order-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account__order-status--paid,
.account__order-status--fulfilled { color: #1A8F5B; }

.account__order-status--refunded,
.account__order-status--unfulfilled { color: var(--color-fg-muted); }

.account__order-status--cancelled,
.account__order-status--voided { color: #B00020; }

.account__order-arrow {
  margin-left: auto;
  color: var(--color-fg-muted);
}

.account__empty {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  color: var(--color-fg-muted);
}

.account__empty p { margin: 0 0 12px; }

/* ══════════════════════════════════════════
   ACCOUNT — Order detail
   ══════════════════════════════════════════ */

.account-order__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 16px;
}

.account-order__title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 10px 0 6px;
}

.account-order__date {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin: 0;
}

.account-order__statuses {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.account-order__status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.account-order__status--paid,
.account-order__status--fulfilled { color: #1A8F5B; border-color: #1A8F5B33; }

.account-order__status--cancelled { color: #B00020; border-color: #B0002033; }

.account-order__banner {
  padding: 14px 18px;
  margin-bottom: 32px;
  border-left: 3px solid var(--color-border);
  background: var(--color-bg-alt);
  font-size: 13px;
}

.account-order__banner--error { border-color: #B00020; }

.account-order__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

@media (max-width: 899px) {
  .account-order__grid { grid-template-columns: 1fr; gap: 32px; }
}

.account-order__section-title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px;
}

.account-order__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.account-order__item:first-of-type { padding-top: 0; }

.account-order__item-media {
  width: 80px;
  height: 80px;
  background: var(--color-bg-product);
}

.account-order__item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.account-order__item-title {
  font-size: 14px;
  color: var(--color-fg);
  margin: 0 0 4px;
}

.account-order__item-variant {
  font-size: 12px;
  color: var(--color-fg-muted);
  margin: 0 0 4px;
}

.account-order__item-meta {
  font-size: 11px;
  color: var(--color-fg-muted);
  letter-spacing: 0.02em;
  margin: 0;
}

.account-order__item-price {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.account-order__summary-inner {
  padding: 24px 24px 28px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.account-order__summary-inner h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.account-order__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--color-fg);
}

.account-order__summary-row--muted { color: var(--color-fg-muted); font-size: 12.5px; }

.account-order__summary-row--total {
  font-size: 15px;
  font-weight: 600;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.account-order__address-block {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.account-order__address-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 6px;
}

.account-order__address {
  font-size: 13px;
  color: var(--color-fg);
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════════
   RECENTLY VIEWED
   ══════════════════════════════════════════ */

.recently-viewed {
  max-width: 1200px;
  margin: 80px auto 40px;
  padding-inline: var(--page-margin);
}

.recently-viewed .section-label {
  margin-bottom: 24px;
}

.recently-viewed__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 999px) {
  .recently-viewed__track { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 699px) {
  .recently-viewed__track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 499px) {
  .recently-viewed__track { grid-template-columns: repeat(2, 1fr); }
}

.recently-viewed__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--color-fg);
  transition: opacity 0.15s;
}

.recently-viewed__card:hover { opacity: 0.85; }

.recently-viewed__media {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-bg-product);
  overflow: hidden;
}

.recently-viewed__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.recently-viewed__title {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-fg);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recently-viewed__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-fg);
  margin: 0;
}

/* ══════════════════════════════════════════
   MEGA MENU
   ══════════════════════════════════════════ */

.site-header__megamenu { position: static; }

/* ── Backdrop scrim ── */
.megamenu-backdrop {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 49;
  pointer-events: none;
}

body.megamenu-open .megamenu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Panel ── */
.megamenu-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 60;
}

.site-header__megamenu button[aria-expanded="true"] + .megamenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-panel__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px var(--page-margin) 64px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: stretch;
}

/* When no promo image set, columns take full width */
.megamenu-panel__cols--full {
  grid-column: 1 / -1;
}

@media (max-width: 999px) {
  .megamenu-panel__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px var(--page-margin) 32px;
  }
}

/* ── Column grid ── */
.megamenu-panel__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
}

@media (max-width: 1199px) {
  .megamenu-panel__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
}

@media (max-width: 749px) {
  .megamenu-panel__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Single column ── */
.megamenu-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Column header (title link) */
.megamenu-col__title-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--color-fg);
  margin-bottom: 20px;
}

.megamenu-col__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-fg-muted, rgba(0, 0, 0, 0.45));
}

.megamenu-col__title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.megamenu-col__title-link:hover .megamenu-col__title {
  color: var(--color-accent, #4A4A8A);
}

/* Product list */
.megamenu-col__products {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
}

.megamenu-col__products li + li {
  margin-top: 2px;
}

.megamenu-col__product {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-fg-muted, rgba(0, 0, 0, 0.72));
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.megamenu-col__product:hover {
  color: var(--color-accent, #4A4A8A);
}

/* View all CTA */
.megamenu-col__viewall {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-fg);
  text-decoration: none;
  align-self: flex-start;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-fg);
  transition: gap 0.2s ease, opacity 0.15s ease;
}

.megamenu-col__viewall:hover {
  gap: 10px;
  opacity: 0.7;
}

.megamenu-col__viewall-arrow {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.megamenu-col__viewall:hover .megamenu-col__viewall-arrow {
  transform: translateX(3px);
}

/* ── Promo side panel ── */
.megamenu-panel__promo {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 280px;
}

.megamenu-panel__promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.megamenu-panel__promo:hover img { transform: scale(1.04); }

.megamenu-panel__promo-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}

.megamenu-panel__promo-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  opacity: 0.9;
}

.megamenu-panel__promo-heading {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 14px;
}

.megamenu-panel__promo-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  display: inline-block;
  align-self: flex-start;
  transition: border-color 0.15s;
}

.megamenu-panel__promo:hover .megamenu-panel__promo-cta { border-color: #fff; }

@media (max-width: 749px) {
  .megamenu-panel { display: none; } /* mobile uses nav drawer */
}

/* ── Account greeting chip ── */
.site-header__account-greeting {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 6px 8px;
  border: 1px solid var(--color-border);
  color: var(--color-fg);
  transition: border-color 0.15s;
}

.site-header__account-greeting:hover {
  border-color: var(--color-fg);
}

.site-header__account-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 749px) {
  .site-header__account-name { display: none; }
}

/* ══════════════════════════════════════════
   PREDICTIVE SEARCH — premium styling
   ══════════════════════════════════════════ */

.predictive-search__results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  max-height: 560px;
  overflow-y: auto;
  z-index: 61;
  display: none;
}

.predictive-search__results.is-open { display: block; }

.predictive-search__heading {
  padding: 14px 18px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.predictive-search__heading:first-child { border-top: none; }

.predictive-search__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--color-fg);
  transition: background 0.12s;
  border-bottom: 1px solid var(--color-border);
}

.predictive-search__item:last-child { border-bottom: none; }

.predictive-search__item:hover,
.predictive-search__item[aria-selected="true"] {
  background: var(--color-bg-alt);
}

.predictive-search__item img,
.predictive-search__item-placeholder {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--color-bg-product);
  padding: 4px;
}

.predictive-search__item-info { min-width: 0; }

.predictive-search__item-vendor {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 2px;
}

.predictive-search__item-title {
  font-size: 13px;
  line-height: 1.3;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.predictive-search__item-price {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.predictive-search__item-type {
  font-size: 11px;
  color: var(--color-fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2px 0 0;
}

.predictive-search__item-arrow {
  color: var(--color-fg-muted);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.predictive-search__item:hover .predictive-search__item-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ══════════════════════════════════════════
   BLOG INDEX
   ══════════════════════════════════════════ */

.blog-index {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--page-margin);
}

.blog-index__header {
  text-align: center;
  padding: 40px 0 64px;
}

.blog-index__title {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 12px 0 14px;
}

.blog-index__intro {
  font-size: 15px;
  color: var(--color-fg-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* Featured article hero card */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-fg);
}

@media (max-width: 899px) {
  .blog-featured { grid-template-columns: 1fr; gap: 24px; }
}

.blog-featured__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured:hover .blog-featured__media img { transform: scale(1.03); }

.blog-featured__title {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 12px 0 16px;
}

.blog-featured__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-fg-muted);
  margin: 0 0 20px;
}

.blog-featured__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 899px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 599px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--color-fg);
}

.blog-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-product);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card__media img { transform: scale(1.03); }

.blog-card__body { display: flex; flex-direction: column; gap: 6px; }

.blog-card__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin: 4px 0 0;
}

.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  margin: 2px 0 0;
}

/* ══════════════════════════════════════════
   ARTICLE PAGE
   ══════════════════════════════════════════ */

.article-page {
  padding-bottom: 80px;
}

.article-hero {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--color-bg-product);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-page__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px var(--page-margin) 0;
}

.article-page__header { margin-bottom: 48px; }

.article-page__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-page__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  color: var(--color-fg-muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.article-page__tag:hover {
  border-color: var(--color-fg);
  color: var(--color-fg);
}

.article-page__title {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}

@media (max-width: 749px) {
  .article-page__title { font-size: 32px; }
}

.article-page__meta {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin: 0;
}

.article-page__meta span {
  font-weight: 600;
  color: var(--color-fg);
}

.article-page__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-fg);
}

.article-page__body p { margin: 0 0 20px; }
.article-page__body h2 { font-size: 28px; font-weight: 400; margin: 48px 0 16px; letter-spacing: -0.005em; }
.article-page__body h3 { font-size: 20px; font-weight: 600; margin: 36px 0 12px; }
.article-page__body img { width: 100%; margin: 32px 0; }
.article-page__body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--color-fg);
  font-style: italic;
}
.article-page__body a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

/* Share */
.article-page__share {
  margin: 56px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
}

.article-page__share span {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}

.article-page__share a {
  color: var(--color-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--color-fg-muted);
  padding-bottom: 1px;
}

.article-page__share a:hover { border-color: var(--color-fg); }

/* Related */
.article-page__related {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--color-border);
}

.article-page__related-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 28px;
  text-align: center;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 749px) { .article-related-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ══════════════════════════════════════════
   WELCOME POPUP
   ══════════════════════════════════════════ */

.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.welcome-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.welcome-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.welcome-popup__card {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 48px 40px 40px;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-popup.is-open .welcome-popup__card {
  transform: translateY(0);
}

.welcome-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: var(--color-fg-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}

.welcome-popup__close:hover { color: var(--color-fg); }

.welcome-popup__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}

.welcome-popup__heading {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.welcome-popup__sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  margin: 0 0 24px;
}

.welcome-popup__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 14px;
}

.welcome-popup__form input {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.welcome-popup__form input:focus {
  outline: none;
  border-color: var(--color-fg);
}

.welcome-popup__form button {
  padding: 0 22px;
  background: var(--color-fg);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.welcome-popup__form button:hover { background: #000; }

.welcome-popup__success {
  padding: 12px 14px;
  background: var(--color-bg-alt);
  border-left: 3px solid #1A8F5B;
  font-size: 13px;
  margin: 12px 0;
}

.welcome-popup__fine {
  font-size: 11px;
  color: var(--color-fg-muted);
  margin: 14px 0 0;
  text-align: center;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════ */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

body.cookie-consent-open .whatsapp-button { bottom: 110px; }
body.pdp-sticky-visible .whatsapp-button { opacity: 0; pointer-events: none; }

@media (max-width: 699px) {
  .whatsapp-button { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  body.cookie-consent-open .whatsapp-button { bottom: 200px; }
}

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER
   ══════════════════════════════════════════ */

.site-footer__locale {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-footer__locale select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 6px 28px 6px 12px;
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-fg);
  cursor: pointer;
  border-radius: 0;
}

.site-footer__locale svg {
  position: absolute;
  right: 10px;
  color: var(--color-fg-muted);
  pointer-events: none;
}

/* ══════════════════════════════════════════
   MOBILE QA FIXES — cross-cutting polish
   ══════════════════════════════════════════ */

/* Touch-friendly tap targets everywhere */
@media (pointer: coarse) {
  .pdp-usps__heading::after,
  .pdp-highlights li::before {
    display: none !important;
  }
  .pdp-buy__submit,
  .account-auth__submit,
  .cart-page__checkout,
  .contact-form__submit {
    min-height: 48px;
  }
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 749px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Ensure images never overflow */
  img, svg, video {
    max-width: 100%;
    height: auto;
  }
}

/* PDP hero — tighter on mobile */
@media (max-width: 749px) {
  .pdp-top__info {
    padding: 28px var(--page-margin) 24px;
  }

  .pdp-top__title {
    font-size: 22px;
    padding-right: 48px;
  }

  .pdp-top__price {
    font-size: 24px;
  }

  .pdp-wishlist {
    width: 36px;
    height: 36px;
    top: 20px;
  }

  .pdp-category__title {
    font-size: 24px;
  }

  .pdp-category__bignum {
    font-size: 34px;
  }

  .pdp-feature__heading {
    font-size: 26px;
  }

  .pdp-feature__fallback-heading {
    font-size: 36px;
  }
}

/* Collection toolbar responsive */
@media (max-width: 599px) {
  .collection-toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .collection-toolbar__count { width: 100%; }
}

/* Stat cards avoid overflow */
@media (max-width: 399px) {
  .pdp-stat-card__value { font-size: 22px; }
  .pdp-stat-card { padding: 20px 14px; }
}

/* Energy badge readable on small screens */
@media (max-width: 399px) {
  .energy-class-badge {
    min-width: 28px;
    height: 22px;
    font-size: 11px;
  }
}

/* Article hero — smaller aspect on mobile */
@media (max-width: 749px) {
  .article-hero { aspect-ratio: 16/10; }
  .article-page__inner { padding-top: 40px; }
}

/* Megamenu hidden on mobile (use drawer) */
@media (max-width: 749px) {
  .site-header__megamenu {
    display: none;
  }
}

/* Cart drawer items: tighter on small */
@media (max-width: 399px) {
  .cart-drawer__items .cart-item {
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
  }
  .cart-item__media { width: 56px; height: 56px; }
  .cart-item__title { font-size: 12px; }
  .cart-item__line-price { font-size: 12px; }
}

/* Contact page mobile tidy */
@media (max-width: 499px) {
  .contact-page__title { font-size: 30px; }
  .contact-page__head { padding: 24px 0 40px; margin-bottom: 40px; }
  .contact-page__grid { padding-bottom: 48px; }
}

/* Account mobile tidy */
@media (max-width: 499px) {
  .account__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .account__greeting { font-size: 26px; }
  .account__order-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Blog featured — stack on narrow */
@media (max-width: 599px) {
  .blog-featured__title { font-size: 26px; }
  .blog-featured { margin-bottom: 48px; padding-bottom: 48px; }
}

/* Welcome popup mobile */
@media (max-width: 499px) {
  .welcome-popup__card {
    padding: 40px 24px 28px;
  }
  .welcome-popup__heading { font-size: 22px; }
  .welcome-popup__form {
    grid-template-columns: 1fr;
  }
  .welcome-popup__form button { padding: 14px; }
}

/* Predictive search mobile */
@media (max-width: 599px) {
  .predictive-search__results {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
  }
  .predictive-search__item {
    grid-template-columns: 48px 1fr;
    padding: 12px 16px;
  }
  .predictive-search__item-arrow { display: none; }
}

/* Breadcrumbs wrap gracefully */
@media (max-width: 499px) {
  .pdp-breadcrumb ol {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* Category-aware PDP showcases — tighter padding on mobile */
@media (max-width: 499px) {
  .pdp-category {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 48px;
  }
  .pdp-category__section { padding: 32px var(--page-margin); }
  .pdp-category__header { padding: 48px var(--page-margin) 20px; }
}

/* ══ Utility variants ══ */
.collections-grid--spaced { margin-top: var(--space-2xl); }
.product-grid--spaced { margin-top: var(--space-xl); }
.pdp-breadcrumb--collection { padding: 16px var(--page-margin) 0; }
.cta-link--reset { margin-top: 12px; display: inline-block; }

/* ══ COLLECTION FILTERS — Premium 10/10 ══ */

.collection-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.collection-sidebar__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg);
  margin: 0;
}

.collection-sidebar__title svg {
  color: var(--color-fg-muted);
}

.collection-sidebar__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  margin-left: 4px;
  letter-spacing: 0;
}

.collection-sidebar__close {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--color-fg-muted);
}

@media (max-width: 899px) {
  .collection-sidebar__close { display: inline-flex; }
}

.filter-groups {
  display: flex;
  flex-direction: column;
}

.filter-group {
  border-bottom: 1px solid var(--color-border);
}

.filter-group:last-child { border-bottom: none; }

.filter-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  background: none;
  border: none;
  font-family: var(--font-primary);
  cursor: pointer;
  color: var(--color-fg);
  text-align: left;
}

.filter-group__title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-fg);
}

.filter-group__count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
}

.filter-group__chev {
  color: var(--color-fg-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.filter-group__toggle[aria-expanded="false"] .filter-group__chev {
  transform: rotate(-90deg);
}

.filter-group__body {
  padding: 0 0 16px;
}

.filter-group__body[hidden] { display: none; }

/* Options list */
.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-group__show-more {
  background: none;
  border: none;
  padding: 8px 0 4px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.filter-group__show-more:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Active filter chips (sidebar + toolbar placement) ── */
.filter-active--sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.filter-active--toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.filter-active__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 11px;
  color: var(--color-fg);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.filter-active__tag:hover {
  border-color: var(--color-fg);
}

.filter-active__tag-label {
  color: var(--color-fg-muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-active__tag-value {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.filter-active__tag svg {
  color: var(--color-fg-muted);
}

.filter-active__clear {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.filter-active__clear:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── Price chips ── */
.filter-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.filter-price-chip {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-fg);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: border-color 0.15s, background 0.15s;
}

.filter-price-chip:hover {
  border-color: var(--color-fg);
  background: var(--color-bg-alt);
}

/* ── AJAX loading state ── */
.collection-main.is-loading [data-product-grid] {
  opacity: 0.5;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.collection-main.is-loading::after {
  content: '';
  position: absolute;
  top: 80px;
  right: 24px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.collection-main {
  position: relative;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Sort select: premium treatment ── */
.collection-toolbar__sort select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  cursor: pointer;
}

/* ══ Cart — discount, note, gift ══ */
.cart-discount {
  margin: var(--space-lg) 0;
}
.cart-discount__applied {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-sm);
}
.cart-discount__applied li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-accent);
  padding: 6px 0;
}
.cart-discount__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 6px;
}
.cart-discount__row {
  display: flex;
  gap: 8px;
}
.cart-discount__input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  background: var(--color-bg);
}
.cart-discount__input:focus {
  outline: none;
  border-color: var(--color-fg-muted);
}
.cart-discount__btn {
  padding: 10px 18px;
  border: 1px solid var(--color-fg);
  background: var(--color-fg);
  color: var(--color-bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-discount__btn:hover { opacity: 0.85; }

.cart-note,
.cart-gift {
  margin: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}
.cart-note__toggle,
.cart-gift__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-fg);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
}
.cart-note__toggle::-webkit-details-marker,
.cart-gift__toggle::-webkit-details-marker { display: none; }
.cart-note__toggle:hover,
.cart-gift__toggle:hover { color: var(--color-fg-muted); }
.cart-note__textarea,
.cart-gift__input {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-family: var(--font-primary);
  background: var(--color-bg);
  resize: vertical;
}
.cart-note__textarea {
  min-height: 70px;
}
.cart-note__textarea:focus,
.cart-gift__input:focus {
  outline: none;
  border-color: var(--color-fg-muted);
}

/* ══ Wishlist page ══ */
.wishlist-page {
  max-width: 1200px;
  margin: 0 auto;
}
.wishlist-page__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.wishlist-page__title {
  font-size: 36px;
  font-weight: 300;
}
.wishlist-page__subtitle {
  margin-top: var(--space-sm);
  color: var(--color-fg-muted);
  font-size: 13px;
}
.wishlist-page__skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-xl);
}
.wishlist-page__skeleton > div {
  aspect-ratio: 1;
  background: var(--color-bg-product);
  animation: skeleton-shimmer 1.6s infinite linear;
}
.wishlist-page__empty {
  text-align: center;
  padding: var(--space-5xl) var(--space-md);
  color: var(--color-fg-muted);
}
.wishlist-page__empty h2 {
  margin-top: var(--space-md);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-fg);
}
.wishlist-page__empty p {
  margin: var(--space-sm) auto var(--space-xl);
  max-width: 28rem;
  font-size: 14px;
}
.wishlist-page__grid {
  margin-bottom: var(--space-2xl);
}
.wishlist-page__actions {
  text-align: center;
  margin-top: var(--space-2xl);
}
.wishlist-card {
  position: relative;
}
.wishlist-card__remove {
  background: none;
  border: none;
  margin-top: var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.wishlist-card__remove:hover { color: var(--color-error); }
.site-header__wishlist { position: relative; }

/* ══ 404 page ══ */
.page-404 {
  text-align: center;
}
.page-404__hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.page-404__title {
  margin-top: var(--space-md);
  font-size: 48px;
  font-weight: 300;
}
.page-404__subtitle {
  margin-top: var(--space-md);
  color: var(--color-fg-muted);
  font-size: 15px;
}
.page-404__search {
  display: flex;
  gap: 8px;
  max-width: 32rem;
  margin: 0 auto var(--space-3xl);
}
.page-404__categories {
  margin-bottom: var(--space-3xl);
}
.page-404__categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}
.page-404__categories a {
  font-size: 13px;
  color: var(--color-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.page-404__categories a:hover { border-color: var(--color-fg); }
.page-404__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
  margin-bottom: var(--space-md);
}
.page-404__featured {
  margin-bottom: var(--space-3xl);
}
.page-404__back {
  margin-top: var(--space-2xl);
}

/* ══ Search — empty state ══ */
.search-empty {
  margin-top: var(--space-2xl);
  text-align: center;
}
.search-empty__title {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: var(--space-2xl);
  color: var(--color-fg-muted);
}
.search-empty__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-faint);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
}
.search-empty__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.search-empty__categories a {
  font-size: 13px;
  color: var(--color-fg);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.search-empty__categories a:hover { border-color: var(--color-fg); }
.search-empty__products {
  margin-top: var(--space-md);
}
.search-result__type-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-bg);
  color: var(--color-fg-muted);
  padding: 3px 8px;
  border: 1px solid var(--color-border);
  z-index: 1;
}
.blog-card { position: relative; }

/* ══ PDP dimensions guide ══ */
.pdp-dimensions {
  margin: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pdp-dimensions__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-md) 0;
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}
.pdp-dimensions__summary::-webkit-details-marker { display: none; }
.pdp-dimensions__summary > span { flex: 1; font-weight: 500; }
.pdp-dimensions__chev { transition: transform 0.2s; }
.pdp-dimensions[open] .pdp-dimensions__chev { transform: rotate(180deg); }
.pdp-dimensions__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: 0 0 var(--space-lg);
}
@media (max-width: 749px) {
  .pdp-dimensions__body { grid-template-columns: 1fr; }
}
.pdp-dimensions__svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  color: var(--color-fg-muted);
}
.pdp-dimensions__list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-lg);
}
.pdp-dimensions__list dt {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-fg-faint);
  text-transform: uppercase;
}
.pdp-dimensions__list dd {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--color-fg);
}
.pdp-dimensions__hint {
  grid-column: 1 / -1;
  margin: var(--space-sm) 0 0;
  font-size: 11px;
  color: var(--color-fg-muted);
  font-style: italic;
}
.pdp-dimensions-fallback {
  font-size: 13px;
  color: var(--color-fg-muted);
  margin: var(--space-md) 0;
}

/* ══ Compare bar + page ══ */
.product-card-wrap { position: relative; }
.product-card__compare {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--color-fg-muted);
  transition: color 0.2s, border-color 0.2s;
}
.product-card__compare:hover { color: var(--color-fg); border-color: var(--color-fg-muted); }
.product-card__compare.is-active {
  background: var(--color-fg);
  color: var(--color-bg);
  border-color: var(--color-fg);
}
.product-card__compare.is-shake { animation: shake 0.5s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--page-margin);
  display: flex;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}
.compare-bar[hidden] { display: none; }
.compare-bar__items {
  display: flex;
  gap: var(--space-sm);
}
.compare-bar__slot {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--color-bg-product);
  overflow: hidden;
}
.compare-bar__slot img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.compare-bar__slot--empty {
  border: 1px dashed var(--color-border);
}
.compare-bar__remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-fg);
  color: var(--color-bg);
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.compare-bar__actions { display: flex; gap: var(--space-sm); align-items: center; }
.compare-bar__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--color-fg-muted);
  cursor: pointer;
  padding: 6px;
}
.compare-bar__cta {
  font-size: 11px;
  padding: 10px 18px;
}

.compare-page__header { text-align: center; margin-bottom: var(--space-2xl); }
.compare-page__title { font-size: 32px; font-weight: 300; }
.compare-page__subtitle { color: var(--color-fg-muted); margin-top: var(--space-sm); font-size: 14px; }
.compare-page__empty {
  text-align: center;
  padding: var(--space-5xl) var(--space-md);
}
.compare-page__empty h2 { margin-top: var(--space-md); font-size: 22px; font-weight: 300; }
.compare-page__empty p {
  margin: var(--space-sm) auto var(--space-xl);
  max-width: 28rem;
  color: var(--color-fg-muted);
}
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: var(--space-md);
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: 13px;
}
.compare-table thead th { background: var(--color-bg-alt); }
.compare-table__product-link {
  display: block;
  text-decoration: none;
  color: var(--color-fg);
}
.compare-table__product-link img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--color-bg-product);
  margin-bottom: var(--space-sm);
}
.compare-table__product-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.compare-table__remove {
  background: none;
  border: none;
  margin-top: var(--space-sm);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  cursor: pointer;
  padding: 4px 0;
}
.compare-table__remove:hover { color: var(--color-error); }

/* ══ Localization form (country + language) ══ */
.localization-form {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}
.localization-form__field {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.localization-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-fg-muted);
  padding: 4px 18px 4px 4px;
  cursor: pointer;
}
.localization-form__field select:focus {
  outline: 1px dotted var(--color-fg-muted);
  outline-offset: 2px;
}
.localization-form__chev {
  position: absolute;
  right: 4px;
  pointer-events: none;
  color: var(--color-fg-muted);
}

/* ══ Stock urgency variants ══ */
.pdp-stock--available { color: #1A8754; }
.pdp-stock--low {
  color: #B45309;
  background: rgba(180, 83, 9, 0.08);
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  border-left: 2px solid #B45309;
}
.pdp-stock--out { color: var(--color-error); }

/* ══ Cookie modal (categorized consent) ══ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal[hidden] { display: none; }
@media (min-width: 750px) {
  .cookie-modal { align-items: center; }
}
.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}
.cookie-modal__panel {
  position: relative;
  background: var(--color-bg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
}
.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}
.cookie-modal__title {
  font-size: 18px;
  font-weight: 500;
}
.cookie-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-fg-muted);
  padding: 4px;
}
.cookie-modal__intro {
  font-size: 13px;
  color: var(--color-fg-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.cookie-modal__list {
  margin: 0 0 var(--space-lg);
}
.cookie-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.cookie-modal__row:last-child { border-bottom: none; }
.cookie-modal__row-text h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cookie-modal__row-text p {
  font-size: 12px;
  color: var(--color-fg-muted);
  line-height: 1.5;
}
.cookie-modal__footer {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-toggle input:disabled { cursor: not-allowed; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  transition: background 0.2s;
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--color-bg);
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-accent);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(18px);
}
.cookie-toggle input:disabled:checked + .cookie-toggle__slider {
  background: var(--color-fg-muted);
}
body.cookie-modal-open { overflow: hidden; }

/* ══ Reduced motion (WCAG 2.1 AA) ══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
