:root,
.skin-atelier-blanche {
  --color-bg: #f7f2ea;
  --color-surface: #fffaf2;
  --color-surface-strong: #efe5d5;
  --color-text: #191714;
  --color-muted: #71695f;
  --color-border: rgba(25, 23, 20, 0.16);
  --color-accent: #9b7342;
  --color-accent-strong: #11100f;
  --color-accent-soft: #e9d2bd;
  --color-inverse: #ffffff;
  --shadow-soft: 0 18px 48px rgba(49, 40, 29, 0.12);
  --radius-card: 8px;
  --radius-control: 4px;
  --container: 1180px;
  --header-height: 76px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

.skin-noir-couture {
  --color-bg: #11100f;
  --color-surface: #1b1916;
  --color-surface-strong: #2a241f;
  --color-text: #f5efe6;
  --color-muted: #b9ad9f;
  --color-border: rgba(245, 239, 230, 0.18);
  --color-accent: #c9a15f;
  --color-accent-strong: #d9bf83;
  --color-accent-soft: #3b3026;
  --color-inverse: #11100f;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.skin-soft-floral {
  --color-bg: #fbf3f2;
  --color-surface: #fffafa;
  --color-surface-strong: #f0d9d5;
  --color-text: #241916;
  --color-muted: #7a625f;
  --color-border: rgba(94, 54, 54, 0.18);
  --color-accent: #b66a72;
  --color-accent-strong: #5e7e68;
  --color-accent-soft: #efd4d2;
  --color-inverse: #ffffff;
  --shadow-soft: 0 18px 48px rgba(115, 72, 77, 0.12);
}

.skin-amber-night {
  --color-bg: #1c1511;
  --color-surface: #281d17;
  --color-surface-strong: #3a2a20;
  --color-text: #fff3df;
  --color-muted: #d0bda4;
  --color-border: rgba(255, 243, 223, 0.18);
  --color-accent: #e0a340;
  --color-accent-strong: #bf6844;
  --color-accent-soft: #4e3422;
  --color-inverse: #1c1511;
  --shadow-soft: 0 20px 56px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.has-open-menu,
body.has-language-modal {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--color-accent) 65%, transparent);
  text-underline-offset: 0.22em;
}

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

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--color-text);
  color: var(--color-inverse);
  border-radius: var(--radius-control);
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(190px, 320px) auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 18px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-text);
  text-decoration: none;
}

.custom-logo-link,
.custom-logo {
  display: inline-flex;
  max-width: min(44vw, 240px);
  height: auto;
}

.custom-logo {
  object-fit: contain;
}

.site-branding__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-text) 74%, transparent);
  border-radius: 0;
  background: #faf7ef;
}

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

.site-branding__lockup {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-branding__name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--color-text);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.primary-nav {
  justify-self: center;
}

.primary-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a,
.footer-nav a,
.header-action {
  color: var(--color-text);
  font-size: 0.92rem;
  text-decoration: none;
}

.primary-nav a:hover,
.footer-nav a:hover,
.header-action:hover {
  color: var(--color-accent);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-header__search {
  justify-self: stretch;
}

.site-search input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--color-border) 86%, var(--color-text));
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--color-bg) 88%, var(--color-surface));
  color: var(--color-text);
  font: inherit;
  font-size: 0.86rem;
}

.site-search button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-control);
  background: var(--color-text);
  color: var(--color-inverse);
  cursor: pointer;
}

.site-search__icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-search__icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
}

.header-action--cart {
  border-color: var(--color-border);
}

.header-action--cart.is-bumped .cart-count {
  animation: me-cart-bump 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-inverse);
  font-size: 0.76rem;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-control);
  background: var(--color-text);
  color: var(--color-inverse);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-1px);
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.button--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 72px 0;
}

.section--compact {
  padding: 48px 0;
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1.12;
}

.section__text {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--color-muted);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  background: var(--color-surface-strong);
  isolation: isolate;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: clamp(900px, 70vw, 1480px);
  background: rgba(255, 252, 246, 0.8);
  clip-path: polygon(0 0, 97% 0, 100% 15%, 99% 45%, 100% 82%, 97% 100%, 0 100%);
  box-shadow: 28px 0 90px rgba(78, 66, 48, 0.16);
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, color-mix(in srgb, var(--color-bg) 94%, transparent) 0%, color-mix(in srgb, var(--color-bg) 72%, transparent) 42%, color-mix(in srgb, var(--color-bg) 10%, transparent) 100%);
  content: "";
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  min-height: 680px;
}

.home-hero__copy {
  position: relative;
  isolation: isolate;
  width: min(560px, 100%);
  padding: 76px 0 92px;
}

.home-hero__copy::before {
  position: absolute;
  display: none;
  inset: -34px -58px -38px -42px;
  z-index: -1;
  background: rgba(255, 252, 246, 0.94);
  clip-path: polygon(0 8%, 82% 0, 100% 17%, 94% 83%, 78% 100%, 8% 94%, 0 68%);
  box-shadow: 0 34px 90px rgba(64, 52, 36, 0.14);
  backdrop-filter: blur(14px);
  content: "";
}

.home-hero__copy > * {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  line-height: 1.02;
}

.home-hero p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.feature-strip__item {
  padding: 22px 26px;
  border-right: 1px solid var(--color-border);
}

.feature-strip__item:last-child {
  border-right: 0;
}

.feature-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.12rem;
}

.feature-strip span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.product-grid,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

/* WooCommerce archive items fill their CSS grid tracks. */
.woocommerce ul.products li.product {
  float: none;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  justify-self: stretch;
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  float: none;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  justify-self: stretch;
}

.product-card {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface-strong);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.025);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-card__badge--hot,
.product-card__badge--bestseller {
  background: color-mix(in srgb, var(--color-accent) 82%, var(--color-bg));
  color: var(--color-text-strong);
}

.product-card__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-card__title a {
  text-decoration: none;
}

.product-card__rating {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  font-size: 0.86rem;
  line-height: 1;
}

