/* Scentio — Mobile-first stylesheet */

:root {
  --pink: #e8c5c1;
  --pink-dark: #ddb8b3;
  --pink-light: #f0d4d0;
  --black: #1a1a1a;
  --white: #ffffff;
  --gold: #c9a962;
  --grey: #6b6b6b;
  --grey-light: #f5f5f3;
  --grey-border: #e8e8e6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-hero: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --container: min(1200px, 100% - 2rem);
  --announcement-height: 2.375rem;
  --header-height: 4.5rem;
  --hero-width: 1920px;
  --hero-height: 960px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
}

img, svg:not(.ui-icon) { display: block; max-width: 100%; height: auto; }

svg.ui-icon {
  display: block;
  max-width: none;
  flex-shrink: 0;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover { background: #333; }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.6875rem; }

.btn--full { width: 100%; }

/* Announcement bar */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.625rem 0;
}

.announcement-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.announcement-bar__divider { opacity: 0.4; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo__icon {
  width: 1.75rem;
  height: auto;
  color: var(--black);
}

.logo__image {
  max-height: 2.75rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  display: block;
}

.logo--has-image .logo__image {
  max-height: 3rem;
  max-width: 14rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-hero);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo__text small {
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.nav-toggle__icon {
  width: 1.375rem;
  height: 1.375rem;
}

.nav-toggle__icon--close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  display: block;
}

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--white);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  z-index: 99;
}

.main-nav.is-open { transform: translateX(0); }

.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav__list a {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-border);
}

.main-nav__list a.is-active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

.header-actions .nav-toggle {
  flex-shrink: 0;
}

.header-actions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.header-actions__btn svg,
.mobile-bottom-nav__item svg {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.cart-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-align: center;
  border-radius: 999px;
}

.cart-badge:empty,
.cart-badge[data-zero="1"] {
  display: none;
}

