/** Shopify CDN: Minification failed

Line 415:0 Unexpected "}"

**/
/* BonheurReBorn — Design System
   Helvetica, minimal, minimal */

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
body { font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif; font-weight: 400; font-size: 15px; line-height: 1.6; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.2; }

/* ============ TOKENS ============ */
:root {
  --color-text: #111;
  --color-text-secondary: #666;
  --color-text-muted: #767676;
  --color-bg: #fff;
  --color-bg-secondary: #f6f6f6;
  --color-border: #e5e5e5;
  --color-border-light: #f0f0f0;
  --color-accent: #111;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --color-badge: #999;

  --font-body: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;

  --container-max: 1200px;
  --container-narrow: 560px;
  --container-gutter: 1.25rem;

  --header-height: 60px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2.5rem;
  --spacing-2xl: 4rem;

  --transition: 0.2s ease;
  --radius-sm: 3px;
  --radius-md: 6px;
}

/* ============ ACCESSIBILITY ============ */
.skip-to-content { position: absolute; left: -9999px; z-index: 9999; padding: 0.75rem 1.5rem; background: var(--color-accent); color: #fff; font-size: 0.85em; letter-spacing: 0.1em; }
.skip-to-content:focus { left: 50%; transform: translateX(-50%); top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============ CONTAINER ============ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-gutter); }
.container--narrow { max-width: var(--container-narrow); }