.product-card__rating-stars {
  display: inline-flex;
  max-width: 6.2em;
  overflow: hidden;
  color: #111;
  font-size: 0.9rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card__rating-count {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.product-card__source {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: 0.88rem;
}

.product-card__source span {
  color: var(--color-muted);
}

.product-card__source strong {
  min-width: 0;
  color: var(--color-text);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-card__brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.product-card__brand span {
  flex: 0 0 auto;
  text-transform: uppercase;
}

.product-card__brand strong {
  min-width: 0;
  color: var(--color-text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.product-card__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-card__signals span,
.product-card__gender,
.product-card__sales {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--color-border) 82%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-bg) 76%, var(--color-surface));
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.1;
  white-space: nowrap;
}

.product-card__gender {
  border-color: color-mix(in srgb, var(--color-accent) 50%, var(--color-border));
  color: var(--color-text);
}

.product-card__meta {
  display: grid;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.product-card__meta span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
  padding-bottom: 6px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.product-card__price {
  display: grid;
  gap: 2px;
  color: var(--color-text);
  font-weight: 700;
}

.product-card__price--regular {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration-thickness: 1px;
}

.product-card__price--sale {
  color: var(--color-text);
  font-size: 1.04rem;
  line-height: 1.1;
}

.product-card__quick-add {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.product-card__quick-add::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0%, color-mix(in srgb, var(--color-inverse) 32%, transparent) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-120%);
}

.product-card__quick-add.is-loading {
  pointer-events: none;
}

.product-card__quick-add.is-loading::after {
  opacity: 1;
  animation: me-button-sheen 900ms ease-in-out infinite;
}

.product-card__quick-add.is-added {
  border-color: color-mix(in srgb, #2f6f55 72%, var(--color-border));
  background: #2f6f55;
  color: #fff;
}

.product-card__quick-add.is-added::before {
  display: inline-block;
  width: 6px;
  height: 12px;
  margin-right: 2px;
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.product-card .added_to_cart.wc-forward {
  display: none;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.family-tile {
  display: grid;
  min-height: 132px;
  align-content: end;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
}

.family-tile:hover {
  border-color: var(--color-accent);
}

.family-tile strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.finder-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-strong);
}

.skin-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.skin-preview button {
  min-height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}

.skin-preview button[aria-pressed="true"] {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.shop-hero,
.page-hero {
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.shop-hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.08;
}

.shop-page > .container,
.shop-hero .container {
  width: calc(100% - clamp(24px, 4vw, 56px));
  max-width: none;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.scent-search-panel {
  display: grid;
  gap: 22px;
  margin: 24px 0 8px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-bg) 86%, transparent), color-mix(in srgb, var(--color-surface) 92%, transparent)),
    var(--color-surface);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--color-text) 8%, transparent);
}

.scent-search-panel__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.scent-search-panel__form input[type="search"] {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--color-text) 72%, var(--color-border));
  border-radius: 999px;
  background: color-mix(in srgb, #fff 84%, var(--color-bg));
  color: var(--color-text);
  font: inherit;
}

.scent-search-panel__form button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.scent-search-panel__form button:hover {
  transform: scale(1.04);
  background: var(--color-accent);
}

.scent-search-panel__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.scent-search-panel__icon::after {
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: center;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.scent-search-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 18px;
  align-items: start;
}

.scent-search-panel__group {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.scent-search-panel__group strong {
  color: var(--color-text);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.scent-search-panel__group--brands {
  align-content: start;
}

.scent-search-panel__chips {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.scent-search-panel__chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-bg) 74%, #fff);
  color: var(--color-text);
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.scent-search-panel__chip:hover,
.scent-search-panel__chip.is-active {
  border-color: color-mix(in srgb, var(--color-accent) 62%, var(--color-border));
  background: color-mix(in srgb, var(--color-accent) 15%, #fff);
  transform: translateY(-1px);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
}

.shop-layout > section {
  min-width: 0;
}

.shop-page .product-grid,
.shop-page ul.products,
.shop-page .woocommerce ul.products {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.shop-filters {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  align-self: start;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
}

.shop-filters h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.shop-filters__subhead {
  margin: 22px 0 10px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-list--brands {
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.filter-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--color-muted);
  text-decoration: none;
}

.filter-list a:hover {
  color: var(--color-accent);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: start;
  padding: 56px 0;
}

.product-detail__gallery {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.product-detail__thumbs {
  display: grid;
  gap: 10px;
}

.product-detail__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-detail__thumb::after {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px solid transparent;
  border-radius: calc(var(--radius-card) - 3px);
  pointer-events: none;
}

.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-detail__thumb:hover,
.product-detail__thumb.is-active {
  border-color: var(--color-text);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--color-text) 10%, transparent);
}

.product-detail__thumb.is-active {
  animation: me-gallery-thumb 220ms ease;
}

.product-detail__thumb:hover img,
.product-detail__thumb.is-active img {
  transform: scale(1.04);
}

.product-detail__thumb.is-active::after {
  border-color: color-mix(in srgb, var(--color-inverse) 78%, transparent);
}

.product-detail__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-surface-strong);
  cursor: zoom-in;
}

.product-detail__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--zoom-image);
  background-repeat: no-repeat;
  background-position: var(--zoom-x, 50%) var(--zoom-y, 50%);
  background-size: 190%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.product-detail__media.is-zooming::after {
  opacity: 1;
}

.product-detail__media.is-zooming .product-detail__image {
  opacity: 0;
}

.product-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 140ms ease, transform 220ms ease;
}

.product-detail__media:hover .product-detail__image {
  transform: scale(1.018);
}

.product-detail__summary {
  display: grid;
  gap: 22px;
}

.product-detail__summary h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.06;
}

.product-detail__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
}

.product-detail__price del {
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 500;
  text-decoration-thickness: 1px;
}

.product-detail__price strong {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1;
}

.product-detail__rating {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 84%, #fff 16%);
  font-size: 0.9rem;
}

.product-detail__rating span:last-child {
  color: var(--color-muted);
}

.product-attributes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-attribute {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}

.product-attribute span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.product-attribute strong {
  display: block;
  margin-top: 4px;
}

.capacity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capacity-options button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}

.capacity-options button[aria-pressed="true"] {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.scent-pyramid {
  padding: 34px 0;
  border-top: 1px solid var(--color-border);
}

.scent-pyramid__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.scent-pyramid__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.12;
}

.scent-pyramid__layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.scent-pyramid__layer {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-border) 78%, transparent);
  background: transparent;
  cursor: pointer;
}

.scent-pyramid__layer.is-active,
.scent-pyramid__layer:hover {
  border-color: color-mix(in srgb, var(--color-accent) 60%, var(--color-border));
}

.scent-pyramid__layer h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.2;
}

.note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.note-list li {
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.entry-list {
  display: grid;
  gap: 22px;
  padding: 56px 0;
}

.entry-card {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
}

.entry-card h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
}

.cart-page,
.checkout-page {
  padding: 56px 0;
}

.woocommerce-account .page-entry.container {
  width: calc(100% - clamp(24px, 5vw, 80px));
  max-width: none;
}

.woocommerce-account .page-entry {
  padding: clamp(42px, 5vw, 78px) 0 86px;
  min-height: calc(100vh - var(--header-height) - 280px);
}

.woocommerce-account .page-entry > .woocommerce {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
  max-width: 1480px;
  margin: 0 auto;
}

.woocommerce-account .woocommerce {
  min-width: 0;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface) 94%, #fff), color-mix(in srgb, var(--color-surface-strong) 42%, var(--color-surface))),
    var(--color-surface);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  padding: 12px 14px 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 650;
  text-align: left;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 99px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  border-color: var(--color-border);
  background: color-mix(in srgb, var(--color-surface-strong) 54%, var(--color-surface));
  color: var(--color-accent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--color-text) 10%, transparent);
  transform: translateX(6px);
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover::before,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a::before {
  transform: scaleY(1);
}

.woocommerce-account .woocommerce-MyAccount-content {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 48px);
  animation: eauvel-account-panel-in 360ms ease both;
}

.woocommerce-account .woocommerce-MyAccount-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), color-mix(in srgb, var(--color-accent-soft) 70%, transparent), transparent);
  opacity: 0.72;
}

