: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: #2f5d50;
  --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 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 18px;
}

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

.site-branding__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.site-branding__name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  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;
}

.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: -2;
}

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

.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: "";
}

.home-hero__inner {
  display: grid;
  align-items: center;
  min-height: 680px;
}

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

.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__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  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;
}

.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__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);
}

.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-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__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(180px, 1fr) minmax(240px, 1.4fr);
  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__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: 220px 1fr;
  gap: 34px;
}

.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;
}

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

.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 {
  font-size: 1.35rem;
  font-weight: 700;
}

.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: 56px 0;
  border-top: 1px solid var(--color-border);
}

.scent-pyramid__header {
  max-width: 640px;
  margin-bottom: 28px;
}

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

.scent-pyramid__layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scent-pyramid__layer {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  cursor: pointer;
}

.scent-pyramid__layer.is-active,
.scent-pyramid__layer:hover {
  border-color: var(--color-accent);
}

.scent-pyramid__layer h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

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

.note-list li {
  padding: 6px 9px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-control);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.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;
}

.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-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) {
  .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,
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail__gallery,
  .checkout-review,
  .shop-filters {
    position: static;
  }

  .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 {
    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__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;
  opacity: 0;
  transform: scale(1.02);
}

.home-hero__poster {
  opacity: 0.34;
}

.home-hero__gradient {
  inset: 0;
  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-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  min-height: 220px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.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: 1rem;
}

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

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

.review-gate {
  margin-top: 2rem;
  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-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: 3;
  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, #273c35 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 10px;
}

.site-branding__mark {
  grid-row: 1 / span 2;
}

.site-branding__name {
  overflow: hidden;
  letter-spacing: 0.12em;
  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.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.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 {
  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;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  display: inline-flex;
  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 {
  opacity: 0.62;
}

.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, #273c35 22%, 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: 2px;
  }

  .site-branding__mark,
  .site-branding__domain {
    display: none;
  }

  .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__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 h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.18em;
}

.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 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;
}

.header-action--cart::before {
  width: 0.86em;
  height: 0.9em;
  margin-right: 0.42em;
  border: 1.5px solid currentColor;
  border-top: 0;
  content: "";
  transform: translateY(1px);
}

.header-action--cart::after {
  position: absolute;
  width: 0.48em;
  height: 0.24em;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  transform: translate(-0.16em, -0.52em);
}

.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 {
  grid-column: 1 / -1;
  grid-row: 2;
  padding-left: 84px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.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 .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);
  }

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

  .header-action--cart::after {
    transform: translate(0.02em, -0.52em);
  }

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

@media (max-width: 560px) {
  .scent-search-panel {
    border-radius: 16px;
    padding: 16px;
  }

  .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 {
    min-height: 32px;
    padding: 6px 11px;
    font-size: 0.84rem;
  }

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

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

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

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

@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;
  }
}