/* ============ TYPOGRAPHY ============ */
.text-xs { font-size: 0.72em; }
.text-sm { font-size: 0.82em; }
.text-base { font-size: 1em; }
.text-lg { font-size: 1.15em; }
.text-xl { font-size: 1.4em; }
.text-2xl { font-size: 1.8em; }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-success { color: var(--color-success); }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.text-center { text-align: center; }
.line-through { text-decoration: line-through; }
.font-medium { font-weight: 500; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.9rem 2rem; font-size: 0.82em; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease; user-select: none; -webkit-tap-highlight-color: transparent; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--color-accent); color: #fff; width: 100%; }
.btn--primary:hover { background: #333; }
.btn--primary:active { background: #000; box-shadow: inset 0 2px 6px rgba(0,0,0,0.3); }
.btn--outline { border: 1px solid var(--color-border); color: var(--color-text); }
.btn--outline:hover { border-color: var(--color-text); }
.btn--outline:active { background: var(--color-bg-secondary); transform: scale(0.97); }
.btn--link { padding: 0; font-size: 0.72em; color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 2px; letter-spacing: 0.08em; transition: color 0.15s ease; }
.btn--link:hover { color: var(--color-text); }
.btn--link:active { opacity: 0.6; }

/* ============ GRID ============ */
.grid { display: grid; gap: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 699px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============ PRODUCT CARD ============ */
.product-card { border: 1px solid var(--color-border); margin: -0.5px; overflow: hidden; display: flex; flex-direction: column; }
.product-card__media { position: relative; aspect-ratio: 4/5; background: var(--color-bg-secondary); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; }
.product-card__info { padding: 0.5rem 0.75rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.product-card__title { font-size: 0.82em; font-weight: 400; color: var(--color-text); line-height: 1.4; }
.product-card__prices { display: flex; flex-direction: column; }
.product-card__price { font-size: 0.88em; font-weight: 500; color: var(--color-text); white-space: nowrap; }
.product-card__old-line { display: flex; align-items: center; gap: 0.3rem; }
.product-card__compare { font-size: 0.75em; color: var(--color-text-muted); text-decoration: line-through; white-space: nowrap; }
.product-card__discount { font-size: 0.72em; color: var(--color-text-secondary); background: var(--color-bg-secondary); padding: 2px 6px; border-radius: var(--radius-sm); white-space: nowrap; }
.product-card--sold-out { opacity: 0.5; }

/* Swipe carousel */
.product-card__swipe { position: relative; height: 100%; }
.product-card__swipe-track { display: flex; height: 100%; overflow-x: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-card__swipe-track::-webkit-scrollbar { display: none; }
@media (hover: none) {
  .product-card__swipe-track { overflow-x: auto; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; overscroll-behavior-x: contain; }
}
.product-card__swipe-slide { flex: 0 0 100%; scroll-snap-align: start; display: flex; align-items: center; justify-content: center; }
.product-card__swipe-slide img { width: 100%; height: 100%; object-fit: contain; }
.product-card__dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2; }
.product-card__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.2); transition: background var(--transition), transform var(--transition); }
.product-card__dot.active { background: rgba(0,0,0,0.6); transform: scale(1.3); }

/* ============ SECTION SPACING ============ */
.section { padding: var(--spacing-xl) 0; }
.section--tight { padding: var(--spacing-lg) 0; }
.section--flush { padding: 0; }
.section__header { margin-bottom: var(--spacing-lg); }
.section__title { font-size: 0.85em; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; }

/* ============ HEADER ============ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--color-bg); border-bottom: 1px solid var(--color-border); height: var(--header-height); display: flex; align-items: center; }
body { padding-top: var(--header-height); }
.header__inner { display: flex; align-items: center; width: 100%; position: relative; }
.header__logo { z-index: 1; }
.header__logo-img { width: 160px; height: 24px; display: block; }
.header__nav { display: flex; gap: var(--spacing-lg); margin-left: var(--spacing-xl); }
@media (max-width: 999px) {
  .header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
}
.header__actions { margin-left: auto; }
.header__nav a { font-size: 0.78em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text); transition: opacity var(--transition); }
.header__nav a:hover { opacity: 0.6; }
.header__actions { display: flex; align-items: center; gap: var(--spacing-md); }
.header__icon { position: relative; color: var(--color-text); padding: 8px; margin: -8px; }
.header__menu-toggle { padding: 10px; margin: -10px; }
.header__icon svg { width: 20px; height: 20px; }
.header__cart-count { position: absolute; top: -5px; right: -8px; background: var(--color-accent); color: #fff; font-size: 0.6em; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

@media (max-width: 999px) {
  .header__nav { display: none; }
}

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--color-border); padding: var(--spacing-2xl) 0 var(--spacing-lg); }
.template-cart .footer { display: none; }

.footer__top { display: flex; gap: var(--spacing-2xl); padding-bottom: var(--spacing-xl); }
.footer__brand { flex: 0 0 240px; }
.footer__logo { width: 100px; height: auto; color: var(--color-text); margin-bottom: var(--spacing-xs); }
.footer__tagline { font-size: 0.68em; color: var(--color-text-muted); letter-spacing: 0.02em; }

.footer__columns { flex: 1; display: flex; gap: var(--spacing-2xl); }
.footer__col { min-width: 0; }
.footer__title { font-size: 0.68em; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text); margin-bottom: var(--spacing-md); }
.footer__links { font-size: 0.78em; color: var(--color-text-secondary); line-height: 1.8; }
.footer__links a { display: block; color: var(--color-text-secondary); transition: color var(--transition); }
.footer__links a:hover { color: var(--color-text); }
.footer__links p { margin: 0; line-height: 1.6; font-size: 0.78em; color: var(--color-text-secondary); }

.footer__bottom { padding-top: var(--spacing-md); border-top: 1px solid var(--color-border-light); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--spacing-sm); font-size: 0.65em; color: var(--color-text-muted); }
.footer__bottom-left { display: flex; align-items: center; gap: 0.4rem; }
.footer__bottom-left a { color: var(--color-text-muted); transition: color var(--transition); }
.footer__bottom-left a:hover { color: var(--color-text); }
.footer__dot { opacity: 0.4; }
.footer__legal { display: flex; gap: var(--spacing-md); }
.footer__legal a { color: var(--color-text-muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--color-text); }

@media (max-width: 699px) {
  .footer__top { flex-direction: column; gap: var(--spacing-xl); }
  .footer__brand { flex: none; }
  .footer__columns { flex-wrap: wrap; gap: var(--spacing-lg); }
  .footer__col { min-width: 45%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ UTILITIES ============ */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.w-full { width: 100%; }

/* ============ PROSE (rich text) ============ */
.prose { line-height: 1.7; }
.prose p + p { margin-top: 1em; }
.prose h2 { font-size: 1.4em; margin: 1.5em 0 0.5em; }
.prose h3 { font-size: 1.15em; margin: 1.2em 0 0.4em; }
.prose ul, .prose ol { padding-left: 1.5em; list-style: disc; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose img { margin: 1em 0; border-radius: var(--radius-md); }

/* ============ FORMS ============ */
.input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border); font-size: 0.85em; transition: border-color var(--transition); }
.input:focus { outline: none; border-color: var(--color-text); }
.input::placeholder { color: var(--color-text-muted); }
.label { display: block; font-size: 0.72em; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-secondary); margin-bottom: var(--spacing-xs); }