@keyframes eauvel-account-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content > *:last-child {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  max-width: 760px;
  margin: 0 0 14px;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
  font-weight: 650;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover {
  color: var(--color-accent);
  text-decoration-color: currentColor;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.woocommerce-account .woocommerce-MyAccount-content address {
  min-height: 166px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-bg) 62%, var(--color-surface) 38%);
  font-style: normal;
  line-height: 1.7;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-content address:hover {
  border-color: color-mix(in srgb, var(--color-accent) 42%, var(--color-border));
  box-shadow: 0 16px 36px color-mix(in srgb, var(--color-text) 9%, transparent);
  transform: translateY(-2px);
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .shop_table {
  width: 100%;
  table-layout: auto;
  border: 1px solid var(--color-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: color-mix(in srgb, var(--color-surface) 92%, #fff);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--color-text) 6%, transparent);
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-orders-table td {
  padding: clamp(14px, 1.35vw, 20px);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.woocommerce-account .woocommerce-orders-table thead th {
  background: color-mix(in srgb, var(--color-surface-strong) 48%, var(--color-surface));
  font-size: 0.86rem;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-orders-table tbody tr:last-child th,
.woocommerce-account .woocommerce-orders-table tbody tr:last-child td {
  border-bottom: 0;
}

.woocommerce-account .woocommerce-orders-table tbody tr {
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.woocommerce-account .woocommerce-orders-table tbody tr:hover {
  background: color-mix(in srgb, var(--color-surface-strong) 32%, transparent);
  box-shadow: inset 4px 0 0 var(--color-accent);
}

.woocommerce-account .woocommerce-orders-table__cell-order-number,
.woocommerce-account .woocommerce-orders-table__cell-order-date,
.woocommerce-account .woocommerce-orders-table__cell-order-status {
  white-space: nowrap;
}

.woocommerce-account .woocommerce-orders-table__cell-order-total {
  min-width: 220px;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions {
  min-width: 260px;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
  min-width: 92px;
  min-height: 42px;
  margin: 0 8px 8px 0;
  padding: 9px 14px;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions .button:hover {
  box-shadow: 0 10px 22px color-mix(in srgb, var(--color-text) 12%, transparent);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .woocommerce-account .page-entry.container {
    width: min(100% - 24px, var(--container));
  }

  .woocommerce-account .page-entry {
    padding: 30px 0 56px;
  }

  .woocommerce-account .page-entry > .woocommerce {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    box-shadow: 0 12px 32px color-mix(in srgb, var(--color-text) 8%, transparent);
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 48px;
    padding: 10px 8px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    transform: none;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 16px;
  }
}

@media (max-width: 720px) {

  .woocommerce-account .woocommerce-orders-table,
  .woocommerce-account .woocommerce-orders-table tbody,
  .woocommerce-account .woocommerce-orders-table tr,
  .woocommerce-account .woocommerce-orders-table th,
  .woocommerce-account .woocommerce-orders-table td {
    display: block;
  }

  .woocommerce-account .woocommerce-orders-table {
    border: 0;
    background: transparent;
  }

  .woocommerce-account .woocommerce-orders-table thead {
    display: none;
  }

  .woocommerce-account .woocommerce-orders-table tbody {
    display: grid;
    gap: 14px;
  }

  .woocommerce-account .woocommerce-orders-table tbody tr {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .woocommerce-account .woocommerce-orders-table__cell {
    display: grid;
    grid-template-columns: minmax(86px, 0.36fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-width: 0;
    padding: 0;
    border: 0;
    white-space: normal;
  }

  .woocommerce-account .woocommerce-orders-table__cell::before {
    content: attr(data-title);
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-total,
  .woocommerce-account .woocommerce-orders-table__cell-order-actions {
    min-width: 0;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--color-border);
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-actions::before {
    display: none;
  }

  .woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
    flex: 1 1 112px;
    min-width: 0;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: minmax(0, 1fr);
  }
}

.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.shop_table th,
.shop_table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.cart-item__product {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
}

.cart-item__image img {
  width: 88px;
  height: 110px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.coupon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coupon input,
.checkout-page input,
.checkout-page select,
.checkout-page textarea,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-surface);
  color: var(--color-text);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.checkout-fields,
.checkout-review {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
}

.checkout-account-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 46%, var(--color-border));
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--color-accent) 10%, var(--color-surface));
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.checkout-review {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.language-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.46);
}

.language-modal__panel {
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.language-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 0;
}

.language-modal__header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
}

.language-modal__header p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

.language-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.language-modal__options {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
}

.language-option[aria-pressed="true"] {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  padding: 48px 0;
}

.site-footer__inner > * {
  min-width: 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
}

.site-footer p {
  color: var(--color-muted);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  min-width: 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 10px 12px;
}

.footer-nav ul {
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 16px;
  margin: 0 0 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  color: var(--color-text);
  list-style: none;
}

.woocommerce-error {
  border-color: color-mix(in srgb, #b42318 70%, var(--color-border));
}

@keyframes me-button-sheen {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes me-cart-bump {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.28);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes me-gallery-thumb {
  0% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-header__search {
    display: none;
  }

  .product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  :root,
  .skin-atelier-blanche {
    --header-height: 66px;
  }

  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow: auto;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
  }

  .primary-nav[data-open] {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
    padding: 18px 0;
  }

  .primary-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .site-header__actions {
    justify-self: end;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 620px;
  }

  .home-hero h1 {
    font-size: 2.7rem;
  }

  .home-hero::after {
    background: linear-gradient(90deg, color-mix(in srgb, var(--color-bg) 96%, transparent) 0%, color-mix(in srgb, var(--color-bg) 82%, transparent) 64%, color-mix(in srgb, var(--color-bg) 26%, transparent) 100%);
  }

  .section {
    padding: 54px 0;
  }

  .section__header,
  .finder-band,
  .product-detail,
  .checkout-layout,
  .woocommerce-account .page-entry > .woocommerce,
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail__gallery,
  .checkout-review,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .shop-filters {
    position: static;
  }

  .woocommerce-account .page-entry {
    padding: 42px 0 56px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail__gallery {
    grid-template-columns: 1fr;
  }

  .product-detail__thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-detail__thumb {
    width: 72px;
    flex: 0 0 72px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scent-pyramid__layers,
  .product-attributes {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .feature-strip__item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-branding__name {
    max-width: 112px;
  }

  .header-action--account {
    display: none;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 570px;
  }

  .home-hero h1,
  .shop-hero h1,
  .page-hero h1,
  .product-detail__summary h1 {
    font-size: 2.2rem;
  }

  .home-hero__copy {
    padding: 56px 0 76px;
  }

  .home-hero__actions,
  .newsletter-form,
  .site-footer__bottom,
  .shop-toolbar,
  .product-card__footer,
  .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .product-grid,
  .woocommerce ul.products,
  .family-grid,
  .woocommerce-account .woocommerce-MyAccount-navigation ul,
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .finder-band,
  .checkout-fields,
  .checkout-review {
    padding: 20px;
  }

  .shop_table,
  .shop_table tbody,
  .shop_table tr,
  .shop_table td {
    display: block;
    width: 100%;
  }

  .shop_table thead {
    display: none;
  }

  .shop_table td {
    padding: 12px 0;
  }
}
/* EAUVEL upgrade layer */
.promo-bar {
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 36px;
}

.promo-bar button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: inherit;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
}

.promo-bar__close {
  position: absolute;
  right: 1.5rem;
}

.site-branding__domain {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  line-height: 1;
  color: var(--color-muted);
}

.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 15, 12, 0.36);
  backdrop-filter: blur(14px);
}

.mobile-drawer__panel {
  width: min(88vw, 380px);
  min-height: 100%;
  background: var(--color-background);
  padding: 1rem 1.25rem 2rem;
  box-shadow: 30px 0 80px rgba(0, 0, 0, 0.16);
}

.mobile-drawer__header,
.mobile-drawer__nav {
  display: flex;
}

.mobile-drawer__header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-drawer__search {
  margin: 0 0 1.2rem;
}

.mobile-drawer__header button,
.mobile-drawer__nav button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.mobile-drawer__nav {
  flex-direction: column;
  gap: 1.15rem;
}

.mobile-drawer__nav a,
.mobile-drawer__nav button {
  text-align: left;
  text-decoration: none;
  color: var(--color-ink);
  font-size: 1.25rem;
}

.home-hero__video,
.home-hero__gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.home-hero__video {
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.02);
}

.home-hero__poster {
  position: absolute;
  top: 50%;
  right: max(-12vw, calc((100vw - var(--container)) / 2 - 180px));
  bottom: auto;
  left: auto;
  z-index: 2;
  width: min(54vw, 1040px);
  height: auto;
  max-height: min(78%, 640px);
  transform: translate(220px, calc(-48% + 50px));
  object-fit: contain;
  object-position: center right;
  background: transparent;
  pointer-events: none;
}

.home-hero__gradient {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--color-background) 0%, rgba(255, 255, 255, 0.18) 42%, var(--color-background) 100%);
  pointer-events: none;
}

.product-detail__summary {
  position: sticky;
  top: 120px;
  align-self: start;
}

.product-detail__sales {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin-top: -0.75rem;
}

.product-services {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
}

.product-accordions {
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.product-accordions details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.product-accordions summary {
  cursor: pointer;
  font-weight: 700;
}

.product-reviews {
  background: #fbf8f1;
}

.review-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-summary__meta {
  display: grid;
  justify-items: end;
  gap: 0.25rem;
  text-align: right;
}

.review-summary__meta small {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.review-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.review-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.review-row__person {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.review-row__meta {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.review-row__meta strong {
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-row__content {
  min-width: 0;
}

.review-row__content p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.review-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.review-images button {
  width: 66px;
  aspect-ratio: 1;
  border: 1px solid var(--color-border);
  padding: 0;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
}

.review-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-votes {
  display: flex;
  gap: 0.5rem;
  margin-top: 0;
  justify-content: end;
}

.review-votes button {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

.review-load-more {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

.review-form-shell {
  margin-top: 2rem;
  max-width: 760px;
}

.review-gate {
  max-width: 760px;
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-surface) 88%, #fff 12%);
}

.review-gate h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.review-gate p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.review-login-modal[hidden] {
  display: none;
}

.review-login-modal {
  position: fixed;
  inset: 0;
  z-index: 121;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 16, 15, 0.44);
  backdrop-filter: blur(10px);
}

.review-login-modal__panel {
  position: relative;
  width: min(100%, 420px);
  margin: 0;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--color-text) 18%, transparent);
}

.review-login-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .review-summary {
    display: grid;
    align-items: start;
  }

  .review-summary__meta {
    justify-items: start;
    text-align: left;
  }

  .review-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 14px 0;
  }

  .review-row__votes {
    justify-content: start;
  }
}

.review-lightbox[hidden] {
  display: none;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
}

.review-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
}

.review-lightbox button {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
}

.single_add_to_cart_button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.single_add_to_cart_button.is-added {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(25, 23, 20, 0.16);
}

.single-cart-status {
  margin-top: 0.85rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.cart-flyer {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 150;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  transform: translate(var(--fly-start-x), var(--fly-start-y));
  animation: eauvel-fly-cart 0.8s ease forwards;
}

@keyframes eauvel-fly-cart {
  to {
    opacity: 0;
    transform: translate(var(--fly-end-x), var(--fly-end-y)) scale(0.35);
  }
}

.newsletter-consent {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.eauvel-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(circle 220px at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(177, 145, 86, 0.12), transparent 70%);
  mix-blend-mode: multiply;
}

@media (max-width: 860px) {
  .promo-bar__inner {
    min-height: 42px;
    padding-right: 2.75rem;
    justify-content: flex-start;
    overflow: hidden;
  }

  .site-header__inner {
    grid-template-columns: 44px 1fr 44px;
  }

  .primary-nav,
  .header-action--account,
  .site-header__actions .header-action:first-child {
    display: none;
  }

  .site-header__brand {
    justify-self: center;
  }

  .site-branding__name {
    font-size: 1.35rem;
    letter-spacing: 0.18em;
  }

  .product-detail__summary {
    position: static;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-nav ul {
    display: grid;
    gap: 10px;
  }
}

/* EAUVEL homepage/H5 refinement layer */
html,
body,
.site-shell {
  overflow-x: clip;
}

.site-main {
  overflow-x: clip;
}

.promo-bar {
  position: relative;
  z-index: 110;
  background: linear-gradient(90deg, #11100f, #2a2017 48%, #11100f);
}

.promo-bar__inner {
  position: relative;
  min-width: 0;
  padding-inline: 3.25rem;
  text-align: center;
}

.promo-bar__inner span,
.promo-bar__inner button {
  min-width: 0;
}

.promo-bar button {
  border-radius: 999px;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.promo-bar button:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.promo-bar button.is-copied {
  border-color: #d9bf83;
  background: rgba(217, 191, 131, 0.18);
}

.promo-bar__close {
  top: 50%;
  right: 1rem;
  width: 30px;
  height: 30px;
  padding: 0;
  transform: translateY(-50%);
}

.site-header {
  z-index: 105;
}

.site-header__brand,
.site-header__actions,
.primary-nav {
  min-width: 0;
}

.site-branding {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  gap: 3px 12px;
}

.site-branding__mark {
  grid-row: 1;
}

.site-branding__name {
  overflow: hidden;
  letter-spacing: 0.2em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-action--cart {
  white-space: nowrap;
}

.home-hero {
  min-height: clamp(560px, 76svh, 720px);
  border-bottom: 1px solid var(--color-border);
}

.home-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 5vw, 70px);
  min-height: clamp(560px, 76svh, 720px);
}

.home-hero__copy {
  width: min(620px, 100%);
  padding: clamp(64px, 11vh, 112px) 0 clamp(84px, 13vh, 128px);
}

.home-hero h1 {
  font-size: clamp(3.8rem, 10vw, 8rem);
  line-height: 0.82;
  overflow-wrap: normal;
  word-break: keep-all;
  text-transform: uppercase;
}

.home-hero__logo {
  display: block;
  width: min(100%, 760px);
  min-height: 0;
  margin: 18px 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eauvel-wordmark span {
  display: block;
  width: 100%;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 0.9;
  text-align: center;
  white-space: nowrap;
}

.home-hero__logo.eauvel-wordmark span {
  width: auto;
  font-size: clamp(3.8rem, 10vw, 8rem);
  letter-spacing: clamp(0.1em, 1.8vw, 0.22em);
  line-height: 0.82;
  text-align: left;
}

.home-hero__domain {
  margin-top: 12px !important;
  color: var(--color-accent);
  font-size: 0.76rem !important;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.home-hero__card {
  display: none;
  align-self: end;
  width: min(100%, 340px);
  margin-bottom: clamp(52px, 9vh, 86px);
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--color-inverse) 55%, var(--color-border));
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--color-surface) 78%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.home-hero__card span,
.home-hero__card small {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero__card strong {
  display: block;
  margin: 10px 0;
  font-family: var(--font-serif);
  font-size: 1.24rem;
  line-height: 1.18;
}

.home-hero__scroll {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-hero__scroll::after {
  width: 1px;
  height: 38px;
  background: currentColor;
  content: "";
}

.home-hero__video,
.home-hero__gradient {
  inset: 0;
}

.home-hero__video {
  height: 100%;
  transform: scale(1.01);
  will-change: opacity;
}

.home-hero__poster {
  right: max(-12vw, calc((100vw - var(--container)) / 2 - 180px));
}

.home-hero__gradient {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--color-bg) 96%, transparent) 0%, color-mix(in srgb, var(--color-bg) 72%, transparent) 46%, color-mix(in srgb, var(--color-bg) 6%, transparent) 100%),
    linear-gradient(180deg, color-mix(in srgb, #11100f 18%, transparent) 0%, transparent 54%, color-mix(in srgb, var(--color-bg) 40%, transparent) 100%);
}

.section--editorial {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
}

.section--soft {
  background: color-mix(in srgb, var(--color-surface-strong) 58%, var(--color-bg));
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.editorial-grid__intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.atelier-note-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.atelier-note-list span {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  color: var(--color-muted);
}

.atelier-note-list strong {
  color: var(--color-text);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ritual-list,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ritual-list {
  grid-template-columns: 1fr;
}

.ritual-card,
.service-card {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ritual-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 22px;
  padding: clamp(18px, 3vw, 28px);
}

.ritual-card span {
  grid-row: 1 / span 2;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1;
}

.ritual-card h3,
.service-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.16;
}

.ritual-card p,
.service-card p {
  margin: 0;
  color: var(--color-muted);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  align-content: end;
  padding: 22px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface) 92%, transparent), color-mix(in srgb, var(--color-accent-soft) 38%, var(--color-surface))),
    var(--color-surface);
}

.ritual-card:hover,
.service-card:hover,
.family-tile:hover,
.product-card:hover {
  border-color: color-mix(in srgb, var(--color-accent) 70%, var(--color-border));
  box-shadow: 0 18px 46px color-mix(in srgb, var(--color-text) 11%, transparent);
}

.product-grid,
.woocommerce ul.products,
.family-grid,
.service-grid,
.editorial-grid,
.finder-band,
.section__header {
  min-width: 0;
}

.section__header > *,
.finder-band > *,
.product-card__body,
.family-tile,
.service-card,
.ritual-card {
  min-width: 0;
}

.eauvel-spotlight {
  opacity: 0;
  transition: opacity 220ms ease;
  will-change: background;
}

.eauvel-spotlight.is-active {
  opacity: 1;
}

[data-magnetic] {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .product-card,
  .family-tile,
  .ritual-card,
  .service-card,
  .button {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 160ms ease, color 160ms ease;
  }
}

@media (max-width: 980px) {
  .home-hero__inner,
  .editorial-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero__card {
    display: none;
  }

  .editorial-grid__intro {
    position: static;
  }
}

@media (max-width: 860px) {
  .promo-bar {
    font-size: 0.68rem;
  }

  .promo-bar__inner {
    justify-content: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 6px 2.6rem 6px 0;
    text-align: left;
  }

  .promo-bar__inner span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .promo-bar button[data-copy-coupon] {
    flex: 0 0 auto;
    padding: 0.24rem 0.48rem;
  }

  .promo-bar__close {
    right: 0.45rem;
  }

  .site-header__inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .site-header__brand {
    justify-self: center;
    max-width: 100%;
  }

  .site-branding {
    justify-items: center;
    gap: 7px;
  }

  .site-branding__domain {
    display: none;
  }

  .site-branding__mark {
    width: 34px;
    height: 34px;
  }

  .site-branding__name {
    max-width: min(48vw, 190px);
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }

  .site-header__actions {
    width: 44px;
  }

  .header-action--cart {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .header-action--cart > span:not(.cart-count) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .cart-count {
    min-width: 22px;
    height: 22px;
  }

  .mobile-drawer {
    z-index: 112;
  }

  .mobile-drawer__panel {
    background: var(--color-bg);
    color: var(--color-text);
  }

  .mobile-drawer__nav a,
  .mobile-drawer__nav button {
    color: var(--color-text);
  }

  .home-hero,
  .home-hero__inner {
    min-height: clamp(520px, 74svh, 620px);
  }

  .home-hero::before {
    width: 100%;
    background: rgba(255, 252, 246, 0.8);
    clip-path: polygon(0 0, 100% 0, 100% 76%, 92% 100%, 0 100%);
  }

  .home-hero__poster {
    top: 42%;
    right: -18vw;
    width: min(86vw, 620px);
    max-height: 54%;
    transform: translate(220px, calc(-50% + 50px));
  }

  .home-hero__copy {
    padding: 58px 0 84px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 18vw, 4.6rem);
  }

  .home-hero p {
    max-width: 34rem;
    font-size: 1rem;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__scroll {
    left: 12px;
    right: auto;
    bottom: 12px;
  }

  .home-hero__gradient {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--color-bg) 94%, transparent) 0%, color-mix(in srgb, var(--color-bg) 72%, transparent) 48%, color-mix(in srgb, var(--color-bg) 38%, transparent) 100%),
      linear-gradient(90deg, color-mix(in srgb, var(--color-bg) 82%, transparent), transparent);
  }

  .feature-strip__item {
    padding: 18px 16px;
  }

  .ritual-card {
    grid-template-columns: 1fr;
  }

  .ritual-card span {
    grid-row: auto;
    font-size: 1.45rem;
  }

  .atelier-note-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 48px 0;
  }

  .section__header {
    align-items: stretch;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .service-card {
    min-height: 180px;
  }

  .product-card__quick-add,
  .product-card__footer .button {
    width: 100%;
  }
}

.language-option {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 0;
  background: #11100f;
  color: #f8f4ed;
}

.site-footer a {
  color: inherit;
}

.site-footer__inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.72fr) minmax(240px, 0.66fr);
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(42px, 6vw, 78px) 0;
}

.footer-brand-card,
.footer-newsletter-card,
.footer-link-grid {
  min-width: 0;
}

.footer-brand-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(248, 244, 237, 0.16);
  background: linear-gradient(135deg, rgba(248, 244, 237, 0.08), rgba(184, 146, 83, 0.08));
}

.footer-brand-card__logo {
  display: flex;
  align-items: center;
  width: min(100%, 440px);
  min-height: 128px;
  margin: 10px 0 22px;
  padding: 24px;
  border: 1px solid rgba(248, 244, 237, 0.24);
  background: #f8f4ed;
  opacity: 0.94;
}

.footer-brand-card__logo.eauvel-wordmark span {
  color: #14110f;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.site-footer p {
  color: rgba(248, 244, 237, 0.72);
}

.footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.footer-trust-strip span {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(248, 244, 237, 0.14);
  color: rgba(248, 244, 237, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-link-grid .footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-nav__group {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
}

.footer-nav__group strong {
  color: #f8f4ed;
  font-size: 0.95rem;
}

.footer-link-grid .footer-nav__group ul {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.footer-link-grid .footer-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: rgba(248, 244, 237, 0.78);
  text-decoration: none;
}

.footer-link-grid .footer-nav a:hover {
  color: #fff;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: none;
}

.newsletter-form .newsletter-consent {
  grid-column: 1 / -1;
}

.newsletter-form__status {
  grid-column: 1 / -1;
  min-height: 1.35em;
  margin: 0;
  font-size: 0.84rem;
}

.newsletter-form__status[data-state="success"] {
  color: #d9bf83;
}

.newsletter-form__status[data-state="error"] {
  color: #ffb4a8;
}

.newsletter-form input {
  background: rgba(248, 244, 237, 0.08);
  border-color: rgba(248, 244, 237, 0.2);
  color: #fff;
}

.site-footer__bottom {
  align-items: center;
  border-top-color: rgba(248, 244, 237, 0.14);
  color: rgba(248, 244, 237, 0.68);
}

.footer-domain {
  letter-spacing: 0.18em;
}

.footer-language-action {
  color: #f8f4ed;
  border-color: rgba(248, 244, 237, 0.24);
}

.header-action--cart {
  position: relative;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-color: var(--color-border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-surface) 88%, #fff);
}

.header-action--cart > span:not(.cart-count) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.header-action--cart::before {
  display: block;
  width: 18px;
  height: 17px;
  margin: 0;
  border: 1.7px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-sizing: border-box;
  content: "";
  transform: translateY(4px);
}

.header-action--cart::after {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 10px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.header-action--cart .cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 1px solid var(--color-bg);
  font-size: 0.68rem;
}

.eauvel-page-loader[hidden] {
  display: none !important;
}

.eauvel-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: none;
}

.eauvel-page-loader[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.eauvel-page-loader__panel {
  display: inline-grid;
  gap: 14px;
  place-items: center;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eauvel-page-loader__panel span {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.three-body {
  --uib-size: 35px;
  --uib-speed: 0.8s;
  --uib-color: var(--color-accent);
  position: relative;
  display: inline-block;
  width: var(--uib-size);
  height: var(--uib-size);
  animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
  position: absolute;
  width: 30%;
  height: 100%;
}

.three-body__dot::after {
  position: absolute;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--uib-color);
  content: "";
}

.three-body__dot:nth-child(1) {
  bottom: 5%;
  left: 0;
  transform: rotate(60deg);
  transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite ease-in-out;
  animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
  right: 0;
  bottom: 5%;
  transform: rotate(-60deg);
  transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
  bottom: 0;
  left: 0;
  animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
  bottom: -5%;
  left: 0;
  transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
  top: 0;
  left: 0;
  animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes wobble1 {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-66%) scale(0.65);
  }
}

@keyframes wobble2 {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateY(66%) scale(0.65);
  }
}

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

.eauvel-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  justify-content: flex-end;
  background: rgba(17, 15, 12, 0.36);
  backdrop-filter: blur(10px);
}

.eauvel-mini-cart__panel {
  width: min(100%, 430px);
  min-height: 100%;
  padding: 24px;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: -28px 0 80px rgba(17, 15, 12, 0.18);
  overflow-y: auto;
}

.eauvel-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.eauvel-mini-cart__header span {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.eauvel-mini-cart__header strong {
  display: block;
  margin-top: 3px;
  font-family: var(--font-serif);
  font-size: 1.65rem;
}

.eauvel-mini-cart__header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.eauvel-mini-cart .woocommerce-mini-cart {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eauvel-mini-cart .woocommerce-mini-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 8px 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.eauvel-mini-cart .woocommerce-mini-cart-item > a:not(.remove) {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.eauvel-mini-cart .woocommerce-mini-cart-item > a.remove {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: #8a1f14;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
}

.eauvel-mini-cart .woocommerce-mini-cart-item img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.eauvel-mini-cart .woocommerce-mini-cart-item .quantity,
.eauvel-mini-cart .mini-cart-qty {
  grid-column: 1 / -1;
  grid-row: 2;
  padding-left: 84px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.eauvel-mini-cart .mini-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  line-height: 1;
}

.eauvel-mini-cart .mini-cart-qty__button {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.eauvel-mini-cart .mini-cart-qty__button:hover,
.eauvel-mini-cart .mini-cart-qty__button:focus-visible {
  border-color: var(--color-text);
  outline: none;
}

.eauvel-mini-cart .mini-cart-qty__button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.eauvel-mini-cart .mini-cart-qty__value {
  min-width: 2ch;
  color: var(--color-text);
  text-align: center;
  font-weight: 650;
}

.eauvel-mini-cart .mini-cart-qty__price {
  color: var(--color-muted);
  white-space: nowrap;
}

.eauvel-mini-cart .mini-cart-qty.is-updating {
  opacity: 0.72;
}

.eauvel-mini-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.eauvel-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  gap: 10px;
}

.product-detail__media {
  aspect-ratio: 1 / 0.92;
}

.product-detail__description {
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-detail__description h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.product-detail__description p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.product-detail__purchase form.cart {
  display: grid;
  grid-template-columns: minmax(72px, 96px) minmax(180px, 1fr);
  gap: 10px;
  align-items: stretch;
  max-width: 360px;
}

.product-detail__purchase .quantity,
.woocommerce .quantity {
  min-width: 0;
}

.product-detail__purchase .quantity input.qty {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  text-align: center;
  font: inherit;
}

.product-detail__purchase .single_add_to_cart_button {
  min-height: 52px;
  width: 100%;
}

.product-detail__purchase .variations,
.product-detail__purchase .variations tbody,
.product-detail__purchase .variations tr,
.product-detail__purchase .variations td {
  display: block;
}

.product-detail__purchase .variations {
  grid-column: 1 / -1;
}

.product-detail__purchase select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 0 12px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 142;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 15, 12, 0.84);
}

.product-lightbox img {
  max-width: min(94vw, 1120px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-card);
  background: #fff;
}

.product-lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-control);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
}

.mobile-drawer__panel {
  background: var(--color-bg);
  color: var(--color-text);
}

.mobile-drawer__nav a,
.mobile-drawer__nav button {
  color: var(--color-text);
}

@media (max-width: 1024px) and (min-width: 861px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    position: static;
  }

  .shop-page .product-grid,
  .shop-page ul.products,
  .shop-page .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .scent-search-panel__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-trust-strip,
  .site-footer__inner,
  .footer-link-grid .footer-nav ul,
  .footer-nav__groups {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-form,
  .product-detail__purchase form.cart {
    grid-template-columns: minmax(0, 1fr);
  }

  [data-footer-accordion-title] {
    position: relative;
    cursor: pointer;
    padding-right: 28px;
  }

  [data-footer-accordion-title]::after {
    position: absolute;
    top: 0.08em;
    right: 0;
    color: rgba(248, 244, 237, 0.72);
    content: "+";
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1;
  }

  .footer-accordion.is-open > [data-footer-accordion-title]::after {
    content: "-";
  }

  .footer-accordion:not(.is-open) > :not([data-footer-accordion-title]) {
    display: none;
  }

  .header-action--cart::before {
    margin-right: 0;
  }

  .header-action--cart::after {
    transform: translateX(-50%);
  }

  .product-detail__media {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .scent-pyramid {
    padding: 22px 0;
  }

  .scent-pyramid__header {
    display: block;
    margin-bottom: 12px;
  }

  .scent-pyramid__header .eyebrow {
    margin-bottom: 6px;
  }

  .scent-pyramid__header h2 {
    font-size: 1.55rem;
  }

  .scent-pyramid__layers {
    gap: 8px;
  }

  .scent-pyramid__layer {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    padding: 7px 0;
  }

  .scent-pyramid__layer h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .note-list {
    gap: 6px;
    align-content: start;
  }

  .note-list li {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 0.76rem;
  }

  .scent-search-panel {
    gap: 12px;
    margin: 14px 0 10px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
  }

  .scent-search-panel__form {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .scent-search-panel__form input[type="search"] {
    min-height: 48px;
    padding: 0 14px;
  }

  .scent-search-panel__form button {
    width: 44px;
    height: 44px;
  }

  .scent-search-panel__chip {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 11px;
    font-size: 0.84rem;
  }

  .scent-search-panel__grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin-inline: -12px;
    padding: 0 12px 4px;
    scrollbar-width: none;
  }

  .scent-search-panel__grid::-webkit-scrollbar {
    display: none;
  }

  .scent-search-panel__group {
    display: flex;
    flex: 0 0 auto;
    min-width: max-content;
    gap: 8px;
  }

  .scent-search-panel__group strong {
    display: none;
  }

  .scent-search-panel__chips {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .shop-filters {
    display: none;
  }

  .product-card__body {
    gap: 10px;
    padding: 14px;
  }

  .product-card__footer {
    align-items: stretch;
  }

  .product-card__rating,
  .product-card__source,
  .product-card__brand,
  .product-card__signals,
  .product-card__price {
    min-width: 0;
  }

  .product-card__signals span {
    white-space: normal;
  }

  .shop-page > .container,
  .shop-hero .container {
    width: calc(100% - 24px);
  }

  .shop-hero {
    padding: 28px 0 16px;
  }

  .shop-toolbar {
    gap: 12px;
  }

  .shop-layout {
    gap: 18px;
  }

  .shop-layout > section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .shop-page .product-grid,
  .shop-page ul.products,
  .shop-page .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
    align-items: start;
  }

  .shop-page ul.products,
  .shop-page .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-columns: repeat(2, calc((100vw - 42px) / 2)) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 26px 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    justify-content: start;
  }

  .shop-page ul.products li.product,
  .shop-page .woocommerce ul.products li.product {
    display: grid !important;
    float: none !important;
    height: 100%;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
  }

  .shop-page .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .shop-page .product-card__media {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: color-mix(in srgb, var(--color-surface-strong) 76%, #fff);
  }

  .shop-page .product-card__image {
    object-fit: contain;
  }

  .shop-page .product-card:hover .product-card__image {
    transform: none;
  }

  .shop-page .product-card__badges {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    max-width: 100%;
  }

  .shop-page .product-card__badge {
    min-height: 22px;
    padding: 4px 7px;
    border-radius: 0;
    font-size: 0.7rem;
  }

  .shop-page .product-card__body {
    display: grid;
    grid-template-rows: 3.6em 1.05em 2.7em 1.25em 25px auto;
    align-content: start;
    height: 100%;
    min-height: 0;
    gap: 7px;
    padding: 10px 0 0;
  }

  .shop-page .product-card__title {
    display: -webkit-box;
    min-height: 3.6em;
    overflow: hidden;
    font-family: var(--font-sans);
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .shop-page .product-card__title a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .shop-page .product-card__rating {
    gap: 4px;
    min-height: 1.05em;
    font-size: 0.78rem;
  }

  .shop-page .product-card__rating-stars {
    max-width: 5.1em;
    font-size: 0.78rem;
  }

  .shop-page .product-card__rating-count {
    font-size: 0.74rem;
  }

  .shop-page .product-card__source {
    gap: 2px;
    min-height: 2.7em;
    font-size: 0.76rem;
  }

  .shop-page .product-card__source strong {
    line-height: 1.25;
  }

  .shop-page .product-card__brand {
    min-height: 1.25em;
    overflow: hidden;
    font-size: 0.76rem;
  }

  .shop-page .product-card__signals {
    gap: 4px;
    min-height: 25px;
    overflow: hidden;
    flex-wrap: nowrap;
  }

  .shop-page .product-card__signals span,
  .shop-page .product-card__gender,
  .shop-page .product-card__sales {
    min-height: 23px;
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .shop-page .product-card__footer {
    display: grid;
    align-self: end;
    gap: 8px;
    align-items: stretch;
    margin-top: 0;
  }

  .shop-page .product-card__price--regular {
    font-size: 0.74rem;
  }

  .shop-page .product-card__price--sale {
    font-size: 1rem;
  }

  .shop-page .product-card__quick-add {
    width: 100%;
    min-height: 36px;
    justify-content: center;
    padding: 8px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
  }
}

@media (pointer: coarse), (max-width: 860px) {
  .eauvel-spotlight {
    display: none;
  }

  [data-magnetic] {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .home-hero__video {
    opacity: 0 !important;
  }

  .eauvel-spotlight {
    display: none;
  }
}

/* Order experience */
.me-order-tracking-box {
  display: none !important;
}

.checkout-order-table thead {
  display: none;
}

.checkout-order-table .checkout-order-row > td {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.checkout-order-table .checkout-order-row:last-child > td {
  border-bottom: 0;
}

.checkout-order-items {
  display: table-row-group;
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(82px, auto);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.checkout-order-item__image,
.order-tracking-product__image {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface-strong) 58%, var(--color-surface));
}

.checkout-order-item__image img,
.checkout-order-item__thumb {
  display: block;
  width: 72px;
  height: 86px;
  object-fit: cover;
}

.checkout-order-item__body {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.checkout-order-item__name {
  overflow-wrap: anywhere;
  font-weight: 750;
  line-height: 1.35;
}

.checkout-order-item__meta,
.checkout-order-item__quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.checkout-order-item__meta dl,
.checkout-order-item__meta .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.checkout-order-item__meta dt,
.checkout-order-item__meta dd,
.checkout-order-item__meta p {
  margin: 0;
}

.checkout-order-item__capacity,
.checkout-order-item__quantity strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-surface) 78%, var(--color-surface-strong));
  font-size: 0.78rem;
}

.checkout-order-item__subtotal {
  justify-self: end;
  min-width: 82px;
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}

.order-tracking-panel,
.address-change-panel {
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--color-border);
}

.order-tracking-panel__header,
.address-change-panel__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.order-tracking-panel__header h2,
.address-change-panel__header h2 {
  margin: 4px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
}

.order-tracking-panel__number {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-surface) 82%, transparent);
}

.order-progress li {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  padding: 14px 10px;
  color: var(--color-muted);
  text-align: center;
}

.order-progress li + li {
  border-left: 1px solid var(--color-border);
}

.order-progress__marker {
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.order-progress__label {
  overflow-wrap: anywhere;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.order-progress li.is-complete,
.order-progress li.is-current {
  color: var(--color-text);
}

.order-progress li.is-complete .order-progress__marker,
.order-progress li.is-current .order-progress__marker {
  background: var(--color-text);
}

.order-progress li.is-current {
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
}

.order-tracking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.order-tracking-stat {
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-tracking-stat span,
.order-tracking-details dt {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.order-tracking-stat strong,
.order-tracking-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--color-text);
  font-weight: 760;
  line-height: 1.45;
}

.order-tracking-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0 0 24px;
}

.order-tracking-details > div {
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-tracking-empty {
  margin: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

.order-tracking-products h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.order-tracking-products__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.order-tracking-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.order-tracking-product__image img,
.order-tracking-product__thumb {
  display: block;
  width: 64px;
  height: 76px;
  object-fit: cover;
}

.order-tracking-product__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.order-tracking-product__body strong {
  overflow-wrap: anywhere;
}

.order-tracking-product__body span,
.order-tracking-product__meta {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.order-tracking-product__meta dl,
.order-tracking-product__meta p {
  margin: 0;
}

.order-tracking-product__total {
  justify-self: end;
  font-weight: 760;
  white-space: nowrap;
}

.address-change-panel__intro,
.address-change-panel__locked,
.address-change-panel__support {
  max-width: 760px;
  color: var(--color-muted);
  line-height: 1.7;
}

.address-change-panel__toggle,
.address-change-form__submit {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-control);
  background: var(--color-text);
  color: var(--color-surface);
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.address-change-panel__toggle:hover,
.address-change-form__submit:hover {
  box-shadow: 0 14px 28px color-mix(in srgb, var(--color-text) 13%, transparent);
  transform: translateY(-1px);
}

.address-change-form {
  margin-top: 18px;
}

.address-change-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.address-change-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  font-weight: 720;
}

.address-change-form label span {
  font-size: 0.86rem;
}

.address-change-form input,
.address-change-form textarea {
  width: 100%;
  min-width: 0;
}

.address-change-form__wide {
  grid-column: 1 / -1;
}

.address-change-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.address-change-form__status {
  margin: 0;
  color: var(--color-muted);
}

.address-change-form__status[data-state="success"] {
  color: #276c43;
}

.address-change-form__status[data-state="error"] {
  color: #9d2222;
}

.address-change-form.is-submitted .address-change-form__grid {
  opacity: 0.64;
}

@media (max-width: 720px) {
  .order-tracking-grid,
  .order-tracking-details,
  .order-progress,
  .address-change-form__grid {
    grid-template-columns: 1fr;
  }

  .order-progress li + li {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .order-tracking-panel__header,
  .address-change-panel__header {
    display: grid;
  }
}

@media (max-width: 560px) {
  .checkout-order-table.shop_table,
  .checkout-order-table.shop_table tbody,
  .checkout-order-table.shop_table tr,
  .checkout-order-table.shop_table td {
    display: block;
    width: 100%;
  }

  .checkout-order-table .checkout-order-row > td {
    padding: 12px 0;
  }

  .checkout-order-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .checkout-order-item__image img,
  .checkout-order-item__thumb {
    width: 58px;
    height: 70px;
  }

  .checkout-order-item__subtotal {
    min-width: 68px;
    font-size: 0.92rem;
  }

  .order-tracking-product {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .order-tracking-product__total {
    grid-column: 2;
    justify-self: start;
  }

  .address-change-form__actions {
    display: grid;
  }
}

@media (max-width: 380px) {
  .checkout-order-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .checkout-order-item__subtotal {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

/* Storefront support and cookie consent */
.eauvel-support-widget,
.eauvel-cookie-consent {
  box-sizing: border-box;
}

.eauvel-support-widget {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(18px, 2.4vw, 30px);
  z-index: 160;
}

.has-cookie-consent .eauvel-support-widget {
  bottom: clamp(96px, 12vw, 150px);
}

.eauvel-support-widget__button {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--color-text) 18%, var(--color-border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 94%, white);
  color: var(--color-text);
  box-shadow: 0 18px 46px color-mix(in srgb, var(--color-text) 13%, transparent);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.eauvel-support-widget__button:hover {
  transform: translateY(-2px);
  border-color: var(--color-text);
  box-shadow: 0 22px 54px color-mix(in srgb, var(--color-text) 18%, transparent);
}

.eauvel-support-widget__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-surface);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1;
}

.eauvel-support-widget__dot {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-surface);
  border-radius: 50%;
  background: #a7895f;
}

.eauvel-support-widget__dot[data-state="replied"] {
  background: #276c43;
}

.eauvel-support-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100svh - 112px));
  overflow-y: auto;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 26px 70px color-mix(in srgb, var(--color-text) 16%, transparent);
}

.eauvel-support-panel[hidden],
.eauvel-cookie-consent[hidden],
.eauvel-cookie-consent__choices[hidden] {
  display: none;
}

.eauvel-support-panel__header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.eauvel-support-panel__header h2 {
  margin: 2px 0 6px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.eauvel-support-panel__header p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.eauvel-support-panel__close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.eauvel-support-ticket {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface-strong) 58%, var(--color-surface));
}

.eauvel-support-ticket p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.eauvel-support-ticket button {
  justify-self: start;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.eauvel-support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.eauvel-support-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-weight: 720;
}

.eauvel-support-form label span {
  font-size: 0.84rem;
}

.eauvel-support-form input,
.eauvel-support-form select,
.eauvel-support-form textarea {
  width: 100%;
  min-width: 0;
}

.eauvel-support-form__wide,
.eauvel-support-form__actions {
  grid-column: 1 / -1;
}

.eauvel-support-form__trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.eauvel-support-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.eauvel-support-form__actions button,
.eauvel-cookie-consent__actions button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-control);
  background: var(--color-text);
  color: var(--color-surface);
  cursor: pointer;
  font-weight: 760;
}