/* Slide-out cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  height: 100dvh;
  max-height: -webkit-fill-available;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  padding-top: env(safe-area-inset-top, 0);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--grey-border);
  flex-shrink: 0;
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.cart-drawer__count {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--grey);
  font-weight: 500;
}

.cart-drawer__close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--grey-light);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-drawer__empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-drawer__empty p {
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-border);
}

.cart-drawer__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-drawer__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
}

.cart-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__info {
  min-width: 0;
}

.cart-drawer__info strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
  overflow-wrap: anywhere;
}

.cart-drawer__info small {
  color: var(--grey);
  font-size: 0.75rem;
}

.cart-drawer__meta {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--grey);
}

.cart-drawer__unit-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.cart-drawer__price-old {
  text-decoration: line-through;
  color: var(--grey);
}

.cart-drawer__price-sale {
  font-weight: 600;
  color: var(--black);
}

.cart-drawer__line-old {
  text-decoration: line-through;
  margin-right: 0.35rem;
  color: var(--grey);
}

.cart-drawer__line-sale {
  color: var(--black);
}

.cart-drawer__discount {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #166534;
}

.cart-drawer__remove {
  border: none;
  background: none;
  color: var(--grey);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.cart-drawer__remove:hover {
  color: var(--black);
}

.cart-drawer__upsells {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-border);
}

.cart-drawer__upsells-title {
  margin: 0 0 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}

.cart-drawer__upsell-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.cart-drawer__upsell {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--grey-light);
  border-radius: 10px;
}

.cart-drawer__upsell-thumb {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.cart-drawer__upsell-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__upsell-info strong {
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--black);
}

.cart-drawer__upsell-info small {
  display: block;
  font-size: 0.75rem;
  color: var(--grey);
}

.cart-drawer__upsell-price {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.cart-drawer__upsell-prices {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.cart-drawer__upsell-price-old {
  font-size: 0.75rem;
  color: var(--grey);
  text-decoration: line-through;
}

.cart-drawer__upsell-discount {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  color: #166534;
}

.cart-drawer__upsell-add {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cart-drawer__upsell-add:hover {
  background: var(--black);
  color: var(--white);
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--grey-border);
  background: var(--grey-light);
  flex-shrink: 0;
}

.cart-drawer__shipping {
  font-size: 0.8125rem;
  color: var(--grey);
  margin: 0 0 1rem;
}

.cart-drawer__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.cart-drawer__row--total {
  font-weight: 700;
  font-size: 1.0625rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--grey-border);
}

.cart-drawer__checkout {
  margin-top: 1rem;
}

.cart-drawer__full-link,
.cart-drawer__continue {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--grey);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

.cart-drawer__full-link:hover,
.cart-drawer__continue:hover {
  color: var(--black);
}

body.cart-drawer-open {
  overflow: hidden;
}

/* Flash messages */
.flash {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.flash--success { background: #e8f5e9; color: #2e7d32; }
.flash--error { background: #ffebee; color: #c62828; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 50%, var(--pink-dark) 100%);
  overflow: hidden;
}

.hero--full {
  position: relative;
  width: 100%;
  background: var(--pink);
  overflow: hidden;
}

body.page-home .hero.hero--full {
  width: 100%;
  max-width: none;
  height: var(--hero-height);
  min-height: var(--hero-height);
  max-height: var(--hero-height);
  flex: 0 0 var(--hero-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--pink);
}

.hero__bg .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  max-height: var(--hero-height);
  box-sizing: border-box;
  padding: calc(var(--header-height) + 1rem) clamp(1rem, 5vw, 6rem) 2rem;
}

.hero__content {
  max-width: 36rem;
  padding: 0;
}

.hero__inner {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.hero--full h1 {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 2rem;
  max-width: 26rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero--content-dark {
  --hero-text: var(--black);
  --hero-text-muted: var(--grey);
}

.hero--content-light {
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255, 255, 255, 0.78);
}

.hero--content-dark .hero__eyebrow,
.hero--content-light .hero__eyebrow {
  color: var(--hero-text-muted);
}

.hero--content-dark h1,
.hero--content-dark .hero__text,
.hero--content-light h1,
.hero--content-light .hero__text {
  color: var(--hero-text);
}

.hero__actions .btn--hero-primary {
  background: var(--hero-btn-1-bg, var(--black));
  color: var(--hero-btn-1-text, var(--white));
  border-color: var(--hero-btn-1-border, var(--hero-btn-1-bg, var(--black)));
}

.hero__actions .btn--hero-primary:hover {
  filter: brightness(1.08);
}

.hero__actions .btn--hero-secondary {
  background: var(--hero-btn-2-bg, transparent);
  color: var(--hero-btn-2-text, var(--hero-text, var(--black)));
  border-color: var(--hero-btn-2-border, var(--hero-text, var(--black)));
}

.hero__actions .btn--hero-secondary:hover {
  background: var(--hero-btn-2-border, var(--hero-text, var(--black)));
  color: var(--hero-btn-2-bg, var(--white));
}

.site-header--menu-dark .logo__icon,
.site-header--menu-dark .logo__text strong,
.site-header--menu-dark .main-nav__list a,
.site-header--menu-dark .header-actions__btn {
  color: var(--black);
}

.site-header--menu-dark .logo__text small {
  color: var(--grey);
}

.site-header--menu-light .logo__icon,
.site-header--menu-light .logo__text strong,
.site-header--menu-light .main-nav__list a,
.site-header--menu-light .header-actions__btn {
  color: #ffffff;
}

.site-header--menu-light .logo__text small {
  color: rgba(255, 255, 255, 0.75);
}

body:not(.page-home) .site-header--menu-light {
  background: var(--black);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body:not(.page-home) .site-header--menu-light .cart-badge {
  background: #ffffff;
  color: var(--black);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50%;
  line-height: 1.35;
}

/* Atomizer visual (CSS product mockup) */
.atomizer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atomizer__cap {
  width: 1.5rem;
  height: 0.875rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--product-color, #e8a0bf) 90%, white) 0%, var(--product-color, #e8a0bf) 50%, color-mix(in srgb, var(--product-color, #e8a0bf) 80%, black) 100%);
  border-radius: 0.2rem 0.2rem 0 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.atomizer__body {
  width: 2rem;
  height: 5.5rem;
  background: linear-gradient(90deg, 
    color-mix(in srgb, var(--product-color, #e8a0bf) 70%, black) 0%,
    var(--product-color, #e8a0bf) 25%,
    color-mix(in srgb, var(--product-color, #e8a0bf) 85%, white) 50%,
    var(--product-color, #e8a0bf) 75%,
    color-mix(in srgb, var(--product-color, #e8a0bf) 80%, black) 100%
  );
  border-radius: 0.35rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
  position: relative;
}

.atomizer__body::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.875rem;
  background: linear-gradient(180deg, #c0c0c0, #e8e8e8, #a0a0a0);
  border-radius: 0.125rem;
}

.atomizer--card .atomizer__cap { width: 1.25rem; height: 0.75rem; }
.atomizer--card .atomizer__body { width: 1.75rem; height: 4.5rem; }

.atomizer--hero .atomizer__body { width: 4.5rem; height: 10rem; }
.atomizer--hero .atomizer__cap { width: 2.5rem; height: 1.5rem; }

.hero__atomizers {
  position: absolute;
  right: clamp(2rem, 12vw, 10rem);
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
}

/* USP bar */
.usp-bar {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
}

.usp-bar__grid {
  display: grid;
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp-item svg {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.usp-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.usp-item span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section--grey { background: var(--grey-light); }

.section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.section__header p {
  color: var(--grey);
  max-width: 36rem;
  margin-inline: auto;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.product-card:hover { box-shadow: var(--shadow); }

.product-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__info {
  padding: 1rem;
  text-align: center;
}

.product-card__color {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.product-card__price {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

/* Lifestyle section */
.lifestyle {
  display: grid;
}

.lifestyle__image {
  min-height: 280px;
  background: var(--lifestyle-image-bg, linear-gradient(135deg, #d4c4b0 0%, #c9b89a 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lifestyle__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cellipse cx='200' cy='220' rx='120' ry='40' fill='%23b8a088' opacity='.3'/%3E%3C/svg%3E") center/cover;
}

.lifestyle__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-promo { margin-top: 0; }

/* Product page promo banner */
.eycy-product-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  background: var(--eycy-promo-bg, #f2dddd);
}

.eycy-product-promo__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.eycy-product-promo__image--empty {
  background: linear-gradient(135deg, #d4c4b0 0%, #c9b89a 100%);
}

.eycy-product-promo__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 10%;
  max-width: none;
}

.eycy-product-promo--content-dark {
  --eycy-promo-text: #111111;
  --eycy-promo-text-muted: #222222;
}

.eycy-product-promo--content-light {
  --eycy-promo-text: #ffffff;
  --eycy-promo-text-muted: rgba(255, 255, 255, 0.82);
}

.eycy-product-promo__label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--eycy-promo-label, #b9974f);
  font-weight: 700;
}

.eycy-product-promo__title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--eycy-promo-text-custom, var(--eycy-promo-text));
  font-family: var(--font-serif, Georgia, serif);
}

.eycy-product-promo__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--eycy-promo-text-custom, var(--eycy-promo-text-muted));
  margin: 0 0 30px;
  max-width: 620px;
}

.eycy-product-promo__actions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.eycy-product-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: var(--eycy-promo-btn-bg, #111111);
  color: var(--eycy-promo-btn-text, #ffffff);
  border: 2px solid var(--eycy-promo-btn-border, var(--eycy-promo-btn-bg, #111111));
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  border-radius: 0;
  width: auto;
  max-width: 100%;
  transition: background .2s, color .2s, border-color .2s;
}

.eycy-product-promo__btn:hover:not(:disabled) {
  background: var(--eycy-promo-btn-border, #b9974f);
  color: #111111;
  border-color: var(--eycy-promo-btn-border, #b9974f);
}

.eycy-product-promo__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-promo .lifestyle__content {
  background: var(--pink-light);
}

.lifestyle__handbag {
  position: relative;
  z-index: 1;
  width: 8rem;
  height: 6rem;
  background: #c4a882;
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: var(--shadow);
}

.lifestyle__handbag::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 2rem;
  border: 3px solid #a08868;
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
}

.lifestyle__content {
  background: var(--lifestyle-content-bg, var(--pink));
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lifestyle--content-dark {
  --lifestyle-text: var(--black);
  --lifestyle-text-muted: var(--grey);
}

.lifestyle--content-light {
  --lifestyle-text: #ffffff;
  --lifestyle-text-muted: rgba(255, 255, 255, 0.78);
}

.lifestyle__content h2 {
  color: var(--lifestyle-text-custom, var(--lifestyle-text));
}

.lifestyle__content p {
  color: var(--lifestyle-text-custom, var(--lifestyle-text-muted));
}

.lifestyle__content .btn--lifestyle {
  background: var(--lifestyle-btn-bg, var(--black));
  color: var(--lifestyle-btn-text, var(--white));
  border-color: var(--lifestyle-btn-border, var(--lifestyle-btn-bg, var(--black)));
}

.lifestyle__content .btn--lifestyle:hover {
  filter: brightness(1.08);
}

.lifestyle__label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lifestyle-label, var(--gold));
  margin-bottom: 0.75rem;
}

/* Trust bar */
.trust-bar {
  background: var(--grey-light);
  padding: 2rem 0;
  border-top: 1px solid var(--grey-border);
}

.trust-bar__grid {
  display: grid;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.trust-item svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.trust-item strong {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* Footer */
.footer-main {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
}

.footer-main h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-main ul li { margin-bottom: 0.5rem; }

.footer-main a:hover { color: var(--gold); }

.footer-main__grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 20rem;
}

.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__text small { color: rgba(255,255,255,0.5); }

.footer-bottom {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 1.25rem 0;
  font-size: 0.75rem;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom__copy,
.footer-bottom__credit {
  margin: 0;
}

.footer-bottom__credit a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom__credit a:hover {
  color: var(--white);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  align-items: center;
  justify-content: center;
}

.payment-icons img {
  height: 1.125rem;
  width: auto;
  max-width: 3.5rem;
  object-fit: contain;
  opacity: .85;
}

.payment-icons span {
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.6875rem;
  font-weight: 600;
}

/* Page layouts */
.page-header {
  background: var(--pink-light);
  padding: 2.5rem 0;
  text-align: center;
}

.page-header p { color: var(--grey); margin: 0; }

.page-content {
  padding: 2.5rem 0 4rem;
}

/* ─── Product detail page ─────────────────────────────── */
.page-product { background: var(--white); }

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--grey);
  padding: 1.25rem 0 0.5rem;
}

.product-breadcrumb a {
  color: var(--grey);
  transition: color var(--transition);
}

.product-breadcrumb a:hover { color: var(--black); }

.product-breadcrumb span[aria-hidden] { color: var(--grey-border); }

.product-page { padding-bottom: 3rem; }

.product-detail {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 2.5rem;
}

/* Galerij */
.product-gallery { display: grid; gap: 1rem; }

.product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 0.4s ease;
}

.product-gallery__main:hover .product-gallery__image { transform: scale(1.04); }

.product-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__placeholder .atomizer__body { width: 5rem; height: 12rem; }
.product-gallery__placeholder .atomizer__cap { width: 3rem; height: 1.75rem; }

.product-gallery__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.product-gallery__badge--sale {
  top: auto;
  bottom: 1rem;
  background: var(--gold);
  color: var(--black);
}

.product-gallery__badge--sale + .product-gallery__badge,
.product-gallery__badge + .product-gallery__badge--sale {
  top: auto;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.product-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.product-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 2px; }

.product-gallery__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--grey-light);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color var(--transition);
}

.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery__thumb:hover { border-color: var(--grey); }

.product-gallery__thumb.is-active { border-color: var(--black); }

/* Product info */
.product-info { padding: 0; }

.product-info__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-info__title {
  font-family: var(--font-hero);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.product-info__stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.product-info__rating-text {
  color: var(--grey);
  font-size: 0.8125rem;
}

.product-info__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  margin-bottom: 1.5rem;
}

.product-info__price-current {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}

.product-info__price-current--sale { color: var(--gold); }

.product-info__price-old {
  font-size: 1.125rem;
  color: var(--grey);
  text-decoration: line-through;
}

.product-info__price-save {
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-info__price-tax {
  width: 100%;
  font-size: 0.75rem;
  color: var(--grey);
}

.product-info__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.product-discount-table {
  margin: 0 0 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #faf8f6;
}

.product-discount-table__title {
  margin: 0 0 .75rem;
  font-size: .875rem;
  font-weight: 600;
}

.product-discount-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.product-discount-table th,
.product-discount-table td {
  padding: .5rem .25rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-discount-table tr:last-child td {
  border-bottom: 0;
}

.product-discount-table th {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--grey);
}

/* Kleur swatches */
.product-options { margin-bottom: 1.5rem; }

.product-options__label {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.product-options__label strong { color: var(--black); font-weight: 600; }

.product-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  cursor: pointer;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition);
}

.product-swatch:hover { transform: translateY(-1px); }

.product-swatch.is-active { border-color: var(--black); }

.product-swatch__dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

/* Stock indicator */
.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.product-stock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-stock--ok { color: #1f7a3a; }
.product-stock--ok .product-stock__dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.product-stock--low { color: #b54708; }
.product-stock--low .product-stock__dot {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.product-stock--out { color: #b91c1c; }
.product-stock--out .product-stock__dot {
  background: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

/* Add to cart */
.product-buy { margin-bottom: 1.75rem; }

.product-buy__row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.qty-input {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  background: var(--white);
}

.qty-input button {
  width: 2.75rem;
  height: 3rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--black);
  transition: background var(--transition), opacity var(--transition);
  flex-shrink: 0;
}

.qty-input button:hover:not(:disabled) { background: var(--grey-light); }

.qty-input button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.qty-input input {
  width: 3rem;
  height: 3rem;
  border: none;
  border-left: 1px solid var(--grey-border);
  border-right: 1px solid var(--grey-border);
  text-align: center;
  font-family: inherit;
  font-size: 0.9375rem;
  background: transparent;
}

.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input input { -moz-appearance: textfield; }

.product-buy__cta {
  flex: 1;
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-buy__cta:disabled {
  background: var(--grey-border);
  color: var(--grey);
  cursor: not-allowed;
}

/* Perks */
.product-perks {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  background: var(--grey-light);
  border-radius: 12px;
}

.product-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
}

.product-perks__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Features bar */
.product-features-bar {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.product-features-bar__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-feature svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

.product-feature strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.15rem;
}

.product-feature span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Story / description */
.product-story { padding: 0 0 3rem; }

.product-story__grid {
  display: grid;
  gap: 2rem;
}

.product-story__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.product-story__content h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.25rem;
}

.product-detail__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--black);
}

.product-detail__desc p { margin-bottom: 1rem; }
.product-detail__desc ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }
.product-detail__desc li { margin-bottom: 0.4rem; }

.product-story__specs {
  background: var(--grey-light);
  border-radius: 14px;
  padding: 1.75rem;
  height: fit-content;
}

.product-story__specs h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.product-story__specs dl { margin: 0; }

.product-story__specs > dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grey-border);
  font-size: 0.875rem;
}

.product-story__specs > dl > div:last-child { border-bottom: none; }

.product-story__specs dt { color: var(--grey); }
.product-story__specs dd { margin: 0; font-weight: 500; }

/* Sticky mobile CTA */
.product-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  padding: 0.75rem 0;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.product-sticky-cta.is-visible {
  transform: translateY(0);
}

.product-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-sticky-cta__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-sticky-cta__title {
  font-size: 0.8125rem;
  color: var(--grey);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-sticky-cta__price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}

.product-sticky-cta__btn {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

@media (min-width: 900px) {
  .product-sticky-cta { display: none; }
}

/* Cart & checkout */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--grey-border);
  text-align: left;
  vertical-align: middle;
}

.cart-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

.cart-price-sale {
  font-weight: 600;
  color: var(--black);
}

.cart-price-old {
  color: var(--grey);
  text-decoration: line-through;
}

.cart-discount-label {
  color: #166534;
  font-weight: 600;
}

.cart-item__info { display: flex; align-items: center; gap: 1rem; }

.cart-item__thumb {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--grey-border);
}

.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-table .qty-input {
  display: inline-flex;
  width: auto;
  max-width: 8.5rem;
  vertical-align: middle;
}

.qty-input--cart {
  border-radius: var(--radius);
}

.qty-input--cart button {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input--cart input {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  min-width: 2.75rem;
  max-width: 2.75rem;
  height: 2.5rem;
  padding: 0;
}

.cart-summary {
  background: var(--grey-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 24rem;
  margin-left: auto;
}

.cart-upsells {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
}

.cart-upsells__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.cart-summary__row--total {
  font-weight: 700;
  font-size: 1.125rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-border);
  margin-top: 0.75rem;
}

.checkout-grid {
  display: grid;
  gap: 2rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--pink-dark);
  outline-offset: 0;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row--2 { grid-template-columns: 1fr 1fr; }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--grey-border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item__answer {
  padding-bottom: 1.25rem;
  color: var(--grey);
  font-size: 0.9375rem;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state p { color: var(--grey); margin-bottom: 1.5rem; }

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* Overlay for mobile nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 98;
}

.nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* Mobile bottom navigation */
.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-nav__list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-bottom-nav__list > li {
  flex: 1;
  min-width: 0;
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  min-height: var(--mobile-nav-height, 3.75rem);
  padding: 0.35rem 0.25rem;
  border: none;
  background: none;
  color: var(--grey);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-bottom-nav__item svg {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.mobile-bottom-nav__item.is-active,
.mobile-bottom-nav__item:hover,
.mobile-bottom-nav__item:focus-visible {
  color: var(--black);
}

.mobile-bottom-nav__item--cart {
  position: relative;
}

.mobile-bottom-nav__badge {
  top: 0.125rem;
  right: calc(50% - 1.35rem);
}

/* Tablet */
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop */
@media (min-width: 900px) {
  /* Homepage: transparante header over hero */
  body.page-home {
    position: relative;
  }

  body.page-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
  }

  body.page-home .site-header .container {
    width: min(1200px, 100% - 3rem);
  }

  body.page-home.has-announcement .site-header {
    top: var(--announcement-height);
  }

  body.page-home .hero--full .hero__layout {
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-left: clamp(2rem, 8vw, 10rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
    height: var(--hero-height);
    max-height: var(--hero-height);
    align-items: center;
    justify-content: flex-start;
  }

  body.page-home .hero--full .hero__layout::before {
    display: none;
  }

  body.page-home .hero--full .hero__content {
    max-width: 34rem;
    width: auto;
  }

  body.page-home .hero--content-light .hero__content {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  body.page-home .hero--full .hero__bg .hero__image {
    object-position: center center;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }

  .hero__actions .btn {
    width: auto;
    flex: initial;
  }

  body.page-home .hero--full .hero__badge {
    top: calc(var(--header-height) + 2rem);
    right: clamp(2rem, 8vw, 6rem);
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    padding: 1.125rem 0;
  }

  .nav-toggle { display: none; }

  .main-nav {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
    justify-self: center;
  }

  .main-nav__list {
    flex-direction: row;
    gap: 2.25rem;
  }

  .main-nav__list a {
    padding: 0.5rem 0;
    border: none;
    position: relative;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .main-nav__list a.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--black);
  }

  .usp-bar__grid { grid-template-columns: repeat(4, 1fr); }

  .product-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

  .lifestyle { grid-template-columns: 1fr 1fr; }

  .lifestyle__content { padding: 4rem 3rem; }

  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }

  .footer-main__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }

  .footer-bottom__credit {
    flex: 1;
    text-align: center;
  }

  .product-detail {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }

  .product-gallery__main { aspect-ratio: 1; }

  .product-features-bar__grid { grid-template-columns: repeat(4, 1fr); }

  .product-story__grid { grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }

  .product-info__title { font-size: 2.5rem; }

  .checkout-grid { grid-template-columns: 1.2fr 0.8fr; }

  .cart-table .hide-mobile { display: table-cell; }
}

@media (max-width: 899px) {
  :root {
    --header-height: 3.75rem;
    --mobile-nav-height: 3.75rem;
    --container: min(1200px, 100% - 1.5rem);
  }

  body {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0));
  }

  body.cart-drawer-open {
    padding-bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0));
  }

  .mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: var(--white);
    border-top: 1px solid var(--grey-border);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }

  .hide-mobile { display: none; }

  /* Header */
  .site-header {
    padding-top: env(safe-area-inset-top, 0);
  }

  .site-header__inner {
    gap: 0.5rem;
    padding: 0.625rem 0;
  }

  .logo--has-image .logo__image {
    max-height: 2.25rem;
    max-width: 8.5rem;
  }

  .logo__text strong {
    font-size: 0.8125rem;
  }

  .logo__text small {
    font-size: 0.5rem;
  }

  .header-actions {
    gap: 0.875rem;
    margin-left: 0.25rem;
  }

  .header-actions__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .header-actions__cart .cart-badge {
    top: 0.2rem;
    right: 0.05rem;
  }

  .announcement-bar {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.45;
  }

  .announcement-bar__inner {
    gap: 0.35rem 0.75rem;
  }

  .main-nav {
    padding-top: calc(4.5rem + env(safe-area-inset-top, 0));
    width: min(100%, 320px);
  }

  /* Hero / homepage banner */
  body.page-home .hero.hero--full {
    height: auto;
    min-height: clamp(30rem, 92svh, 44rem);
    max-height: none;
    flex: none;
  }

  body.page-home .hero--full .hero__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: clamp(30rem, 92svh, 44rem);
    max-height: none;
    height: 100%;
    padding: calc(var(--header-height) + 0.5rem) 1rem 1rem;
  }

  body.page-home .hero--full .hero__layout::before {
    display: none;
  }

  body.page-home .hero--full .hero__content {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1rem 1.125rem;
    background: rgba(255, 247, 245, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }

  body.page-home .hero--content-light .hero__content {
    background: rgba(26, 26, 26, 0.88);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  body.page-home .hero--full .hero__bg .hero__image {
    object-position: center 42%;
  }

  .hero--full h1 {
    font-size: clamp(1.25rem, 5.8vw, 1.625rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
    hyphens: none;
    margin-bottom: 0.625rem;
  }

  .hero__eyebrow {
    margin-bottom: 0.375rem;
    font-size: 0.625rem;
  }

  .hero__text {
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: none;
    margin-bottom: 0.875rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    max-width: none;
  }

  .hero__actions .btn {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 8.5rem;
    width: auto;
    padding: 0.7rem 0.75rem;
    font-size: 0.625rem;
  }

  .hero__badge {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 0.5rem;
    z-index: 3;
  }

  /* Lifestyle / bottom promo banner */
  .lifestyle__image {
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: 55svh;
    overflow: hidden;
  }

  .lifestyle__image img {
    object-position: center center;
  }

  .lifestyle__content {
    padding: 2rem 0;
  }

  .lifestyle__content h2 {
    font-size: clamp(1.375rem, 5.5vw, 1.875rem);
    overflow-wrap: anywhere;
  }

  .lifestyle__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .product-promo .lifestyle__content {
    padding: 2rem 0;
  }

  .eycy-product-promo {
    grid-template-columns: 1fr;
  }

  .eycy-product-promo__image {
    min-height: 300px;
  }

  .eycy-product-promo__content {
    padding: 45px 24px;
  }

  .eycy-product-promo__actions {
    justify-content: stretch;
  }

  .eycy-product-promo__btn {
    width: 100%;
  }

  /* Cart drawer */
  .cart-drawer__panel {
    width: 100%;
    max-width: 100%;
  }

  .cart-drawer__header {
    padding: 1rem 1.25rem;
  }

  .cart-drawer__body {
    padding: 0.875rem 1.25rem;
  }

  .cart-drawer__item {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.625rem;
  }

  .cart-drawer__thumb {
    width: 64px;
    height: 64px;
  }

  .cart-drawer__meta {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .cart-drawer__upsell {
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  /* Cart page */
  .cart-table {
    display: block;
    border: none;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tbody {
    display: grid;
    gap: 1rem;
  }

  .cart-table tr {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "product product remove"
      "qty total total";
    gap: 0.75rem 1rem;
    padding: 1rem;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    background: var(--white);
  }

  .cart-table td {
    padding: 0;
    border: none;
  }

  .cart-table td:first-child {
    grid-area: product;
  }

  .cart-table td:nth-child(3) {
    grid-area: qty;
  }

  .cart-table td:nth-child(4) {
    grid-area: total;
    text-align: right;
  }

  .cart-table td:last-child {
    grid-area: remove;
    align-self: start;
    justify-self: end;
  }

  .cart-table td:nth-child(3)::before {
    content: 'Aantal';
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
    margin-bottom: 0.25rem;
  }

  .cart-table td:nth-child(4)::before {
    content: 'Totaal';
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
    margin-bottom: 0.25rem;
  }

  .cart-summary {
    max-width: none;
    margin-left: 0;
  }

  .cart-upsells {
    padding: 1rem;
  }

  /* Footer */
  .trust-bar {
    padding: 1.75rem 0;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-main {
    padding: 2.5rem 0 1.75rem;
  }

  .footer-main__grid {
    gap: 1.75rem;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    padding: 1.25rem 0 1.25rem;
  }

  .footer-bottom__inner {
    gap: 0.875rem;
  }

  .footer-bottom__copy,
  .footer-bottom__credit {
    font-size: 0.6875rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .payment-icons img {
    height: 1rem;
  }

  /* Pages */
  .page-header {
    padding: 2rem 0;
  }

  .page-content {
    padding: 2rem 0 2.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section__header {
    margin-bottom: 1.5rem;
  }

  .usp-bar {
    padding: 1.5rem 0;
  }

  .usp-bar__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Productpagina mobiel */
  body.page-product {
    padding-bottom: calc(var(--mobile-nav-height) + 5.25rem + env(safe-area-inset-bottom, 0));
  }

  .product-breadcrumb {
    padding: 0.75rem 0 0.25rem;
    font-size: 0.75rem;
  }

  .product-detail {
    padding: 0.75rem 0 2rem;
    gap: 1.5rem;
  }

  .product-gallery__main {
    border-radius: 0;
  }

  .product-gallery__image {
    padding: 0;
  }

  .product-gallery__thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 8px;
  }

  .product-info__title {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
    overflow-wrap: anywhere;
  }

  .product-info__price-current {
    font-size: 1.625rem;
  }

  .product-buy__row {
    flex-wrap: nowrap;
  }

  .product-buy__cta {
    min-width: 0;
    padding: 0 1rem;
  }

  .product-features-bar {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }

  .product-features-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .product-feature {
    gap: 0.75rem;
  }

  .product-feature strong {
    font-size: 0.8125rem;
  }

  .product-feature span {
    font-size: 0.6875rem;
  }

  .product-story {
    padding-bottom: 2rem;
  }

  .product-story__specs {
    padding: 1.25rem;
  }

  .product-sticky-cta {
    display: block;
    transform: translateY(0);
    z-index: 91;
    padding: 0.625rem 0;
    bottom: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.12);
  }

  .product-sticky-cta__inner {
    gap: 0.75rem;
  }

  .product-sticky-cta__btn {
    flex: 1;
    max-width: 12rem;
    min-height: 2.875rem;
    padding: 0.875rem 1.125rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .section { padding: 4rem 0; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.review-stars {
  color: #f5a623;
  letter-spacing: 0.05em;
}

.product-reviews {
  padding: 3.5rem 0 4rem;
  background: #fff;
  border-top: 1px solid var(--grey-border);
}

.product-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-reviews__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.product-reviews__sort select {
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  background: #fff;
}

.product-reviews__list {
  display: grid;
  gap: 0;
}

.product-review {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto auto;
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-border);
}

.product-review:last-child {
  border-bottom: none;
}

.product-review__profile {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.product-review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3dce8;
  color: #8b5a72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.product-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-review__meta-block .review-stars {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.product-review__variant {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--grey);
}

.product-review__text {
  margin: 0 0 0.75rem;
  line-height: 1.7;
  color: var(--black);
}

.product-review__author-line {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--grey);
}

.product-review__media {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.product-review__media-btn {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
}

.product-review__media-btn img,
.product-review__media-btn video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-review__media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.25rem;
  z-index: 1;
}

.product-review__media-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.product-review__actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.product-review__helpful {
  border: 1px solid var(--grey-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: var(--grey);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.product-review__helpful:hover:not(:disabled) {
  border-color: var(--accent, #c9a962);
  color: var(--black, #111);
}

.product-review__helpful.is-voted,
.product-review__helpful:disabled {
  cursor: default;
  border-color: var(--accent, #c9a962);
  color: var(--black, #111);
  background: rgba(201, 169, 98, 0.08);
}

.review-gallery[hidden] {
  display: none !important;
}

body.review-gallery-open {
  overflow: hidden;
}

.review-gallery {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.review-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.review-gallery__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--grey-border);
}

.review-gallery__header h2 {
  margin: 0;
  font-size: 1.125rem;
}

.review-gallery__close {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.review-gallery__body {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 320px;
  min-height: 420px;
}

.review-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--grey-border);
  overflow-y: auto;
}

.review-gallery__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  position: relative;
}

.review-gallery__thumb.is-active {
  border-color: var(--black);
}

.review-gallery__thumb img,
.review-gallery__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-gallery__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.review-gallery__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  min-height: 420px;
}

.review-gallery__main {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.review-gallery__main img,
.review-gallery__main video {
  max-width: 100%;
  max-height: min(70vh, 520px);
  object-fit: contain;
}

.review-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 1.5rem;
}

.review-gallery__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.review-gallery__nav--prev { left: 1rem; }
.review-gallery__nav--next { right: 1rem; }

.review-gallery__detail {
  padding: 1.25rem;
  border-left: 1px solid var(--grey-border);
  overflow-y: auto;
}

.review-gallery__stars {
  color: #f5a623;
  margin-bottom: 0.75rem;
}

.review-gallery__variant,
.review-gallery__author {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--grey);
}

.review-gallery__text {
  margin: 0;
  line-height: 1.7;
  color: var(--black);
}

@media (max-width: 900px) {
  .product-review {
    grid-template-columns: 1fr;
  }

  .product-review__media,
  .product-review__actions {
    justify-content: flex-start;
  }

  .review-gallery__body {
    grid-template-columns: 1fr;
  }

  .review-gallery__thumbs {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--grey-border);
    overflow-x: auto;
  }

  .review-gallery__detail {
    border-left: none;
    border-top: 1px solid var(--grey-border);
  }
}