/* ============ HEADER — MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}
.mobile-menu__logo-img {
  height: 22px;
  width: auto;
}
.mobile-menu__close {
  color: var(--color-text);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__link {
  display: block;
  font-size: 1.35em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: opacity var(--transition);
}
.mobile-menu__link:hover { opacity: 0.6; }
.mobile-menu__group { border-bottom: 1px solid var(--color-border-light); }
.mobile-menu__link--parent { display: flex; align-items: center; justify-content: space-between; font-size: 1.35em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text); padding: 0.55rem 0; cursor: pointer; list-style: none; }
.mobile-menu__link--parent::-webkit-details-marker { display: none; }
.mobile-menu__link--parent svg { transition: transform 0.2s; }
.mobile-menu__group[open] .mobile-menu__link--parent svg { transform: rotate(180deg); }
.mobile-menu__submenu { padding: 0 0 0.5rem 1rem; }
.mobile-menu__sublink { display: block; font-size: 0.95em; color: var(--color-text-secondary); padding: 0.35rem 0; transition: color var(--transition); }
.mobile-menu__sublink:hover { color: var(--color-text); }

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-menu__footer-link {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 1.2;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}
.mobile-menu__footer-link:hover { color: var(--color-text); }

.mobile-menu__brand { padding: 0 0 1rem; }
.mobile-menu__brand-line { display: block; font-size: 0.7em; letter-spacing: 0.15em; text-transform: uppercase; color: #bbb; line-height: 1.4; }

.mobile-menu__language { padding: 0.75rem 0 0.25rem; }
.mobile-menu__language-options { display: flex; gap: 0.6rem; align-items: center; }
.mobile-menu__language-btn { padding: 0; font-family: inherit; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; border: none; background: transparent; color: var(--color-text-muted); cursor: pointer; transition: color var(--transition); }
.mobile-menu__language-btn:hover { color: var(--color-text); }
.mobile-menu__language-btn.is-active { color: var(--color-text); text-decoration: underline; text-underline-offset: 3px; }
.mobile-menu__language-sep { font-size: 10px; color: var(--color-border); }

.mobile-menu__currency { display: none; padding: 1rem 0; border-bottom: 1px solid var(--color-border-light); }
.mobile-menu__currency-label { display: block; font-size: 0.7em; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 0.4rem; }
.mobile-menu__currency-select { width: 100%; padding: 0.6rem 0.75rem; font-size: 0.88em; font-family: inherit; letter-spacing: 0.05em; border: 1px solid var(--color-border); background: #fff; color: var(--color-text); border-radius: 0; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Logo responsive sizing ---- */
.header__logo-img {
  max-width: 160px;
  height: auto;
}
.header__logo-text {
  font-size: 1.2em;
  letter-spacing: 0.15em;
  font-weight: 400;
}
@media (max-width: 999px) {
  .header__logo-img {
    max-width: 120px;
  }
}

/* ---- Mobile base font bump ---- */
@media (max-width: 699px) {
  body { font-size: 16px; }
}

/* ---- Hide hamburger on desktop, hide nav on mobile ---- */
@media (min-width: 1000px) {
  .header__menu-toggle { display: none; }
}
@media (max-width: 999px) {
  .header__icon--account { display: none; }
}

/* ---- Sticky header shadow on scroll ---- */
.header--scrolled {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ============ FOOTER — SOCIAL / NEWSLETTER / PAYMENTS ============ */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82em;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--color-text); }
.footer__social-link svg { flex-shrink: 0; }

.footer__newsletter-field {
  display: flex;
  border: 1px solid var(--color-border);
}
.footer__newsletter-input {
  border: none;
  flex: 1;
  font-size: 0.82em;
  padding: 0.65rem 0.75rem;
}
.footer__newsletter-input:focus { outline: none; }
.footer__newsletter-btn {
  padding: 0.65rem 0.75rem;
  color: var(--color-text);
  transition: opacity var(--transition);
}
.footer__newsletter-btn:hover { opacity: 0.6; }
.footer__newsletter-success { margin-top: 0.5rem; }

.footer__payments {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer__payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.5;
}

/* Footer bottom overrides already merged above */
}

/* ============ PRODUCT PAGE ============ */
/* ——— Breadcrumb ——— */
.pdp-breadcrumb { font-family: Helvetica, Arial, sans-serif; font-size: 11px; font-weight: 400; line-height: 1.4; color: var(--color-text-muted); padding: 0.5rem 0; display: flex; align-items: center; gap: 0.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pdp-breadcrumb a { font-size: 11px; font-weight: 400; color: var(--color-text-secondary); transition: color 0.15s; white-space: nowrap; text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--color-text); }
.pdp-breadcrumb .breadcrumb__sep { color: var(--color-text-muted); flex-shrink: 0; font-size: 11px; padding: 0 0.15rem; }
.pdp-breadcrumb .breadcrumb__current { color: var(--color-text); overflow: hidden; text-overflow: ellipsis; font-size: 11px; }