.eauvel-support-form__actions p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
}

.eauvel-support-form__actions p[data-state="success"] {
  color: #276c43;
}

.eauvel-support-form__actions p[data-state="error"] {
  color: #9d2222;
}

.eauvel-cookie-consent {
  position: fixed;
  left: clamp(14px, 2vw, 28px);
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 155;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  max-width: 980px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--color-surface) 96%, white);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--color-text) 15%, transparent);
}

.eauvel-cookie-consent__copy h2 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.eauvel-cookie-consent__copy p {
  margin: 0;
  max-width: 68ch;
  color: var(--color-muted);
  line-height: 1.55;
}

.eauvel-cookie-consent__choices {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 6px;
}

.eauvel-cookie-consent__choices label {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.eauvel-cookie-consent__choices span {
  font-weight: 760;
}

.eauvel-cookie-consent__choices small {
  color: var(--color-muted);
  line-height: 1.4;
}

.eauvel-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.eauvel-cookie-consent__actions button[data-cookie-reject],
.eauvel-cookie-consent__actions button[data-cookie-manage],
.eauvel-cookie-consent__actions button[data-cookie-save] {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-text);
}

@media (max-width: 720px) {
  .eauvel-cookie-consent {
    grid-template-columns: 1fr;
    max-height: min(76svh, 620px);
    overflow-y: auto;
  }

  .eauvel-cookie-consent__choices {
    grid-template-columns: 1fr;
  }

  .eauvel-cookie-consent__actions {
    justify-content: stretch;
  }

  .eauvel-cookie-consent__actions button {
    flex: 1 1 calc(50% - 8px);
  }
}

@media (max-width: 560px) {
  .eauvel-support-widget {
    right: 12px;
    bottom: 12px;
  }

  .has-cookie-consent .eauvel-support-widget {
    bottom: 96px;
  }

  .eauvel-support-panel {
    right: -2px;
    bottom: 62px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 96px);
    padding: 16px;
  }

  .eauvel-support-form {
    grid-template-columns: 1fr;
  }

  .eauvel-support-form__actions {
    display: grid;
  }

  .eauvel-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }
}