/* ——— Collection Nav Strip ——— */
.collection-nav { padding: 0.5rem 0; width: 100%; overflow: hidden; }
.collection-nav__strip { display: flex; flex-wrap: nowrap; gap: 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.collection-nav__strip::-webkit-scrollbar { display: none; }
.collection-nav__item { flex: 0 0 auto; opacity: 0.4; transition: opacity 0.2s; line-height: 0; }
.collection-nav__item img { height: 125px !important; width: auto !important; display: block; border: none !important; border-radius: 0 !important; outline: none !important; box-shadow: none !important; mix-blend-mode: multiply; }
.collection-nav__item:hover { opacity: 0.7; }
.collection-nav__item.is-current { opacity: 1; border-bottom: 2px solid #111 !important; }

/* ——— Layout ——— */
.product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1000px) {
  .product-page {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-xl);
  }
}

/* ——— Product section flush top ——— */
.product-section { padding-top: 0; }

/* ——— Gallery: Desktop ——— */
.product-page__gallery-scroll {
  display: none;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 1000px) {
  .product-page__gallery-scroll { display: flex; }
  .product-page__gallery-swipe { display: none; }
}
.product-page__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ——— Gallery: Mobile swipe ——— */
.product-page__gallery-swipe {
  position: relative;
  width: calc(100% + 2 * var(--container-gutter));
  margin-left: calc(-1 * var(--container-gutter));
  aspect-ratio: 4 / 5;
  background: var(--color-bg-secondary);
  overflow: hidden;
}
@media (min-width: 1000px) {
  .product-page__gallery-swipe { display: none; }
}
.product-page__swipe-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.product-page__swipe-track::-webkit-scrollbar { display: none; }
.product-page__swipe-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page__swipe-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-page__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.product-page__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  transition: background var(--transition), transform var(--transition);
}
.product-page__dot.active {
  background: rgba(0,0,0,0.6);
  transform: scale(1.25);
}

/* ——— Info panel ——— */
.product-page__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
}
@media (min-width: 1000px) {
  .product-page__info {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
    padding: 0;
  }
}
.product-page__block:has(.product-page__accordion) { margin: 0; padding: 0; }
.product-page__block + .product-page__block:has(.product-page__accordion) { margin-top: -1px; }

/* ——— Title ——— */
.product-page__title {
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ——— Price ——— */
.product-page__price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95em;
}
.product-page__current-price {
  color: var(--color-text);
}
.product-page__compare-price {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 0.9em;
}
.product-page__discount-badge {
  font-size: 0.75em;
  color: var(--color-text-secondary);
  background: var(--color-bg-secondary);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* ——— Gallery thumbnails (desktop) ——— */
.product-page__thumbs {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  left: var(--container-gutter);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.product-page__thumb {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s, border-color 0.15s;
  background: #fff;
}
.product-page__thumb:hover { opacity: 1; }
.product-page__thumb.is-active { border-color: #fff; opacity: 1; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.product-page__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 999px) {
  .product-page__thumbs { display: none; }
}

/* ——— Variant picker ——— */
.product-page__option {
  border: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}
.product-page__option-label {
  display: block;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}
.product-page__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-page__option-value {
  position: relative;
  cursor: pointer;
}
.product-page__option-value input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-page__option-value span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 0.8em;
  letter-spacing: 0.05em;
  transition: border-color var(--transition);
  text-align: center;
}
.product-page__option-value input:checked + span {
  border-color: var(--color-text);
  border-width: 1.5px;
}
.product-page__option-value:hover span {
  border-color: var(--color-text-secondary);
}

/* ——— Buy row (qty + button) ——— */
.product-page__buy-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.product-page__quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.product-page__qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.product-page__qty-btn:hover {
  background: var(--color-bg-secondary);
}
.product-page__qty-input {
  width: 3rem;
  height: 2.75rem;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 0.85em;
  -moz-appearance: textfield;
  background: transparent;
}
.product-page__qty-input::-webkit-inner-spin-button,
.product-page__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ——— Add to cart ——— */
.product-page__add-btn {
  flex: 1;
}
.product-page__add-btn:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
}

/* ——— Accordion (Zara-style) ——— */
.product-page__accordion {
  border-top: 1px solid var(--color-border);
}
.product-page__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 0.6rem 0;
  list-style: none;
  user-select: none;
}
.product-page__accordion-header::-webkit-details-marker { display: none; }
.product-page__accordion-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.product-page__accordion-icon::before,
.product-page__accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.product-page__accordion-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product-page__accordion-icon::after {
  width: 1px;
  height: 12px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
details[open] > .product-page__accordion-header .product-page__accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.product-page__accordion-body {
  font-size: 0.82em;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 0 0 0.6rem;
}

/* ============ CART ============ */
.cart-page { background: #fff; min-height: 60vh; }
.cart-page__wrapper { max-width: var(--container-narrow); margin: 0 auto; padding: 2rem var(--container-gutter) 3rem; }
.cart-page__empty { text-align: center; padding: 4rem 1rem; }
.cart-page__empty-title { font-size: 0.9em; letter-spacing: 0.15em; }
.cart-page__header { padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; }
.cart-page__title { font-size: 0.95em; font-weight: 400; letter-spacing: 0.2em; }
.cart-page__items .cart-item { padding: 1.5rem 0; border-bottom: 1px solid var(--color-border-light); }
.cart-page__summary { padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0.6rem; }
.cart-page__row { display: flex; justify-content: space-between; font-size: 0.9em; }
.cart-page__total { display: flex; justify-content: space-between; font-size: 1.05em; letter-spacing: 0.1em; padding-top: 0.75rem; border-top: 1px solid var(--color-border); font-weight: 500; }
.cart-page__checkout { margin-top: 0.75rem; }
.cart-page__trust { margin-top: 1rem; letter-spacing: 0.05em; }
.cart-page__clear { display: block; margin: 1.5rem auto 0; background: none; color: var(--color-text-muted); font-size: 11px; text-decoration: underline; cursor: pointer; letter-spacing: 0.05em; transition: color 0.15s; }
.cart-page__clear:hover { color: var(--color-text); }

/* ============ COLLECTION NAV ============ */
.collection-nav__item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Gift timer — minimal text */
.gift-timer-time {
  font-size: 0.82em;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

/* ============ COLLECTION PAGE ============ */
/* ——— Banner ——— */
.collection-banner {
  text-align: center;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}
.collection-banner__title {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}
.collection-banner__desc {
  font-size: 0.82em;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ——— Toolbar ——— */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0 var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 0;
}
.collection-toolbar__count {
  font-size: 0.72em;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}
.collection-toolbar__select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  font-size: 0.78em;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23111' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  transition: border-color var(--transition);
}
.collection-toolbar__select:focus {
  outline: none;
  border-color: var(--color-text);
}

/* ——— Empty state ——— */
.collection-empty {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  font-size: 0.85em;
  color: var(--color-text-secondary);
}

/* ——— Pagination ——— */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-xl) 0;
}
.pagination__item {
  font-size: 0.82em;
  padding: 0.6rem 0.85rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}
.pagination__item:hover {
  color: var(--color-text);
}
.pagination__item--current {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
.pagination__btn {
  font-size: 1em;
  padding: 0.4rem;
  color: var(--color-text);
  transition: opacity var(--transition);
}
.pagination__btn:hover {
  opacity: 0.6;
}

/* ============ FEATURED COLLECTIONS ============ */
.featured-collections {
  padding: var(--spacing-2xl) 0;
}

.featured-collections .section__header {
  margin-bottom: var(--spacing-xl);
}

.featured-collections__grid {
  gap: 0;
}

.featured-collections__grid .product-card {
  border: 1px solid var(--color-border);
  margin: -0.5px;
}

.featured-collections__placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-collections__placeholder-svg {
  width: 50%;
  opacity: 0.12;
}

.featured-collections__footer {
  text-align: center;
  margin-top: var(--spacing-xl);
}

.featured-collections__view-all {
  width: auto;
  padding: 0.75rem 2.5rem;
}

@media (max-width: 699px) {
  .featured-collections {
    padding: var(--spacing-xl) 0;
  }

  .featured-collections .grid--3,
  .featured-collections .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ HERO SLIDESHOW ============ */
.hero {
  position: relative;
  overflow: hidden;
  height: 85vh;
}
@media (min-width: 700px) {
  .hero { height: 95vh; }
}

.hero__slideshow {
  position: relative;
}

.hero__track {
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: 60vh;
}

@media (min-width: 700px) {
  .hero__slide {
    min-height: 85vh;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media--placeholder {
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__placeholder {
  width: 40%;
  opacity: 0.15;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: var(--spacing-2xl) var(--container-gutter);
}

.hero__subheading {
  font-size: 0.72em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  opacity: 0.85;
}

.hero__heading {
  font-size: 2.4em;
  font-weight: 300;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .hero__heading {
    font-size: 3.5em;
  }
}

.hero__btn {
  display: inline-block;
  margin-top: var(--spacing-lg);
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: background 0.2s, border-color 0.2s;
}
.hero__btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.hero__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-md);
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 699px) {
  .hero__nav {
    display: none;
  }
}

.hero__nav-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.hero__nav-btn:hover {
  opacity: 1;
}

.hero__dots {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.hero__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.hero__dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ============ RICH TEXT ============ */
.rich-text {
  padding: var(--spacing-2xl) 0;
}

.rich-text--secondary {
  background: var(--color-bg-secondary);
}

.rich-text__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.rich-text__heading {
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

.rich-text__body {
  font-size: 0.92em;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 480px;
}

.rich-text__body p + p {
  margin-top: 0.75em;
}

.rich-text__btn {
  margin-top: var(--spacing-md);
  width: auto;
  padding: 0.9rem 2.5rem;
}

@media (max-width: 699px) {
  .rich-text {
    padding: var(--spacing-xl) 0;
  }
}

/* ============ IMAGE WITH TEXT ============ */
.image-with-text {
  padding: var(--spacing-2xl) 0;
}

.image-with-text--secondary {
  background: var(--color-bg-secondary);
}

.image-with-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--color-border);
}

.image-with-text__grid--reversed .image-with-text__media {
  order: 2;
}

.image-with-text__grid--reversed .image-with-text__content {
  order: 1;
}

.image-with-text__media {
  position: relative;
  overflow: hidden;
}

.image-with-text__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-with-text__placeholder {
  aspect-ratio: 4 / 5;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-with-text__placeholder-svg {
  width: 40%;
  opacity: 0.12;
}

.image-with-text__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
  border-left: 1px solid var(--color-border);
}

.image-with-text__grid--reversed .image-with-text__content {
  border-left: none;
  border-right: 1px solid var(--color-border);
}

.image-with-text__content-inner {
  max-width: 400px;
}

.image-with-text__subheading {
  font-size: 0.72em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}

.image-with-text__heading {
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.image-with-text__text {
  font-size: 0.88em;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.image-with-text__btn {
  margin-top: var(--spacing-lg);
  width: auto;
  padding: 0.9rem 2.5rem;
}

@media (max-width: 699px) {
  .image-with-text {
    padding: var(--spacing-xl) 0;
  }

  .image-with-text__grid {
    grid-template-columns: 1fr;
  }

  .image-with-text__grid--reversed .image-with-text__media {
    order: 0;
  }

  .image-with-text__grid--reversed .image-with-text__content {
    order: 0;
    border-right: none;
  }

  .image-with-text__content {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-xl) var(--spacing-lg);
  }
}

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.newsletter--secondary {
  background: var(--color-bg-secondary);
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.newsletter__heading {
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
}

.newsletter__subtext {
  font-size: 0.85em;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: var(--spacing-sm);
}

.newsletter__form {
  display: flex;
  width: 100%;
  max-width: 440px;
  margin-top: var(--spacing-md);
}

.newsletter__input {
  flex: 1;
  border-right: none;
  font-size: 0.82em;
  letter-spacing: 0.04em;
}

.newsletter__input:focus {
  border-color: var(--color-text);
}

.newsletter__submit {
  flex-shrink: 0;
  width: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.72em;
}

.newsletter__message {
  font-size: 0.82em;
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  width: 100%;
  max-width: 440px;
}

.newsletter__message--success {
  color: var(--color-success);
  border: 1px solid var(--color-success);
}

.newsletter__message--error {
  color: var(--color-error);
  border: 1px solid var(--color-error);
}

@media (max-width: 699px) {
  .newsletter {
    padding: var(--spacing-xl) 0;
  }

  .newsletter__form {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .newsletter__input {
    border-right: 1px solid var(--color-border);
  }

  .newsletter__submit {
    width: 100%;
  }
}

/* ============ RELATED PRODUCTS ============ */
.related-products {
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--color-border-light);
}
.related-products__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}
.related-products__header .section__title {
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: 0.2em;
}

/* ============ COLLECTION HEADER ============ */
.collection-header { text-align: center; padding: var(--spacing-lg) 0; }
.collection-header__title { font-size: 1.1em; font-weight: 400; letter-spacing: 0.2em; }
.collection-header__desc { font-size: 0.82em; color: var(--color-text-secondary); margin-top: 0.4rem; max-width: 520px; margin-inline: auto; line-height: 1.5; }

/* ============ GIFT PICKER MODAL ============ */
.gp-modal { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; }
.gp-modal.is-open { display: flex; }
.gp-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.gp-modal__panel { position: relative; background: #fff; width: 92vw; max-width: 680px; max-height: 90vh; overflow-y: auto; display: flex; flex-direction: row; }
.gp-modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; color: var(--color-text-secondary); background: rgba(255,255,255,0.8); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }

.gp-modal__left { flex: 0 0 45%; display: flex; flex-direction: column; }
.gp-modal__hero { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; background: var(--color-bg-secondary); }
.gp-modal__hero-img { width: 100%; height: auto; object-fit: contain; display: block; }
.gp-modal__info { position: absolute; top: 12px; left: 12px; z-index: 1; }
.gp-modal__badge { font-size: 0.6em; letter-spacing: 0.15em; color: var(--color-success); margin: 0; }
.gp-modal__name { font-size: 0.82em; margin: 0.1rem 0; color: var(--color-text); }
.gp-modal__value { font-size: 0.72em; margin: 0; color: var(--color-success); }
.gp-modal__strike { color: var(--color-text-muted); text-decoration: line-through; margin-right: 0.2rem; }

.gp-modal__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.gp-modal__mobile-header { display: none; }
@media (max-width: 699px) {
  .gp-modal__mobile-header { display: block; margin-bottom: 0.75rem; }
}
.gp-modal__desc { font-size: 0.75em; color: var(--color-text-secondary); margin: 0.25rem 0 0; line-height: 1.4; }

@media (max-width: 699px) {
  .gp-modal__panel { flex-direction: column; max-width: 400px; }
  .gp-modal__left { display: none; }
}

.gp-modal__color-label { font-size: 0.68em; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-secondary); margin: 0 0 0.5rem; }
.gp-modal__colors { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.3rem; margin-bottom: 1.25rem; }
.gp-color { width: 100%; border: 1px solid var(--color-border-light); border-radius: 3px; padding: 0; cursor: pointer; background: none; overflow: hidden; transition: border-color 0.15s; line-height: 0; }
.gp-color:hover { border-color: var(--color-text-secondary); }
.gp-color.selected { border-color: var(--color-text); }
.gp-color img { width: 100%; height: auto; display: block; }

.gp-modal__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.gp-modal__confirm { width: 100%; padding: 0.85rem; background: var(--color-accent); color: #fff; font-size: 0.78em; letter-spacing: 0.12em; cursor: pointer; border: none; transition: background 0.15s; }
.gp-modal__confirm:hover { background: #333; }
.gp-modal__skip { width: 100%; padding: 0.5rem; background: none; border: none; font-size: 0.72em; color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; letter-spacing: 0.05em; }
.gp-modal__skip:hover { color: var(--color-text); }

/* ============ PRODUCT LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: #fff; display: none; flex-direction: column; }
.lightbox.is-open { display: flex; }
.lightbox__header { position: absolute; top: 0; left: 0; right: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; }
.lightbox__counter { font-size: 0.78em; color: var(--color-text-secondary); letter-spacing: 0.05em; }
.lightbox__close { color: var(--color-text); }
.lightbox__track { flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.lightbox__track::-webkit-scrollbar { display: none; }
.lightbox__slide { flex: 0 0 100%; scroll-snap-align: start; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; overflow: auto; touch-action: pinch-zoom pan-x pan-y; }
.lightbox__slide img { max-width: 100%; max-height: 85vh; object-fit: contain; cursor: zoom-in; transition: transform 0.3s ease; }
.lightbox__slide img.is-zoomed { max-width: none; max-height: none; cursor: zoom-out; }
.lightbox__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; color: var(--color-text); background: rgba(255,255,255,0.8); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: opacity 0.15s; }
.lightbox__arrow:hover { opacity: 0.7; }
.lightbox__arrow--prev { left: 0.75rem; }
.lightbox__arrow--next { right: 0.75rem; }
@media (max-width: 699px) {
  .lightbox__arrow { display: none; }
  .lightbox__slide { padding: 2rem 0; }
}

/* ============ CART ITEM ============ */
.cart-item { display: flex; gap: 1rem; }
.cart-item__media { flex-shrink: 0; width: 100px; }
.cart-item--gift .cart-item__media { width: 60px; }
.cart-item--gift { padding-left: 0.5rem; }
.cart-item__details { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.cart-item__info { display: flex; flex-direction: column; gap: 0.15rem; }
.cart-item__title { font-size: 0.9em; color: var(--color-text); line-height: 1.4; display: block; }
.cart-item__variant { font-size: 0.8em; color: var(--color-text-muted); letter-spacing: 0.05em; }
.cart-item__qty { font-size: 0.8em; color: var(--color-text-muted); margin-top: 0.1rem; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.cart-item__pricing { display: flex; align-items: center; gap: 0.4rem; }
.cart-item__price { font-size: 0.9em; }
.cart-item__price-strike { font-size: 0.8em; color: var(--color-text-muted); text-decoration: line-through; }
.cart-item__gift-inline { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.1rem; align-self: center; max-width: 60px; text-align: center; }
.cart-item__gift-thumb { width: 50px; height: auto; object-fit: contain; }
.cart-item__gift-name { font-size: 0.55em; color: var(--color-text); line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item__gift-price { font-size: 0.55em; color: var(--color-text-muted); text-decoration: line-through; }
.cart-item__gift-tag { font-size: 0.55em; letter-spacing: 0.08em; color: var(--color-success); text-transform: uppercase; }

/* ============ CART — EMPTY STATE & TIMER INLINE OVERRIDES ============ */
.cart-page__empty svg { margin: 0 auto 1.5rem; }
.cart-page__empty-subtitle { margin: 0.5rem 0 2rem; }
.cart-page__empty-cta { max-width: 280px; margin: 0 auto; }
.gift-timer-header { align-items: center; gap: 0.3rem; }
.gift-timer-header__label { font-size: 0.68em; color: var(--color-text-secondary); }
.gift-timer-header__sep { font-size: 0.72em; color: var(--color-text-secondary); margin: 0 1px; }
/* BonheurReBorn — Cart Reviews */

#cart-reviews,
#cart-page-reviews {
  display: none;
  margin: 1.5rem 0 0.5rem;
}

.cr-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cr-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.15rem;
}

.cr-title-icon {
  font-size: 1em;
}

.cr-title-text {
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.cr-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.15rem 0 0.5rem;
}
@media (max-width: 699px) {
  .cr-scroll { grid-template-columns: 1fr; }
}

.cr-card {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
}

.cr-stars {
  color: #f5a623;
  font-size: 0.72em;
  letter-spacing: -1px;
}

.cr-product-img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.cr-body {
  font-size: 0.85em;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cr-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cr-name {
  font-size: 0.68em;
  font-weight: 500;
  color: var(--color-text);
}

.cr-verified {
  font-size: 0.62em;
  color: var(--color-success);
  font-weight: 400;
  white-space: nowrap;
}

/* Preloader dots */
.cr-preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1rem 0;
}
.cr-preloader-dot {
  width: 5px;
  height: 5px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: crPulse 1.2s ease-in-out infinite;
}
.cr-preloader-dot:nth-child(2) { animation-delay: 0.2s; }
.cr-preloader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes crPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}



/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
      position: relative;
      text-align: center;
      padding: 0.55rem 2.5rem 0.55rem 1rem;
    }
    .announcement-bar--light {
      background: var(--color-bg-secondary, #f6f6f6);
      color: var(--color-text, #111);
    }
    .announcement-bar--dark {
      background: var(--color-accent, #111);
      color: #fff;
    }
    .announcement-bar__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 1.4em;
    }
    .announcement-bar__slider {
      position: relative;
      width: 100%;
      min-height: 1.4em;
    }
    .announcement-bar__slide {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease;
    }
    .announcement-bar__slide.is-active {
      opacity: 1;
      visibility: visible;
      position: relative;
    }
    .announcement-bar__text,
    .announcement-bar__link {
      font-size: 0.68em;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 400;
      margin: 0;
      line-height: 1.4;
    }
    .announcement-bar__link {
      text-decoration: none;
      color: inherit;
      transition: opacity 0.2s;
    }
    .announcement-bar__link:hover {
      opacity: 0.7;
    }
    .announcement-bar__close {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: inherit;
      opacity: 0.6;
      transition: opacity 0.2s;
      background: none;
      border: none;
      cursor: pointer;
    }
    .announcement-bar__close:hover {
      opacity: 1;
    }
