/** Shopify CDN: Minification failed

Line 2453:0 Unexpected "}"

**/
/* ==========================================================================
   Escentials design layer
   Studio white, glossy black and color only where the product brings it.
   Dawn provides the plumbing; everything a shopper sees is styled here.
   Note: Dawn sets html font-size to 62.5%, so 1rem = 10px.
   ========================================================================== */

:root {
  --ec-paper: #ffffff;
  --ec-card: #ffffff;
  --ec-soft: #f6f5f2;
  --ec-accent: #6b3fd0;
  --ec-sale: #cf2e2e;
  --ec-white: #ffffff;
  --ec-ink: #121214;
  --ec-ink-2: #4d4f54;
  --ec-ink-3: #85878c;
  --ec-line: #e8e6e2;
  --ec-line-2: rgba(18, 18, 20, 0.24);
  --ec-dark: #121214;
  --ec-dark-2: #1d1d21;
  --ec-on-dark: #eeefec;
  --ec-on-dark-2: #9fa1a6;
  --ec-gold: #9c7224;
  --ec-gold-2: #e2bd6a;
  --ec-plum: #2a1631;
  --ec-plum-2: #1c0f21;
  --ec-blush: #f6dcd3;
  --ec-lilac: #e8def6;
  --ec-sky: #d9e5f4;
  --ec-sage: #dce8d6;
  --ec-butter: #f6e8c3;
  --ec-champagne: #f1e5cf;
  --ec-red: #d8463c;

  --ec-display: "Bodoni Moda", "Bodoni 72", Didot, "Times New Roman", serif;
  --ec-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ec-label: "Barlow Condensed", "Arial Narrow", "Barlow", sans-serif;

  --ec-gutter: max(16px, 4vw);
  --ec-max: 1440px;
  --ec-header-h: 72px;
  --ec-catbar-h: 46px;
  --ec-top: calc(var(--ec-header-h) + var(--ec-catbar-h));
  --ec-radius: 6px;
  --ec-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Hand Dawn's own components the same type */
  --font-heading-family: var(--ec-display);
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-body-family: var(--ec-body);
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 600;
}

body {
  font-family: var(--ec-body);
  letter-spacing: 0;
  color: var(--ec-ink);
  background: var(--ec-paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .h0, .h1, .h2, .h3, .h4 {
  font-family: var(--ec-display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 em, h2 em, h3 em, .h0 em, .h1 em, .h2 em { font-style: italic; }

::selection { background: var(--ec-ink); color: var(--ec-paper); }

:focus-visible { outline: 2px solid var(--ec-ink); outline-offset: 3px; }

/* ---------- Utilities ---------- */

.ec-wrap {
  width: 100%;
  max-width: var(--ec-max);
  margin-inline: auto;
  padding-inline: var(--ec-gutter);
}
.ec-eyebrow {
  display: block;
  margin: 0 0 1.6rem;
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ec-ink-2);
}
.ec-label {
  font-family: var(--ec-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ec-ink-2);
}
.ec-display { font-family: var(--ec-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.015em; margin: 0; }
.ec-h1 { font-size: clamp(4.4rem, 6.6vw, 10rem); }
.ec-h2 { font-size: clamp(3.4rem, 4.8vw, 6.6rem); }
.ec-h3 { font-size: clamp(2.4rem, 2.6vw, 3.4rem); line-height: 1.12; }
.ec-lede { font-size: 1.8rem; line-height: 1.6; color: var(--ec-ink-2); max-width: 46ch; margin: 0; }
.ec-muted { color: var(--ec-ink-2); }
.ec-section { padding-block: clamp(72px, 11vh, 140px); }
.ec-section--tight { padding-block: clamp(48px, 7vh, 88px); }
.ec-section--line { border-top: 1px solid var(--ec-line); }
.ec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 2.4rem 4.8rem;
  margin-bottom: clamp(28px, 4vh, 48px);
}
.ec-head > p { max-width: 42ch; margin: 0; color: var(--ec-ink-2); font-size: 1.7rem; line-height: 1.6; }
.ec-link {
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.3rem;
  color: var(--ec-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
}
.ec-link:hover { color: var(--ec-ink-2); }

/* ---------- Buttons ---------- */

.ec-btn,
.button,
.shopify-payment-button__button--unbranded,
.shopify-challenge__button,
.customer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5rem;
  padding: 0 2.6rem;
  border-radius: 999px;
  border: 1px solid var(--ec-ink);
  background: var(--ec-ink);
  color: var(--ec-paper);
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
}
.button::before, .button::after,
.shopify-payment-button__button--unbranded::before,
.shopify-payment-button__button--unbranded::after { display: none; box-shadow: none; }
.ec-btn:hover, .button:not([disabled]):hover, .shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background: #33333a;
  border-color: #33333a;
}
.ec-btn:active, .button:active { transform: translateY(1px); }
.ec-btn--ghost, .button--secondary {
  background: transparent;
  color: var(--ec-ink);
  border-color: var(--ec-line-2);
}
.ec-btn--ghost:hover, .button--secondary:not([disabled]):hover { background: transparent; border-color: var(--ec-ink); color: var(--ec-ink); }
.ec-btn--light { background: var(--ec-on-dark); color: var(--ec-ink); border-color: var(--ec-on-dark); }
.ec-btn--light:hover { background: #fff; border-color: #fff; }
.ec-btn--small { min-height: 3.8rem; padding: 0 1.8rem; font-size: 1.2rem; }
.ec-btn[disabled], .ec-btn[aria-disabled="true"], .button[disabled] {
  background: var(--ec-line); border-color: transparent; color: var(--ec-ink-3); cursor: default;
}
.button--tertiary { background: transparent; color: var(--ec-ink); border-color: transparent; min-height: auto; padding: 0; }

/* Dawn form fields */
.field__input, .select__select, .customer .field input, .customer select, .ec-input {
  font-family: var(--ec-body);
  font-size: 1.6rem;
  letter-spacing: 0;
  border-radius: var(--ec-radius);
  background: var(--ec-white);
  box-shadow: none;
  border: 1px solid var(--ec-line-2);
}
.field::before, .field::after, .select::before, .select::after { display: none !important; }
.ec-input { width: 100%; padding: 1.3rem 1.6rem; color: var(--ec-ink); }
.ec-input:focus { outline: 2px solid var(--ec-ink); outline-offset: 1px; }

/* ---------- Scroll reveal ---------- */

html.ec-anim [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s var(--ec-ease), transform 0.9s var(--ec-ease);
  transition-delay: var(--reveal-delay, 0s);
}
html.ec-anim [data-reveal].is-in { opacity: 1; transform: none; }
html.ec-anim [data-reveal="fade"] { transform: none; }
html.ec-anim [data-reveal="scale"] { transform: scale(0.96); }
html.ec-anim [data-reveal-lines] .ec-line-in { display: block; overflow: clip; padding-bottom: 0.1em; margin-bottom: -0.1em; }
html.ec-anim [data-reveal-lines] .ec-line-in > span {
  display: inline-block;
  transform: translate3d(0, 110%, 0);
  transition: transform 1.1s var(--ec-ease);
  transition-delay: var(--line-delay, 0s);
}
html.ec-anim [data-reveal-lines].is-in .ec-line-in > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.ec-anim [data-reveal], html.ec-anim [data-reveal-lines] .ec-line-in > span { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Announcement + header
   ========================================================================== */

.ec-announce {
  background: var(--ec-plum-2);
  color: var(--ec-on-dark);
  overflow: clip;
  font-family: var(--ec-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.2rem;
}
.ec-announce__track {
  display: flex;
  width: max-content;
  animation: ec-marquee var(--speed, 40s) linear infinite;
}
.ec-announce__item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2.8rem;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.ec-announce__item::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ec-gold);
  margin-left: 2.8rem;
}
a.ec-announce__item:hover { color: #fff; }
@keyframes ec-marquee { to { transform: translateX(-50%); } }

.ec-header {
  position: relative;
  background: rgba(246, 241, 234, 0.9);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  backdrop-filter: saturate(1.4) blur(16px);
  transition: box-shadow 0.3s;
}
.ec-header.is-scrolled { box-shadow: 0 12px 30px -24px rgba(28, 15, 33, 0.6); }
.ec-header-section { position: sticky; top: 0; z-index: 30; }
.ec-header__inner {
  height: var(--ec-header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.4rem;
}
.ec-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--ec-ink);
}
.ec-logo img { display: block; height: auto; }
.ec-logo__word {
  font-family: var(--ec-display);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.ec-header__search {
  justify-self: center;
  width: min(100%, 58rem);
  height: 4.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2rem;
  border: 1px solid var(--ec-line-2);
  border-radius: 999px;
  background: var(--ec-white);
  color: var(--ec-ink-3);
  font: 400 1.5rem/1 var(--ec-body);
  text-align: left;
  cursor: text;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ec-header__search:hover { border-color: var(--ec-ink); box-shadow: 0 8px 24px -18px rgba(18, 18, 20, 0.6); }
.ec-header__search .ec-icon { width: 1.9rem; height: 1.9rem; color: var(--ec-ink-2); flex: none; }
.ec-header__search span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: conic-gradient(#8a58e6, #f28db8, #f3c318, #22c3b8, #3563e6, #8a58e6);
  flex: none;
}
.ec-header__icons { display: flex; align-items: center; gap: 0.4rem; }
.ec-icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--ec-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}
.ec-icon-btn:hover { background: rgba(18, 18, 20, 0.06); }
.ec-icon { width: 2.2rem; height: 2.2rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
#cart-icon-bubble .cart-count-bubble {
  position: absolute;
  top: 0.4rem;
  right: 0.2rem;
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--ec-plum);
  color: #fff;
  font-family: var(--ec-label);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.8rem;
  text-align: center;
  display: block;
}
#cart-icon-bubble .svg-wrapper { display: contents; }
.ec-menu-toggle, .ec-show-compact { display: none; }

/* Category bar */
.ec-catbar { position: relative; background: var(--ec-plum); color: rgba(255, 255, 255, 0.86); }
.ec-cats {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 3.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
  height: var(--ec-catbar-h);
}
.ec-cat { display: flex; align-items: center; gap: 0.2rem; }
.ec-cat__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  height: 100%;
  font-family: var(--ec-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.3rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.ec-cat__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ec-gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ec-ease);
}
.ec-cat:hover .ec-cat__link, .ec-cat.is-open .ec-cat__link, .ec-cat__link[aria-current="page"] { color: #fff; }
.ec-cat:hover .ec-cat__link::after, .ec-cat.is-open .ec-cat__link::after, .ec-cat__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.ec-cat.is-featured .ec-cat__link { color: var(--ec-gold-2); font-weight: 600; }
.ec-cat__toggle {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: inherit;
  cursor: pointer;
}
.ec-cat__toggle svg { width: 1rem; height: 1rem; transition: transform 0.3s var(--ec-ease); }
.ec-cat.is-open .ec-cat__toggle svg { transform: rotate(180deg); }

.ec-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  background: var(--ec-card);
  color: var(--ec-ink);
  border-bottom: 1px solid var(--ec-line);
  box-shadow: 0 30px 60px -30px rgba(28, 15, 33, 0.45);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ec-ease), transform 0.35s var(--ec-ease), visibility 0s 0.25s;
}
@media (hover: hover) {
  .ec-cat.has-panel:hover > .ec-panel { transition-delay: 0.08s; }
  .ec-cat.has-panel:hover > .ec-panel,
  .ec-cat.has-panel:focus-within > .ec-panel { visibility: visible; opacity: 1; transform: none; transition: opacity 0.25s var(--ec-ease) 0.08s, transform 0.35s var(--ec-ease) 0.08s; }
}
.ec-cat.is-open > .ec-panel { visibility: visible; opacity: 1; transform: none; transition: opacity 0.25s var(--ec-ease), transform 0.35s var(--ec-ease); }
.ec-panel__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 34rem); gap: clamp(32px, 5vw, 80px); padding-block: 3.2rem 4rem; }
.ec-panel__all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  font-family: var(--ec-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ec-ink);
  text-decoration: none;
}
.ec-panel__all .ec-icon { width: 1.5rem; height: 1.5rem; transition: transform 0.3s var(--ec-ease); }
.ec-panel__all:hover .ec-icon { transform: translateX(4px); }
.ec-panel__groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 2.4rem 4rem; }
.ec-panel__heading { display: block; font-family: var(--ec-display); font-size: 2.2rem; color: var(--ec-ink); text-decoration: none; margin-bottom: 1rem; }
.ec-panel ul { list-style: none; margin: 0; padding: 0; }
.ec-panel__list { columns: 2; column-gap: 4rem; max-width: 56rem; }
.ec-panel__list.is-wide { columns: 3; max-width: none; }
.ec-panel li a {
  display: inline-block;
  padding: 0.55rem 0;
  font-size: 1.55rem;
  color: var(--ec-ink-2);
  text-decoration: none;
  transition: color 0.2s, transform 0.3s var(--ec-ease);
}
.ec-panel li a:hover { color: var(--ec-ink); transform: translateX(3px); }
.ec-panel__promo {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  align-items: center;
  gap: 1.6rem;
  align-self: start;
  padding: 1.6rem;
  border-radius: var(--ec-radius);
  background: linear-gradient(135deg, var(--ec-lilac), var(--ec-blush));
  color: var(--ec-ink);
  text-decoration: none;
  transition: transform 0.4s var(--ec-ease), box-shadow 0.4s var(--ec-ease);
}
.ec-panel__promo:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(28, 15, 33, 0.5); }
.ec-panel__promo--refill { background: linear-gradient(135deg, var(--ec-sky), var(--ec-sage)); }
.ec-panel__promo-img { display: block; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #fff; }
.ec-panel__promo-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.2); }
.ec-panel__promo-copy { display: grid; gap: 0.6rem; }
.ec-panel__promo-title { font-family: var(--ec-display); font-size: 2.2rem; line-height: 1.15; }
.ec-panel__promo-text { font-size: 1.4rem; color: var(--ec-ink-2); }

@media (max-width: 1180px) {
  .ec-cats { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .ec-cats::-webkit-scrollbar { display: none; }
}
@media (max-width: 989px) {
  .ec-header__inner { grid-template-columns: 1fr auto 1fr; gap: 0.8rem; }
  .ec-header__search { display: none; }
  .ec-menu-toggle, .ec-show-compact { display: inline-grid; }
  .ec-menu-toggle { justify-self: start; }
  .ec-logo { justify-self: center; }
  .ec-header__icons { justify-self: end; }
  .ec-header__icons .ec-hide-mobile { display: none; }
  :root { --ec-header-h: 60px; --ec-catbar-h: 42px; }
  .ec-cat__toggle, .ec-panel { display: none; }
  .ec-cats { gap: 2.2rem; }
  .ec-cat__link { font-size: 1.2rem; }
}

/* Mobile menu */
.ec-mnav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ec-paper);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: calc(env(safe-area-inset-top, 0px) + 1.2rem) var(--ec-gutter) calc(env(safe-area-inset-bottom, 0px) + 2.4rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ec-ease), visibility 0s 0.35s;
}
.ec-mnav.is-open { visibility: visible; opacity: 1; transition: opacity 0.35s var(--ec-ease); }
.ec-mnav__top { display: flex; justify-content: space-between; align-items: center; height: 5.6rem; }
.ec-mnav__list { list-style: none; margin: 2.4rem 0 3.2rem; padding: 0; display: grid; }
.ec-mnav__list > li {
  border-bottom: 1px solid var(--ec-line);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.6s var(--ec-ease), opacity 0.6s var(--ec-ease);
  transition-delay: calc(var(--i, 0) * 40ms + 80ms);
}
.ec-mnav.is-open .ec-mnav__list > li { transform: none; opacity: 1; }
.ec-mnav__link, .ec-mnav__group > summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--ec-display);
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--ec-ink);
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}
.ec-mnav__group > summary::-webkit-details-marker { display: none; }
.ec-mnav__group > summary svg { width: 1.2rem; height: 1.2rem; margin-left: auto; transition: transform 0.3s var(--ec-ease); }
.ec-mnav__group[open] > summary svg { transform: rotate(180deg); }
.ec-mnav__group ul { list-style: none; margin: 0; padding: 0 0 1.6rem; display: grid; }
.ec-mnav__group ul a { display: block; padding: 0.8rem 0; font-size: 1.7rem; color: var(--ec-ink-2); text-decoration: none; }
.ec-mnav__group ul a.ec-mnav__all { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.3rem; font-weight: 600; color: var(--ec-ink); }
.ec-mnav__group ul a.ec-mnav__sub { padding-left: 1.6rem; font-size: 1.55rem; color: var(--ec-ink-3); }
.ec-mnav__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; }
.ec-mnav__foot a { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.3rem; color: var(--ec-ink-2); text-decoration: none; }

/* Search overlay */
.ec-search {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(18, 18, 20, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
.ec-search.is-open { visibility: visible; opacity: 1; transition: opacity 0.3s; }
.ec-search__panel {
  background: var(--ec-paper);
  padding: calc(env(safe-area-inset-top, 0px) + 2.4rem) 0 3.2rem;
  transform: translateY(-16px);
  transition: transform 0.4s var(--ec-ease);
  max-height: 88vh;
  overflow-y: auto;
}
.ec-search.is-open .ec-search__panel { transform: none; }
.ec-search__form { display: flex; align-items: center; gap: 1.2rem; border-bottom: 1px solid var(--ec-line-2); padding-bottom: 1.2rem; }
.ec-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--ec-display);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  color: var(--ec-ink);
  padding: 0.4rem 0;
  min-width: 0;
}
.ec-search__input:focus { outline: none; }
.ec-search__results { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.6rem; margin-top: 2.4rem; }
.ec-search__hint { margin-top: 2rem; color: var(--ec-ink-2); font-size: 1.5rem; }
.ec-search__all { margin-top: 2.4rem; }

/* ==========================================================================
   Product card
   ========================================================================== */

.ec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1099px) { .ec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 749px) { .ec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.4rem 1rem; } }

.ec-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.ec-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--ec-radius);
  background: var(--card-tint, #f7efe9);
  overflow: hidden;
}
.ec-card__media img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 0.5s var(--ec-ease), transform 0.8s var(--ec-ease);
}
.ec-card__media img + img { opacity: 0; }
.ec-card:hover .ec-card__media img:first-child { transform: scale(1.05); }
.ec-card:hover .ec-card__media img + img { opacity: 1; }
.ec-card:hover .ec-card__media img:first-child:not(:only-child) { opacity: 0; }
.ec-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ec-ink);
  color: var(--ec-paper);
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  line-height: 1;
}
.ec-badge--light { background: var(--ec-paper); color: var(--ec-ink-2); border: 1px solid var(--ec-line); }
.ec-badge--sale { background: var(--ec-red); }
.ec-card__body { display: grid; gap: 0.3rem; padding-top: 1.4rem; }
.ec-card__brand {
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.15rem;
  color: var(--ec-ink-2);
}
.ec-card__name {
  font-family: var(--ec-display);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--ec-ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-card__name::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.ec-card__meta { font-size: 1.4rem; color: var(--ec-ink-2); line-height: 1.4; }
.ec-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 0.6rem;
  font-weight: 600;
  font-size: 1.6rem;
  font-variant-numeric: tabular-nums;
}
.ec-card__price s { font-weight: 400; color: var(--ec-ink-3); }
.ec-card__quick {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 0;
  background: var(--ec-ink);
  color: var(--ec-paper);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ec-ease), background-color 0.2s;
}
.ec-card:hover .ec-card__quick, .ec-card__quick:focus-visible { opacity: 1; transform: none; }
.ec-card__quick[aria-busy="true"] { opacity: 1; background: var(--ec-ink-2); }
.ec-card__quick .ec-icon { width: 1.9rem; height: 1.9rem; }
@media (hover: none) { .ec-card__quick { opacity: 1; transform: none; width: 3.8rem; height: 3.8rem; } }
.ec-card.is-sold-out .ec-card__media img { opacity: 0.55; }

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

.ec-coll-hero { padding-block: clamp(40px, 7vh, 88px) clamp(24px, 4vh, 40px); }
.ec-coll-hero__row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 2.4rem; }
.ec-coll-hero .ec-display { font-size: clamp(4rem, 6vw, 8.4rem); }
.ec-coll-hero__desc { max-width: 56ch; margin: 1.6rem 0 0; color: var(--ec-ink-2); font-size: 1.7rem; line-height: 1.6; }
.ec-toolbar {
  position: sticky;
  top: var(--ec-top);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 1.2rem;
  margin-bottom: 2.8rem;
  background: rgba(241, 242, 239, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--ec-line);
}
.ec-toolbar__left, .ec-toolbar__right { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.ec-count { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.25rem; color: var(--ec-ink-2); }
.ec-select {
  appearance: none;
  border: 1px solid var(--ec-line-2);
  border-radius: 999px;
  background: var(--ec-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23121214' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 1.4rem center / 1rem;
  padding: 0.9rem 3.6rem 0.9rem 1.6rem;
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  color: var(--ec-ink);
  cursor: pointer;
}
.ec-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.ec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--ec-white);
  border: 1px solid var(--ec-line);
  font-size: 1.35rem;
  color: var(--ec-ink);
  text-decoration: none;
}
.ec-chip:hover { border-color: var(--ec-ink); }
.ec-chip .ec-icon { width: 1.3rem; height: 1.3rem; }

.ec-filters {
  position: fixed;
  inset: 0;
  z-index: 65;
  visibility: hidden;
  transition: visibility 0s 0.4s;
}
.ec-filters.is-open { visibility: visible; transition: none; }
.ec-filters__scrim { position: absolute; inset: 0; background: rgba(18, 18, 20, 0.4); opacity: 0; transition: opacity 0.4s; }
.ec-filters.is-open .ec-filters__scrim { opacity: 1; }
.ec-filters__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(420px, 100%);
  background: var(--ec-paper);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ec-ease);
}
.ec-filters.is-open .ec-filters__panel { transform: none; }
.ec-filters__head { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2.4rem; border-bottom: 1px solid var(--ec-line); }
.ec-filters__head h2 { font-size: 3rem; margin: 0; }
.ec-filters__body { flex: 1; overflow-y: auto; padding: 0 2.4rem; }
.ec-filters__foot { display: flex; gap: 1.2rem; padding: 1.6rem 2.4rem calc(env(safe-area-inset-bottom, 0px) + 1.6rem); border-top: 1px solid var(--ec-line); }
.ec-filters__foot .ec-btn { flex: 1; }
.ec-facet { border-bottom: 1px solid var(--ec-line); }
.ec-facet summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  cursor: pointer;
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.3rem;
}
.ec-facet summary::-webkit-details-marker { display: none; }
.ec-facet summary::after { content: "+"; font-family: var(--ec-body); font-size: 2rem; font-weight: 400; transition: transform 0.3s; }
.ec-facet[open] summary::after { transform: rotate(45deg); }
.ec-facet__list { list-style: none; margin: 0; padding: 0 0 1.8rem; display: grid; gap: 0.2rem; max-height: 320px; overflow-y: auto; }
.ec-check { display: flex; align-items: center; gap: 1rem; padding: 0.6rem 0; font-size: 1.5rem; cursor: pointer; }
.ec-check input { width: 1.8rem; height: 1.8rem; accent-color: var(--ec-ink); margin: 0; }
.ec-check small { color: var(--ec-ink-3); margin-left: auto; font-size: 1.3rem; }
.ec-check.is-disabled { color: var(--ec-ink-3); }
.ec-price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-bottom: 1.8rem; }

.ec-empty { padding: 8rem 0; text-align: center; }
.ec-empty p { color: var(--ec-ink-2); font-size: 1.7rem; margin: 1.2rem 0 2.4rem; }

.ec-pagination { display: flex; justify-content: center; align-items: center; gap: 0.6rem; margin-top: 5.6rem; flex-wrap: wrap; }
.ec-pagination a, .ec-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-family: var(--ec-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  color: var(--ec-ink);
  text-decoration: none;
  border: 1px solid transparent;
}
.ec-pagination a:hover { border-color: var(--ec-line-2); }
.ec-pagination .is-current { background: var(--ec-ink); color: var(--ec-paper); }

/* ==========================================================================
   Product page
   ========================================================================== */

.ec-pdp { padding-block: clamp(24px, 4vh, 48px) clamp(64px, 10vh, 120px); }
.ec-pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
@media (max-width: 899px) { .ec-pdp__grid { grid-template-columns: 1fr; } }
.ec-crumbs { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.4rem; }
.ec-crumbs a, .ec-crumbs span { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.2rem; color: var(--ec-ink-2); text-decoration: none; }
.ec-crumbs a:hover { color: var(--ec-ink); }
.ec-gallery { display: grid; gap: 1.2rem; }
.ec-gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--ec-white);
  border-radius: var(--ec-radius);
  overflow: hidden;
}
.ec-gallery__main img { position: absolute; inset: 7%; width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.ec-gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 0.8rem; }
.ec-gallery__thumb {
  aspect-ratio: 1;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  background: var(--ec-white);
  padding: 0.6rem;
  cursor: pointer;
}
.ec-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.ec-gallery__thumb[aria-current="true"] { border-color: var(--ec-ink); }
.ec-pdp__info { position: sticky; top: calc(var(--ec-top) + 2.4rem); display: grid; gap: 2rem; }
@media (max-width: 899px) { .ec-pdp__info { position: static; } }
.ec-pdp__brand { font-family: var(--ec-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.35rem; color: var(--ec-ink-2); text-decoration: none; }
.ec-pdp__name { font-size: clamp(3.6rem, 4.4vw, 5.6rem); margin: 0.6rem 0 0; }
.ec-pdp__meta { font-size: 1.6rem; color: var(--ec-ink-2); margin: 0.8rem 0 0; }
.ec-pdp__price { display: flex; align-items: baseline; gap: 1.2rem; font-family: var(--ec-display); font-size: 3.2rem; font-variant-numeric: tabular-nums; }
.ec-pdp__price s { font-size: 2rem; color: var(--ec-ink-3); }
.ec-stock { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1.45rem; color: var(--ec-ink-2); }
.ec-stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2f9e6a; }
.ec-stock.is-low::before { background: #d9962b; }
.ec-stock.is-out::before { background: var(--ec-red); }
.ec-variants { display: grid; gap: 1rem; border: 0; margin: 0; padding: 0; }
.ec-variants legend { margin-bottom: 1rem; }
.ec-pills { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.ec-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ec-line-2);
  background: var(--ec-white);
  font-size: 1.45rem;
  cursor: pointer;
}
.ec-pill input { position: absolute; opacity: 0; pointer-events: none; }
.ec-pill:has(input:checked), .ec-pill[aria-checked="true"] { border-color: var(--ec-ink); box-shadow: inset 0 0 0 1px var(--ec-ink); }
.ec-pill:has(input:focus-visible) { outline: 2px solid var(--ec-ink); outline-offset: 2px; }
.ec-pill.is-unavailable { color: var(--ec-ink-3); text-decoration: line-through; }
.ec-buy { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.ec-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ec-line-2);
  border-radius: 999px;
  background: var(--ec-white);
  height: 5rem;
}
.ec-qty button { width: 4.4rem; height: 100%; border: 0; background: transparent; font-size: 2rem; cursor: pointer; color: var(--ec-ink); }
.ec-qty input { width: 3.6rem; border: 0; text-align: center; font-size: 1.6rem; background: transparent; -moz-appearance: textfield; }
.ec-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.ec-buy .ec-btn { width: 100%; }
.ec-pdp .shopify-payment-button { margin-top: 0.4rem; }
.ec-pdp .shopify-payment-button__button { border-radius: 999px; min-height: 5rem; }
.ec-perks { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 1.8rem 0; border-block: 1px solid var(--ec-line); }
.ec-perks li { display: flex; gap: 1.2rem; align-items: flex-start; font-size: 1.45rem; color: var(--ec-ink-2); }
.ec-perks .ec-icon { width: 2rem; height: 2rem; flex: none; color: var(--ec-ink); }
.ec-notes { display: grid; gap: 0; border-top: 1px solid var(--ec-line-2); }
.ec-note { display: grid; grid-template-columns: 8rem 1fr; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--ec-line); font-size: 1.5rem; }
.ec-note dt { font-family: var(--ec-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.2rem; color: var(--ec-ink-2); padding-top: 0.2rem; }
.ec-note dd { margin: 0; }
.ec-acc { border-bottom: 1px solid var(--ec-line); }
.ec-acc:first-of-type { border-top: 1px solid var(--ec-line); }
.ec-acc summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.8rem 0;
  cursor: pointer;
  font-family: var(--ec-display);
  font-size: 2rem;
}
.ec-acc summary::-webkit-details-marker { display: none; }
.ec-acc summary::after { content: "+"; font-family: var(--ec-body); font-size: 2.2rem; line-height: 1; transition: transform 0.3s; }
.ec-acc[open] summary::after { transform: rotate(45deg); }
.ec-acc__body { padding: 0 0 2rem; color: var(--ec-ink-2); font-size: 1.55rem; line-height: 1.65; }
.ec-acc__body p { margin: 0 0 1rem; }

/* ==========================================================================
   Home sections
   ========================================================================== */

/* Hero with the hanging 3D bottle */
.ec-hero { position: relative; overflow: clip; background: var(--ec-paper); }
.ec-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  min-height: min(calc(100svh - var(--ec-header-h) - 36px), 920px);
}
.ec-hero__copy { align-self: center; padding-block: clamp(40px, 8vh, 96px); position: relative; z-index: 2; }
.ec-hero__copy .ec-h1 { margin: 0 0 2.8rem; }
.ec-hero__actions { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 3.2rem; }
.ec-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.8rem;
  list-style: none;
  margin: 3.6rem 0 0;
  padding: 2.4rem 0 0;
  border-top: 1px solid var(--ec-line);
}
.ec-hero__facts li { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.2rem; color: var(--ec-ink-2); }
.ec-hero__facts b { color: var(--ec-ink); font-weight: 600; }
.ec-hero__rig { position: relative; min-height: 520px; }
.ec-mirror-wrap { position: absolute; top: 0; left: 50%; width: min(320px, 80%); transform: translateX(-50%); z-index: 3; }
.ec-mirror-stem { width: 16px; height: 56px; margin-inline: auto; background: linear-gradient(90deg, #0b0b0c, #34343a 45%, #0b0b0c); border-radius: 0 0 6px 6px; }
.ec-mirror {
  height: 86px;
  margin-top: -4px;
  padding: 4px;
  border-radius: 46px 46px 40px 40px / 44px 44px 42px 42px;
  background: linear-gradient(180deg, #2c2c31, #0c0c0e);
  box-shadow: 0 22px 40px rgba(18, 18, 20, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.ec-mirror-glass {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 24% 66%, rgba(255, 190, 90, 0.7) 0 2px, transparent 7px),
    radial-gradient(circle at 31% 62%, rgba(232, 72, 60, 0.75) 0 2.5px, transparent 8px),
    radial-gradient(circle at 69% 63%, rgba(232, 72, 60, 0.65) 0 2.5px, transparent 8px),
    radial-gradient(circle at 77% 67%, rgba(255, 190, 90, 0.55) 0 2px, transparent 6px),
    linear-gradient(180deg, #9fb3c9 0%, #cdd7e0 48%, #5d6168 52%, #3a3c41 100%);
}
/* The live road view (cp-road-mirror.js) is drawn over the painted glass, under its glare. */
.ec-mirror-glass { position: relative; overflow: hidden; }
.ec-mirror-glass canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ec-mirror-glass.is-live::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(112deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.08)); box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.45); pointer-events: none; }
.cp-stage { position: absolute; inset: 80px 0 64px 0; background: var(--ec-paper); }
.cp-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 0.6s; }
.cp-stage.is-live canvas { opacity: 1; }
.cp-stage__fallback {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
  transition: opacity 0.6s;
}
.cp-stage.is-live .cp-stage__fallback { opacity: 0; }
.ec-hero__tag { position: absolute; left: 0; right: 0; bottom: 1.2rem; display: grid; justify-items: center; gap: 0.2rem; text-align: center; }
.ec-hero__tag-name { font-family: var(--ec-display); font-style: italic; font-size: 2.2rem; }
@media (max-width: 899px) {
  .ec-hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .ec-hero__rig { order: -1; min-height: 0; height: 58svh; max-height: 520px; }
  .ec-hero__copy { padding-block: 1.6rem 5.6rem; }
}

/* Text marquee (brands, notes) */
.ec-marquee { overflow: clip; border-block: 1px solid var(--ec-line); padding-block: 2rem; background: var(--ec-paper); }
.ec-marquee__track { display: flex; width: max-content; animation: ec-marquee var(--speed, 50s) linear infinite; }
.ec-marquee:hover .ec-marquee__track { animation-play-state: paused; }
.ec-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 3.2rem;
  font-family: var(--ec-display);
  font-size: clamp(2.6rem, 3.4vw, 4.4rem);
  color: var(--ec-ink-3);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.ec-marquee__item:nth-child(even) { font-style: italic; }
.ec-marquee__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ec-line-2); }
a.ec-marquee__item:hover { color: var(--ec-ink); }
@media (prefers-reduced-motion: reduce) { .ec-marquee__track, .ec-announce__track { animation: none; } }

/* Shop by: large tiles */
.ec-shopby__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
@media (max-width: 989px) { .ec-shopby__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ec-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  padding: 2.4rem;
  border-radius: var(--ec-radius);
  background: var(--tile-bg, var(--ec-white));
  color: var(--ec-ink);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.ec-tile__img {
  position: absolute;
  inset: 6% 10% 30%;
  width: 80%;
  height: 64%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ec-ease);
  z-index: -1;
}
.ec-tile:hover .ec-tile__img { transform: scale(1.06) translateY(-1.2rem); }
.ec-tile__title { font-family: var(--ec-display); font-size: clamp(2.8rem, 2.8vw, 4rem); line-height: 1; }
.ec-tile__sub { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.ec-tile__arrow {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--ec-line-2);
  transition: background-color 0.3s, color 0.3s, transform 0.3s var(--ec-ease);
}
.ec-tile:hover .ec-tile__arrow { background: var(--ec-ink); color: var(--ec-paper); transform: rotate(-45deg); }

/* Car Perfume band on the home page */
.ec-line { background: var(--ec-dark); color: var(--ec-on-dark); overflow: clip; }
.ec-line .ec-eyebrow { color: var(--ec-on-dark-2); }
.ec-line :is(h1, h2, h3, .ec-display) { color: var(--ec-on-dark); }
.ec-line .ec-lede { color: var(--ec-on-dark-2); }
.ec-line__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 899px) { .ec-line__grid { grid-template-columns: 1fr; } }
.ec-line__bottles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.ec-line__bottle {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--ec-radius);
  background: radial-gradient(70% 60% at 50% 60%, color-mix(in srgb, var(--tint) 55%, #ffffff), #f5f5f3 72%);
  overflow: hidden;
  transition: transform 0.6s var(--ec-ease);
}
.ec-line__bottle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.25); }
.ec-line__bottle:hover { transform: translateY(-6px); }
.ec-line__actions { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 3.2rem; }

/* Horizontal product rail */
.ec-rail { position: relative; }
.ec-rail__track {
  list-style: none;
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 22vw, 300px);
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-inline: var(--ec-gutter);
  scroll-padding-inline: var(--ec-gutter);
  padding-bottom: 0.4rem;
  cursor: grab;
}
.ec-rail__track::-webkit-scrollbar { display: none; }
.ec-rail__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.ec-rail__track > * { scroll-snap-align: start; }
.ec-rail__nav { display: flex; gap: 0.8rem; }
.ec-round {
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid var(--ec-line-2);
  background: transparent;
  color: var(--ec-ink);
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.ec-round:hover { background: var(--ec-ink); color: var(--ec-paper); border-color: var(--ec-ink); }
.ec-round .ec-icon { width: 2rem; height: 2rem; }

/* Brands */
.ec-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--ec-line);
  border-left: 1px solid var(--ec-line);
}
@media (max-width: 989px) { .ec-brands__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 549px) { .ec-brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ec-brand {
  display: grid;
  place-items: center;
  gap: 1rem;
  aspect-ratio: 4 / 3;
  padding: 1.6rem;
  border-right: 1px solid var(--ec-line);
  border-bottom: 1px solid var(--ec-line);
  text-decoration: none;
  color: var(--ec-ink);
  background: transparent;
  transition: background-color 0.3s;
}
.ec-brand:hover { background: var(--ec-white); }
.ec-brand.has-logo { align-content: center; gap: 1.2rem; }
.ec-brand__logo { max-width: 78%; max-height: 96px; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; filter: grayscale(1) contrast(1.05); opacity: 0.88; transition: filter 0.35s, opacity 0.35s, transform 0.5s var(--ec-ease); }
.ec-brand:hover .ec-brand__logo { filter: none; opacity: 1; transform: scale(1.04); }
.ec-brand__label { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.1rem; color: var(--ec-ink-3); text-align: center; transition: color 0.3s; }
.ec-brand:hover .ec-brand__label { color: var(--ec-ink); }
.ec-brand__name { font-family: var(--ec-display); font-size: 2rem; text-align: center; }

/* Trust strip */
.ec-trust__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.4rem clamp(20px, 3vw, 48px); }
@media (max-width: 899px) { .ec-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 499px) { .ec-trust__grid { grid-template-columns: 1fr; } }
.ec-trust__item { display: grid; gap: 1rem; align-content: start; padding-top: 2rem; border-top: 1px solid var(--ec-line-2); }
.ec-trust__item .ec-icon { width: 2.6rem; height: 2.6rem; }
.ec-trust__item h3 { font-size: 2.2rem; margin: 0; }
.ec-trust__item p { margin: 0; color: var(--ec-ink-2); font-size: 1.5rem; line-height: 1.6; }

/* FAQ */
.ec-faq__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 4rem clamp(32px, 6vw, 96px); }
@media (max-width: 899px) { .ec-faq__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Car Perfume by Escentials
   ========================================================================== */

.cp-tabs {
  display: inline-flex;
  padding: 0.4rem;
  gap: 0.2rem;
  border: 1px solid var(--ec-line-2);
  border-radius: 999px;
  background: var(--ec-white);
  max-width: 100%;
  overflow-x: auto;
}
.cp-tab {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  font-family: var(--ec-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.25rem;
  color: var(--ec-ink-2);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s;
}
.cp-tab[aria-selected="true"] { background: var(--ec-ink); color: var(--ec-paper); }

.cp-builder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 899px) { .cp-builder__grid { grid-template-columns: 1fr; } }
.cp-builder__view {
  position: sticky;
  top: calc(var(--ec-top) + 2rem);
  height: min(78svh, 720px);
  border-radius: var(--ec-radius);
  background: var(--ec-white);
  overflow: hidden;
}
.cp-builder__view .cp-stage { inset: 0 0 48px 0; background: var(--ec-white); cursor: grab; touch-action: pan-y; }
.cp-builder__hint { position: absolute; left: 0; right: 0; bottom: 1.6rem; text-align: center; }
@media (max-width: 899px) {
  .cp-builder__view { position: relative; top: 0; height: 52svh; }
}
.cp-builder__panel { display: grid; gap: 2.8rem; }
.cp-step__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1.2rem; margin-bottom: 1.4rem; }
.cp-step__title { display: flex; align-items: baseline; gap: 1.2rem; font-family: var(--ec-display); font-size: 2.6rem; margin: 0; }
.cp-step__no { font-family: var(--ec-display); font-style: italic; color: var(--ec-gold); }
.cp-scents { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.cp-scent {
  display: grid;
  gap: 0.2rem;
  text-align: left;
  padding: 1.3rem 1.6rem;
  border-radius: var(--ec-radius);
  border: 1px solid var(--ec-line);
  background: var(--ec-white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-scent:hover { border-color: var(--ec-line-2); }
.cp-scent[aria-checked="true"] { border-color: var(--ec-ink); box-shadow: inset 0 0 0 1px var(--ec-ink); }
.cp-scent__name { font-family: var(--ec-display); font-size: 1.9rem; line-height: 1.2; color: var(--ec-ink); }
.cp-scent__for { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 1.1rem; color: var(--ec-ink-3); }
/* Phones: scents side by side in compact tiles, so the bottle colors are a short scroll away. */
@media (max-width: 499px) {
  .cp-scents { gap: 0.6rem; }
  .cp-scent { align-content: start; padding: 0.9rem 1.1rem; }
  .cp-scent__name { font-size: 1.6rem; line-height: 1.15; }
  .cp-scent__for { font-size: 1rem; letter-spacing: 0.1em; }
}
.cp-swatches { display: flex; flex-wrap: wrap; gap: 1rem; }
.cp-swatch {
  position: relative;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 1px solid var(--ec-line-2);
  padding: 4px;
  background: var(--ec-white);
  cursor: pointer;
}
.cp-swatch span { display: block; width: 100%; height: 100%; border-radius: 50%; background: var(--sw); }
.cp-swatch[aria-checked="true"] { border: 2px solid var(--ec-ink); padding: 3px; }
.cp-swatch[disabled] { opacity: 0.3; cursor: not-allowed; }
.cp-swatch-name { margin-top: 1rem; font-size: 1.45rem; color: var(--ec-ink-2); }
.cp-summary {
  display: grid;
  gap: 1.6rem;
  padding: 2.4rem;
  border-radius: var(--ec-radius);
  background: var(--ec-white);
  border: 1px solid var(--ec-line);
}
.cp-summary__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.6rem; }
.cp-summary__title { font-family: var(--ec-display); font-size: 2.2rem; line-height: 1.2; }
.cp-summary__price { font-family: var(--ec-display); font-size: 3rem; font-variant-numeric: tabular-nums; }
.cp-summary .ec-buy { grid-template-columns: auto 1fr; }
.cp-note { font-size: 1.4rem; color: var(--ec-ink-2); margin: 0; }
.cp-msg { font-size: 1.45rem; margin: 0; color: var(--ec-ink-2); min-height: 1.4em; }
.cp-msg.is-error { color: var(--ec-red); }

.cp-refills__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 96px); align-items: center; }
@media (max-width: 899px) { .cp-refills__grid { grid-template-columns: 1fr; } }
.cp-refills__visual { position: relative; aspect-ratio: 9 / 10; border-radius: var(--ec-radius); background: radial-gradient(70% 60% at 50% 60%, #dde3df, var(--ec-paper) 75%); overflow: hidden; }
.cp-refills__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cp-refills__form { display: grid; gap: 2rem; margin-top: 3.2rem; max-width: 52rem; }

.cp-steps__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.4rem clamp(20px, 3vw, 48px); }
@media (max-width: 749px) { .cp-steps__grid { grid-template-columns: 1fr; } }
.cp-steps__item { display: grid; gap: 1rem; align-content: start; padding-top: 2rem; border-top: 1px solid var(--ec-line-2); }
.cp-steps__no { font-family: var(--ec-display); font-style: italic; font-size: 4rem; line-height: 1; color: var(--ec-gold); }
.cp-steps__item h3 { font-size: 2.4rem; margin: 0; }
.cp-steps__item p { margin: 0; color: var(--ec-ink-2); font-size: 1.55rem; line-height: 1.6; }
.cp-disclaimer { margin-top: 2.4rem; font-size: 1.3rem; color: var(--ec-ink-3); max-width: 80ch; }

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

.ec-footer { background: var(--ec-plum-2); color: var(--ec-on-dark); padding-block: clamp(64px, 10vh, 112px) calc(3.2rem + env(safe-area-inset-bottom, 0px)); }
.ec-footer a { color: inherit; text-decoration: none; }
.ec-footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr)); gap: 4rem clamp(24px, 4vw, 64px); }
@media (max-width: 989px) { .ec-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 549px) { .ec-footer__top { grid-template-columns: 1fr; } }
.ec-footer__news h2 { font-size: clamp(3rem, 3.6vw, 4.4rem); margin: 0 0 1.2rem; color: var(--ec-on-dark); }
.ec-footer__news p { margin: 0 0 2rem; color: var(--ec-on-dark-2); font-size: 1.55rem; max-width: 40ch; }
.ec-footer__form { display: flex; gap: 0.8rem; max-width: 46rem; }
.ec-footer__form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(238, 239, 236, 0.24);
  background: transparent;
  color: var(--ec-on-dark);
  padding: 0 2rem;
  font-size: 1.55rem;
  min-height: 5rem;
}
.ec-footer__form input::placeholder { color: var(--ec-on-dark-2); }
.ec-footer__col h3 { font-family: var(--ec-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 1.25rem; color: var(--ec-on-dark-2); margin: 0 0 1.6rem; }
.ec-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.ec-footer__col a { font-size: 1.55rem; color: var(--ec-on-dark); opacity: 0.86; transition: opacity 0.2s; }
.ec-footer__col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.ec-footer__mark { font-family: var(--ec-display); font-size: clamp(6rem, 17vw, 24rem); line-height: 0.86; letter-spacing: -0.03em; margin: clamp(48px, 8vh, 96px) 0 0; color: var(--ec-on-dark); white-space: nowrap; }
.ec-footer__mark em { font-style: italic; }
.ec-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.6rem 3.2rem; margin-top: 3.2rem; padding-top: 2.4rem; border-top: 1px solid rgba(238, 239, 236, 0.14); }
.ec-footer__small { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.2rem; color: var(--ec-on-dark-2); }
.ec-footer__social { display: flex; gap: 0.4rem; }
.ec-footer__social a { display: inline-grid; place-items: center; width: 4.2rem; height: 4.2rem; border-radius: 50%; border: 1px solid rgba(238, 239, 236, 0.2); }
.ec-footer__social a:hover { background: var(--ec-on-dark); color: var(--ec-ink); }
.ec-footer__social .ec-icon { width: 1.8rem; height: 1.8rem; }
.ec-footer__pay { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
.ec-footer__pay svg { height: 2.4rem; width: auto; }
.ec-footer__legal { margin-top: 2rem; font-size: 1.25rem; color: var(--ec-on-dark-2); max-width: 90ch; line-height: 1.6; }
.ec-footer__msg { margin-top: 1rem; font-size: 1.4rem; color: var(--ec-on-dark-2); }

/* ==========================================================================
   Dawn components restyled so nothing looks off-the-shelf
   ========================================================================== */

.page-width { max-width: var(--ec-max); padding-inline: var(--ec-gutter); }
.title, .main-page-title { font-family: var(--ec-display); font-weight: 400; }
.main-page-title { font-size: clamp(3.6rem, 5vw, 6.4rem); margin-bottom: 3.2rem; }
.rte { font-size: 1.6rem; line-height: 1.7; color: var(--ec-ink-2); }
.rte h2, .rte h3 { color: var(--ec-ink); }

/* Cart drawer */
.drawer { background: rgba(18, 18, 20, 0.4); }
.drawer__inner { background: var(--ec-paper); border: 0; box-shadow: -24px 0 80px rgba(18, 18, 20, 0.18); }
.drawer__heading { font-family: var(--ec-display); font-size: 3rem; font-weight: 400; }
.drawer__header { border-bottom: 1px solid var(--ec-line); padding-bottom: 1.6rem; }
.cart-item__name { font-family: var(--ec-display); font-size: 1.8rem; letter-spacing: 0; text-decoration: none; }
.cart-item__image { background: var(--ec-white); border-radius: var(--ec-radius); mix-blend-mode: multiply; }
.cart-drawer .cart-item__media { background: var(--ec-white); border-radius: var(--ec-radius); }
.product-option { font-size: 1.35rem; color: var(--ec-ink-2); }
.drawer__footer { border-top: 1px solid var(--ec-line); }
.totals__total { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.3rem; }
.totals__total-value { font-family: var(--ec-display); font-size: 2.4rem; letter-spacing: 0; }
.cart__checkout-button { width: 100%; }
.quantity { border-radius: 999px; min-height: 4.4rem; }
.quantity::before, .quantity::after { border-radius: 999px; box-shadow: none; }
.cart-drawer__warnings .drawer__inner-empty .cart__empty-text { font-family: var(--ec-display); font-size: 3.2rem; }
.cart-count-bubble { background: var(--ec-ink); }
.tax-note, .cart__ctas + p { color: var(--ec-ink-2); }

/* Search page, predictive search, customer pages */
.search__input.field__input { border-radius: 999px; }
.template-search__header .h2 { font-family: var(--ec-display); }
.customer h1 { font-family: var(--ec-display); font-weight: 400; }


/* Home hero: fragrance shop */
.ec-shero { position: relative; overflow: clip; padding-block: clamp(28px, 5vh, 56px) clamp(48px, 8vh, 96px); }
.ec-shero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 5vw, 96px); align-items: center; min-height: min(700px, calc(100svh - 200px)); }
.ec-shero .ec-h1 { font-size: clamp(4.4rem, 5.4vw, 8.2rem); }
.ec-shero__copy { position: relative; z-index: 2; }
.ec-shero__copy .ec-h1 { margin: 2rem 0 2rem; }
.ec-shero__promo {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.5rem 1.4rem 0.5rem 0.5rem;
  border: 1px solid var(--ec-line-2); border-radius: 999px; background: var(--ec-white);
  font-size: 1.4rem; color: var(--ec-ink); text-decoration: none;
  transition: border-color 0.25s, transform 0.35s var(--ec-ease);
}
.ec-shero__promo:hover { border-color: var(--ec-ink); transform: translateY(-2px); }
.ec-shero__promo-img { width: 3.4rem; height: 3.4rem; border-radius: 50%; overflow: hidden; background: #ece4fb; flex: none; }
.ec-shero__promo-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; transform: scale(1.35); }
.ec-shero__promo-text b { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 1.15rem; margin-right: 0.6rem; color: var(--ec-gold); }
.ec-shero__promo .ec-icon { width: 1.4rem; height: 1.4rem; }
.ec-shero__search {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 3.2rem; max-width: 56rem;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  background: var(--ec-white); border: 1px solid var(--ec-line-2); border-radius: 999px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ec-shero__search:focus-within { border-color: var(--ec-ink); box-shadow: 0 10px 30px -18px rgba(18, 18, 20, 0.5); }
.ec-shero__search > .ec-icon { width: 1.8rem; height: 1.8rem; color: var(--ec-ink-3); flex: none; }
.ec-shero__search input[type="search"] {
  flex: 1; min-width: 0; border: 0; background: none; outline: none; box-shadow: none;
  font: 400 1.6rem/1.2 var(--ec-body); color: var(--ec-ink); padding: 1rem 0;
}
.ec-shero__search input[type="search"]::-webkit-search-cancel-button { display: none; }
.ec-shero__search .ec-btn { flex: none; }
.ec-shero__chips { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.ec-chip.is-featured { border-color: var(--ec-ink); color: var(--ec-ink); font-weight: 600; }
.ec-chip .ec-dot { margin-right: 0.2rem; }

.ec-shero__stack {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
  height: clamp(440px, 38vw, 560px);
}
.ec-pick { display: block; min-height: 0; color: var(--ec-ink); text-decoration: none; }
.ec-pick--0 { grid-row: 1 / span 2; }
.ec-pick__inner {
  display: flex; flex-direction: column; height: 100%;
  background: var(--pick-bg, var(--ec-card)); border-radius: var(--ec-radius); overflow: hidden;
  box-shadow: 0 30px 60px -44px rgba(28, 15, 33, 0.55);
  transition: box-shadow 0.4s var(--ec-ease), transform 0.5s var(--ec-ease);
}
.ec-pick:hover .ec-pick__inner { box-shadow: 0 36px 70px -36px rgba(28, 15, 33, 0.6); }
.ec-pick__media { display: block; position: relative; flex: 1; min-height: 0; }
.ec-pick__media img { position: absolute; inset: 6% 10% 8%; width: 80%; height: 86%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.6s var(--ec-ease); }
.ec-pick:hover .ec-pick__media img { transform: scale(1.05); }
.ec-pick__body { display: grid; gap: 0.2rem; padding: 1.8rem 2rem 0; }
.ec-pick__brand { font-family: var(--ec-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.1rem; color: var(--ec-ink-2); }
.ec-pick__name { font-family: var(--ec-display); font-size: 2rem; line-height: 1.15; }
.ec-pick--0 .ec-pick__name { font-size: 2.8rem; }
.ec-pick__price { font-size: 1.45rem; font-weight: 600; margin-top: 0.4rem; }

@media (max-width: 989px) {
  .ec-shero__grid { grid-template-columns: 1fr; min-height: 0; }
  .ec-shero__stack { height: auto; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; gap: 1rem; }
  .ec-pick--0 { grid-row: auto; }
  .ec-pick--0 .ec-pick__name { font-size: 1.5rem; }
  .ec-pick__media { flex: none; aspect-ratio: 1; }
  .ec-pick__body { padding: 1.2rem 1rem 0; }
  .ec-pick__name { font-size: 1.5rem; }
  .ec-pick__brand { font-size: 1rem; }
  .ec-pick__price { font-size: 1.3rem; }
}
@media (max-width: 549px) {
  .ec-shero__search { padding-left: 1.4rem; }
  .ec-shero__search .ec-btn { padding-inline: 1.8rem; }
  .ec-shero__stack { grid-template-columns: repeat(3, 70%); overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--ec-gutter) * -1); padding-inline: var(--ec-gutter); scrollbar-width: none; }
  .ec-pick { scroll-snap-align: start; }
}

/* Car Perfume banner (collection, product and search pages) */
.cp-promo { padding-block: clamp(32px, 5vw, 72px); }
.cp-promo__card {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 3.2rem;
  padding: clamp(28px, 4vw, 56px); border-radius: var(--ec-radius); overflow: hidden;
  background: radial-gradient(120% 140% at 85% 50%, #2a2a31 0%, var(--ec-dark) 60%); color: var(--ec-on-dark); text-decoration: none;
}
.cp-promo__card .ec-eyebrow { color: var(--ec-on-dark-2); }
.cp-promo__title { color: var(--ec-on-dark); font-size: clamp(3.2rem, 4vw, 5.4rem); margin: 1.2rem 0 1.4rem; }
.cp-promo__text { color: var(--ec-on-dark-2); font-size: 1.6rem; line-height: 1.6; max-width: 44ch; margin: 0 0 2.4rem; }
.cp-promo__bottles { display: flex; justify-content: center; align-items: flex-end; }
.cp-promo__bottles img {
  width: 17%; height: auto; margin-inline: 0.8%; border-radius: 50%;
  background: #f4f4f2; mix-blend-mode: normal; aspect-ratio: 1; object-fit: cover;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  transform: translateY(calc(var(--i) * 0px));
  transition: transform 0.5s var(--ec-ease);
  transition-delay: calc(var(--i) * 40ms);
}
.cp-promo__bottles img:nth-child(odd) { transform: translateY(-14px); }
.cp-promo__card:hover .cp-promo__bottles img { transform: translateY(-24px); }
.cp-promo__card:hover .ec-btn--light { background: #fff; }
@media (max-width: 749px) {
  .cp-promo__card { grid-template-columns: 1fr; }
  .cp-promo__bottles { order: -1; }
}


/* ---------- Color ---------- */
[data-bg="blush"] { background: var(--ec-blush); }
[data-bg="lilac"] { background: var(--ec-lilac); }
[data-bg="sky"] { background: var(--ec-sky); }
[data-bg="sage"] { background: var(--ec-sage); }
[data-bg="butter"] { background: var(--ec-butter); }
[data-bg="champagne"] { background: var(--ec-champagne); }
[data-bg="plum"] { background: var(--ec-plum); color: var(--ec-on-dark); }
[data-bg]:not([data-bg="none"]) { border-top-color: transparent; }
[data-bg]:not([data-bg="none"]) + * { border-top-color: transparent; }
[data-bg="plum"] :is(h1, h2, h3, .ec-display) { color: var(--ec-on-dark); }
[data-bg="plum"] :is(.ec-eyebrow, .ec-lede, p) { color: var(--ec-on-dark-2); }
[data-bg="plum"] .ec-link { color: var(--ec-on-dark); }
.shopify-section:has(> [data-bg]:not([data-bg="none"])) + .shopify-section > .ec-section--line { border-top-color: transparent; }

/* Brand cells on a colored band */
[data-bg]:not([data-bg="none"]) .ec-brands__grid { border-color: rgba(28, 15, 33, 0.14); }
[data-bg]:not([data-bg="none"]) .ec-brand { border-color: rgba(28, 15, 33, 0.14); }
[data-bg]:not([data-bg="none"]) .ec-brand:hover { background: rgba(255, 255, 255, 0.7); }

/* Product tiles take turns through soft tints */
.ec-grid > li:nth-child(5n + 1), .ec-rail__track > li:nth-child(5n + 1) { --card-tint: #f8e9e3; }
.ec-grid > li:nth-child(5n + 2), .ec-rail__track > li:nth-child(5n + 2) { --card-tint: #ece7f7; }
.ec-grid > li:nth-child(5n + 3), .ec-rail__track > li:nth-child(5n + 3) { --card-tint: #e5eef8; }
.ec-grid > li:nth-child(5n + 4), .ec-rail__track > li:nth-child(5n + 4) { --card-tint: #e8f0e4; }
.ec-grid > li:nth-child(5n + 5), .ec-rail__track > li:nth-child(5n + 5) { --card-tint: #f8f0da; }
[data-bg]:not([data-bg="none"]) .ec-rail__track > li { --card-tint: rgba(255, 255, 255, 0.72); }

/* Hero backdrop: soft color fields that drift slowly */
.ec-shero { background: var(--ec-paper); isolation: isolate; }
.ec-shero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background:
    radial-gradient(38% 42% at 78% 28%, rgba(242, 157, 190, 0.55), transparent 70%),
    radial-gradient(34% 40% at 92% 78%, rgba(160, 132, 230, 0.45), transparent 70%),
    radial-gradient(30% 36% at 58% 86%, rgba(247, 206, 120, 0.5), transparent 70%),
    radial-gradient(30% 38% at 8% 12%, rgba(148, 196, 232, 0.4), transparent 70%);
  filter: blur(8px);
  animation: ec-drift 22s ease-in-out infinite alternate;
}
@keyframes ec-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-2%, 2%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) { .ec-shero::before { animation: none; } }
.ec-shero__promo { background: rgba(255, 255, 255, 0.75); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* Car Perfume band: deep amethyst instead of black */
.ec-line { background: radial-gradient(90% 120% at 85% 30%, #4a2476 0%, #2a1545 45%, #170c22 100%); }
.cp-promo__card { background: radial-gradient(110% 150% at 85% 40%, #4a2476 0%, #2a1545 50%, #170c22 100%); }

/* Richer shop-by tiles */
.ec-tile { transition: transform 0.5s var(--ec-ease), box-shadow 0.5s var(--ec-ease); }
.ec-tile:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -36px rgba(28, 15, 33, 0.6); }

/* Buttons pick up the plum on hover */
.ec-btn:not(.ec-btn--ghost):not(.ec-btn--light):hover { background: var(--ec-plum); border-color: var(--ec-plum); }

/* Hide the recommendations row until it has products */
[data-ec-recommendations]:empty { display: none; }


/* =====================================================================
   Retail layout: one clean, continuous white page (Jomashop-style).
   ===================================================================== */

body, body.gradient { background: #fff; }
.ec-section { padding-block: clamp(28px, 3.6vw, 52px); }
.ec-section--line { border-top: 0; }
[data-bg]:not([data-bg="none"]) { background: transparent; }

/* Section headings: compact, sans, with "View all" on the right */
.ec-head { align-items: center; margin-bottom: 2rem; gap: 1.2rem 2.4rem; }
.ec-h2, .ec-display.ec-h2 {
  font-family: var(--ec-body);
  font-weight: 600;
  font-size: clamp(2.1rem, 1.9vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ec-h2 em { font-style: normal; }
.ec-head .ec-eyebrow { display: none; }
.ec-head > p { font-size: 1.5rem; color: var(--ec-ink-2); max-width: 60ch; margin: 0; }
.ec-link { font-family: var(--ec-body); text-transform: none; letter-spacing: 0; font-size: 1.45rem; font-weight: 600; }

/* ---------- Header ---------- */
.ec-announce { background: var(--ec-ink); }
.ec-header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom: 1px solid var(--ec-line); }
.ec-header.is-scrolled { box-shadow: 0 6px 18px -14px rgba(0, 0, 0, 0.35); }
.ec-header__inner { height: 78px; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(20px, 3vw, 48px); }
.ec-logo__word { font-size: 2.8rem; }
.ec-hsearch { position: relative; width: 100%; max-width: 76rem; justify-self: center; }
.ec-hsearch__form { display: flex; align-items: center; height: 4.8rem; border: 1.5px solid var(--ec-ink); border-radius: 999px; background: #fff; overflow: hidden; }
.ec-hsearch__input {
  flex: 1; min-width: 0; height: 100%; padding: 0 2.2rem; border: 0; outline: none; box-shadow: none; background: none;
  font: 400 1.55rem/1 var(--ec-body); color: var(--ec-ink);
}
.ec-hsearch__input::placeholder { color: var(--ec-ink-3); }
.ec-hsearch__input::-webkit-search-cancel-button { display: none; }
.ec-hsearch__btn { flex: none; display: grid; place-items: center; width: 5.6rem; height: 100%; border: 0; background: var(--ec-ink); color: #fff; cursor: pointer; }
.ec-hsearch__btn .ec-icon { width: 2rem; height: 2rem; }
.ec-hsearch__drop {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 45;
  background: #fff; border: 1px solid var(--ec-line); border-radius: 12px; box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.35);
  display: none; max-height: min(70vh, 560px); overflow-y: auto;
}
.ec-hsearch.has-results .ec-hsearch__drop { display: block; }
.ec-sug { display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); }
.ec-sug__side { padding: 1.6rem 1.8rem; border-right: 1px solid var(--ec-line); background: var(--ec-soft); }
.ec-sug__main { padding: 1.6rem 1.8rem; }
.ec-sug__label { margin: 0 0 0.8rem; font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ec-ink-3); }
.ec-sug ul { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.ec-sug__side a { display: block; padding: 0.5rem 0; color: var(--ec-ink); text-decoration: none; font-size: 1.45rem; }
.ec-sug__side a:hover { text-decoration: underline; }
.ec-sug__item { display: grid; grid-template-columns: 5.6rem minmax(0, 1fr) auto; align-items: center; gap: 1.2rem; padding: 0.8rem; border-radius: 8px; color: var(--ec-ink); text-decoration: none; }
.ec-sug__item:hover { background: var(--ec-soft); }
.ec-sug__img { display: block; aspect-ratio: 1; background: #fff; border-radius: 6px; overflow: hidden; }
.ec-sug__img img { width: 100%; height: 100%; object-fit: contain; }
.ec-sug__text { display: grid; gap: 0.2rem; font-size: 1.4rem; line-height: 1.3; min-width: 0; }
.ec-sug__text b { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ec-sug__text span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ec-ink-2); }
.ec-sug__price { font-weight: 600; font-size: 1.45rem; }
.ec-sug__all { display: inline-block; margin-top: 0.4rem; font-weight: 600; font-size: 1.4rem; color: var(--ec-ink); }
.ec-sug__empty { margin: 0; padding: 1.8rem; color: var(--ec-ink-2); }
.ec-hlink { display: inline-flex; align-items: center; gap: 0.8rem; padding: 0 1rem; height: 4.4rem; color: var(--ec-ink); text-decoration: none; font-size: 1.4rem; font-weight: 500; border-radius: 999px; }
.ec-hlink:hover { background: var(--ec-soft); }
#cart-icon-bubble .cart-count-bubble { background: var(--ec-sale); }

/* Category bar: white, bold labels, Car Perfume in color */
.ec-catbar { background: #fff; color: var(--ec-ink); border-bottom: 1px solid var(--ec-line); }
.ec-cats { gap: clamp(1.2rem, 2.4vw, 4rem); }
.ec-cat__link { font-family: var(--ec-body); font-weight: 600; font-size: 1.4rem; letter-spacing: 0.02em; text-transform: none; color: var(--ec-ink); }
.ec-cat__link::after { background: var(--ec-ink); height: 2px; }
.ec-cat:hover .ec-cat__link, .ec-cat.is-open .ec-cat__link { color: var(--ec-ink); }
.ec-cat.is-featured .ec-cat__link { color: var(--ec-accent); }
.ec-cat.is-featured .ec-cat__link::after { background: var(--ec-accent); }
.ec-cat__toggle { color: var(--ec-ink-3); }
.ec-panel { background: #fff; border-top: 1px solid var(--ec-line); box-shadow: 0 24px 40px -28px rgba(0, 0, 0, 0.35); }
.ec-panel__heading { font-family: var(--ec-body); font-weight: 600; font-size: 1.6rem; }
.ec-panel__promo-title { font-family: var(--ec-body); font-weight: 600; font-size: 1.8rem; }

@media (max-width: 989px) {
  .ec-header__inner { height: auto; grid-template-columns: 1fr auto 1fr; grid-template-rows: 56px auto; row-gap: 0; padding-bottom: 1rem; }
  .ec-hsearch { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .ec-hsearch__form { height: 4.4rem; }
  .ec-show-compact { display: none; }
  .ec-sug { grid-template-columns: 1fr; }
  .ec-sug__side { display: none; }
  :root { --ec-header-h: 112px; }
}

/* ---------- Banner slider ---------- */
.ec-slider-sec { padding-top: clamp(16px, 2vw, 28px); }
.ec-slider { position: relative; border-radius: 16px; overflow: hidden; }
.ec-slider__track { display: grid; }
.ec-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.4rem;
  /* Grows to fit its text on narrow laptops and tablets instead of cutting it off.
     The bottom padding keeps the text clear of the arrows and dots. */
  height: auto;
  min-height: clamp(340px, 33vw, 480px);
  padding: clamp(24px, 3.6vw, 56px) clamp(28px, 4.4vw, 72px) 7.2rem;
  background: linear-gradient(120deg, var(--s1), var(--s2));
  color: var(--ec-ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ec-ease), visibility 0s 0.7s;
}
.ec-slide.is-active { opacity: 1; visibility: visible; transition: opacity 0.7s var(--ec-ease); z-index: 1; }
.ec-slide--light { color: #fff; }
.ec-slide__eyebrow { margin: 0 0 1.2rem; font-size: 1.25rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.8; }
.ec-slide__title { margin: 0; font-family: var(--ec-display); font-weight: 500; font-size: clamp(3.6rem, 4.4vw, 6.4rem); line-height: 1.02; letter-spacing: -0.015em; color: inherit; }
.ec-slide__text { margin: 1.6rem 0 0; font-size: 1.7rem; line-height: 1.5; max-width: 42ch; opacity: 0.85; }
.ec-slide__btn { margin-top: 2.8rem; }
.ec-slide--light .ec-slide__btn { background: #fff; color: var(--ec-ink); border-color: #fff; }
.ec-slide__copy > * { transform: translateY(14px); opacity: 0; transition: transform 0.8s var(--ec-ease), opacity 0.8s var(--ec-ease); }
.ec-slide.is-active .ec-slide__copy > * { transform: none; opacity: 1; }
.ec-slide.is-active .ec-slide__copy > :nth-child(2) { transition-delay: 0.08s; }
.ec-slide.is-active .ec-slide__copy > :nth-child(3) { transition-delay: 0.16s; }
.ec-slide.is-active .ec-slide__copy > :nth-child(4) { transition-delay: 0.24s; }
.ec-slide__visual { position: relative; height: 100%; min-height: 0; display: grid; place-items: center; }
.ec-slide__products { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 1.4vw, 22px); width: 100%; height: 100%; }
.ec-slide__product {
  flex: none;
  width: min(29%, 17rem); aspect-ratio: 1; border-radius: 50%;
  background: #fff; box-shadow: 0 24px 44px -28px rgba(0, 0, 0, 0.45); overflow: hidden;
  transform: translateY(24px) scale(0.94); opacity: 0;
  transition: transform 0.9s var(--ec-ease), opacity 0.7s var(--ec-ease);
  transition-delay: calc(var(--i) * 90ms + 0.1s);
}
.ec-slide__product.is-mid { width: min(34%, 20rem); }
/* A gentle arc: the middle circle is raised, the others step down. */
.ec-slide.is-active .ec-slide__product { transform: translateY(calc(var(--d, 0) * 12px - 14px)); opacity: 1; }
.ec-slide__products[style*="--n: 4"] .ec-slide__product, .ec-slide__products[style*="--n: 5"] .ec-slide__product,
.ec-slide__products[style*="--n: 6"] .ec-slide__product, .ec-slide__products[style*="--n: 7"] .ec-slide__product { width: min(calc(94% / var(--n)), 14rem); }
.ec-slide__products[style*="--n: 4"] .is-mid, .ec-slide__products[style*="--n: 5"] .is-mid,
.ec-slide__products[style*="--n: 6"] .is-mid, .ec-slide__products[style*="--n: 7"] .is-mid { width: min(calc(118% / var(--n)), 17rem); }
.ec-slide__product { display: block; }
.ec-slide__product:hover { box-shadow: 0 26px 44px -24px rgba(0, 0, 0, 0.5); }
.ec-slide__product img { width: 100%; height: 100%; object-fit: contain; padding: 12%; mix-blend-mode: multiply; }
.ec-slide__bottles { display: flex; align-items: flex-end; justify-content: center; width: 100%; }
.ec-slide__bottles img {
  width: 17%; height: auto; margin-inline: 0.6%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; background: #fff;
  box-shadow: 0 24px 40px -24px rgba(0, 0, 0, 0.7);
  transform: translateY(20px); transition: transform 0.9s var(--ec-ease); transition-delay: calc(var(--i) * 70ms);
}
.ec-slide__bottles img:nth-child(3) { width: 21%; }
.ec-slide.is-active .ec-slide__bottles img { transform: translateY(calc(var(--i) * 0px)); }
.ec-slide.is-active .ec-slide__bottles img:nth-child(odd) { transform: translateY(-16px); }
.ec-slide__refill, .ec-slide__img { height: auto; max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.ec-slide__refill { mix-blend-mode: multiply; }
.ec-slider__ui { position: absolute; left: 0; right: 0; bottom: 1.6rem; z-index: 3; display: flex; justify-content: center; align-items: center; gap: 1.2rem; pointer-events: none; }
.ec-slider__ui > * { pointer-events: auto; }
/* Wider screens: arrows and dots sit under the slide text, clear of the picture and its caption. */
@media (min-width: 750px) { .ec-slider__ui { justify-content: flex-start; padding-inline: clamp(28px, 4.4vw, 72px); } }
.ec-slider__arrow { display: grid; place-items: center; width: 3.6rem; height: 3.6rem; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.85); color: var(--ec-ink); cursor: pointer; }
.ec-slider__arrow .ec-icon { width: 1.6rem; height: 1.6rem; }
.ec-slider__dots { display: flex; gap: 0.8rem; }
.ec-slider__dots button { width: 0.9rem; height: 0.9rem; padding: 0; border: 0; border-radius: 999px; background: rgba(0, 0, 0, 0.25); cursor: pointer; transition: width 0.3s var(--ec-ease), background 0.3s; }
.ec-slider__dots button[aria-current="true"] { width: 2.6rem; background: var(--ec-ink); }
@media (max-width: 749px) {
  /* Every slide is as tall as the tallest one; the picture takes the spare room, so
     no slide is left with a gap under its button. */
  .ec-slide { grid-template-columns: 1fr; grid-template-rows: minmax(210px, 1fr) auto; align-content: stretch; gap: 1.6rem; text-align: left; padding: 18px 22px 6rem; height: auto; min-height: 0; }
  .ec-slide__visual { order: -1; }
  .ec-slide__eyebrow { margin-bottom: 0.8rem; font-size: 1.1rem; letter-spacing: 0.1em; }
  .ec-slide__title { font-size: 3rem; }
  .ec-slide__text { margin-top: 1rem; font-size: 1.45rem; }
  .ec-slide__btn { margin-top: 1.6rem; }
}

/* ---------- Category circles ---------- */
.ec-circles { list-style: none; margin: 0; padding: 0 0 0.4rem; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(10rem, 1fr); gap: 1.6rem; overflow-x: auto; scrollbar-width: none; }
.ec-circles::-webkit-scrollbar { display: none; }
.ec-circle { display: grid; justify-items: center; gap: 1rem; color: var(--ec-ink); text-decoration: none; text-align: center; }
.ec-circle__img { display: block; width: 100%; max-width: 13rem; aspect-ratio: 1; border-radius: 50%; background: var(--c, var(--ec-soft)); overflow: hidden; transition: transform 0.4s var(--ec-ease), box-shadow 0.4s var(--ec-ease); }
.ec-circle__img img { width: 100%; height: 100%; object-fit: contain; padding: 14%; mix-blend-mode: multiply; }
.ec-circle:hover .ec-circle__img { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.4); }
.ec-circle__label { font-weight: 600; font-size: 1.4rem; line-height: 1.25; }
@media (max-width: 749px) { .ec-circles { grid-auto-columns: 8.8rem; gap: 1.2rem; } .ec-circle__label { font-size: 1.25rem; } }

/* ---------- Promo banners ---------- */
.ec-banners { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: 1.6rem; }
.ec-banner {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: center; gap: 1.6rem;
  --pad-y: 2.8rem; --pad-x: 3.2rem;
  min-height: 22rem; padding: var(--pad-y) var(--pad-x); border-radius: 14px; overflow: hidden;
  background: linear-gradient(120deg, var(--s1), var(--s2)); color: var(--ec-ink); text-decoration: none;
  transition: transform 0.45s var(--ec-ease), box-shadow 0.45s var(--ec-ease);
}
.ec-banner:hover { transform: translateY(-3px); box-shadow: 0 24px 40px -28px rgba(0, 0, 0, 0.5); }
.ec-banner--light { color: #fff; }
.ec-banner__copy { display: grid; gap: 0.8rem; align-content: center; }
.ec-banner__eyebrow { font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.8; }
.ec-banner__title { font-family: var(--ec-display); font-size: clamp(2.6rem, 2.6vw, 3.6rem); line-height: 1.05; }
.ec-banner__text { font-size: 1.45rem; line-height: 1.5; opacity: 0.85; }
.ec-banner__cta { display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 0.8rem; font-weight: 600; font-size: 1.45rem; }
.ec-banner__cta .ec-icon { width: 1.6rem; height: 1.6rem; transition: transform 0.3s var(--ec-ease); }
.ec-banner:hover .ec-banner__cta .ec-icon { transform: translateX(4px); }
.ec-banner__visual { position: relative; display: grid; place-items: center; height: 100%; }
.ec-banner__bottles { display: flex; align-items: flex-end; justify-content: center; width: 100%; }
.ec-banner__bottles img { height: auto; width: 30%; margin-inline: 2%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; background: #fff; box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.7); }
.ec-banner__bottles img:nth-child(2) { width: 36%; transform: translateY(-10px); }
.ec-banner__refill { max-height: 18rem; width: auto; height: auto; mix-blend-mode: multiply; }
.ec-banner__product { height: auto; width: 80%; max-width: 22rem; aspect-ratio: 1; object-fit: contain; padding: 10%; border-radius: 50%; background: #fff; mix-blend-mode: normal; box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.4); }
.ec-banner__img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
@media (max-width: 749px) { .ec-banners { grid-template-columns: 1fr; } .ec-banner { --pad-y: 2.2rem; --pad-x: 2.2rem; min-height: 18rem; } }
/* Buy 2, get 1 free: a live Car Perfume hanging from a cord above the banner. Its view
   reaches the banner's top, right and bottom edges and paints the banner's own gradient
   behind the bottle, so the two blend into one. The round photos show only without 3D. */
.ec-banner__visual--car_perfume { align-self: stretch; margin: calc(-1 * var(--pad-y)) calc(-1 * var(--pad-x)) calc(-1 * var(--pad-y)) 0; }
.ec-banner .ec-banner__stage { position: absolute; inset: 0; background: none; }
.ec-banner__visual--car_perfume .ec-banner__bottles { box-sizing: border-box; padding: var(--pad-y) var(--pad-x) var(--pad-y) 0; }
.ec-banner .ec-banner__stage canvas { transform: none; }
html.cp-gl .ec-banner__visual--car_perfume .ec-banner__bottles { opacity: 0; animation: cp-still-in 0.4s ease 6s forwards; }
.ec-banner__visual--car_perfume:has(.cp-stage.is-live) .ec-banner__bottles { visibility: hidden; animation: none; }
.ec-banner__visual--car_perfume:has(.cp-stage.is-static) .ec-banner__bottles { opacity: 1; animation: none; }
.ec-banner__visual--car_perfume:has(.cp-stage.is-static) .cp-stage { display: none; }

/* ---------- Product cards (retail) ---------- */
.ec-grid > li, .ec-rail__track > li { --card-tint: #fff; }
.ec-card__media { background: #fff; border: 1px solid var(--ec-line); border-radius: 10px; }
.ec-card__media img { mix-blend-mode: normal; }
.ec-card__body { gap: 0.25rem; padding-top: 1.2rem; }
.ec-card__brand { font-family: var(--ec-body); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.06em; color: var(--ec-ink); }
.ec-card__name { font-family: var(--ec-body); font-weight: 400; font-size: 1.45rem; line-height: 1.35; color: var(--ec-ink-2); }
.ec-card__meta { font-size: 1.3rem; color: var(--ec-ink-3); }
.ec-card__price { flex-wrap: wrap; gap: 0.2rem 1rem; margin-top: 0.4rem; font-size: 1.7rem; }
.ec-card__price b { font-weight: 700; }
.ec-card__retail { font-weight: 400; font-size: 1.3rem; color: var(--ec-ink-3); }
.ec-card__retail s { color: inherit; }
.ec-badge { border-radius: 4px; font-family: var(--ec-body); letter-spacing: 0.02em; text-transform: none; font-size: 1.2rem; padding: 0.5rem 0.8rem; }
.ec-badge--sale { background: var(--ec-sale); color: #fff; }
.ec-card__quick { background: var(--ec-ink); color: #fff; border-color: var(--ec-ink); }

/* Rails: flush with the page grid, no giant headings */
.ec-rail__track { grid-auto-columns: clamp(170px, 18vw, 236px); gap: 1.6rem; }
.ec-round { width: 3.8rem; height: 3.8rem; }

/* ---------- Brands: tidy logo grid ---------- */
.ec-brands__grid { border: 0; gap: 1.2rem; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.ec-brand, [data-bg]:not([data-bg="none"]) .ec-brand { aspect-ratio: 16 / 10; border: 1px solid var(--ec-line); border-radius: 10px; background: #fff; }
.ec-brand:hover, [data-bg]:not([data-bg="none"]) .ec-brand:hover { background: #fff; border-color: var(--ec-ink); }
.ec-brand__logo { max-height: 64px; filter: none; opacity: 1; }
.ec-brand__label { display: none; }
.ec-brand__name { font-family: var(--ec-body); font-weight: 600; font-size: 1.6rem; }

/* ---------- Promises: one slim strip ---------- */
.ec-trust__grid { gap: 1.6rem; padding: 2rem 2.4rem; border: 1px solid var(--ec-line); border-radius: 12px; background: var(--ec-soft); }
.ec-trust__item { grid-template-columns: auto minmax(0, 1fr); column-gap: 1.2rem; row-gap: 0.2rem; padding-top: 0; border-top: 0; align-items: start; }
.ec-trust__item .ec-icon { grid-row: span 3; width: 2.8rem; height: 2.8rem; }
.ec-trust__item h3 { font-family: var(--ec-body); font-weight: 600; font-size: 1.5rem; }
.ec-trust__item p { font-size: 1.35rem; line-height: 1.45; }
.ec-trust__item .ec-link { font-size: 1.3rem; }
@media (max-width: 989px) { .ec-trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 549px) { .ec-trust__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ: quieter ---------- */
/* Heading beside the questions on wide screens; above them, full width, on phones and
   tablets (a narrow heading column broke the words apart). */
@media (min-width: 900px) { .ec-faq__grid { grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); } }
@media (max-width: 899px) {
  .ec-faq__grid { gap: 1.6rem; }
  .ec-faq__grid h2 { overflow-wrap: normal; hyphens: manual; }
}
.ec-acc summary { font-family: var(--ec-body); font-weight: 600; font-size: 1.6rem; }

/* ---------- Collection page: sidebar filters on desktop ---------- */
.ec-coll-hero { padding-block: 2.4rem 1.6rem; }
.ec-coll-hero .ec-display { font-family: var(--ec-body); font-weight: 700; font-size: clamp(2.6rem, 2.6vw, 3.6rem); letter-spacing: -0.01em; }
.ec-coll-hero__desc { font-size: 1.45rem; }
@media (min-width: 990px) {
  .ec-coll-layout.has-filters { display: grid; grid-template-columns: 25rem minmax(0, 1fr); gap: 3.2rem; align-items: start; }
  .ec-coll-side { position: sticky; top: calc(var(--ec-top) + 1.6rem); max-height: calc(100vh - var(--ec-top) - 3.2rem); overflow-y: auto; scrollbar-width: thin; }
  .ec-coll-side .ec-filters { position: static; visibility: visible; z-index: auto; display: block; }
  .ec-coll-side .ec-filters__scrim, .ec-coll-side .ec-filters__foot, .ec-coll-side .ec-filters__head .ec-icon-btn { display: none; }
  .ec-coll-side .ec-filters__panel { position: static; transform: none; width: auto; height: auto; max-width: none; box-shadow: none; background: none; display: block; }
  .ec-coll-side .ec-filters__head { padding: 0 0 1.2rem; border-bottom: 1px solid var(--ec-line); }
  .ec-coll-side .ec-filters__head h2 { font-family: var(--ec-body); font-weight: 700; font-size: 1.8rem; }
  .ec-coll-side .ec-filters__body { padding: 0; overflow: visible; }
  .ec-filter-open { display: none; }
  .ec-coll-layout.has-filters .ec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) { .ec-coll-layout.has-filters .ec-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.ec-toolbar { position: static; background: none; border: 0; padding: 0 0 1.6rem; }
.ec-facet summary { font-family: var(--ec-body); font-weight: 600; font-size: 1.5rem; text-transform: none; letter-spacing: 0; }

/* ---------- Product page ---------- */
.ec-pdp__name { font-family: var(--ec-body); font-weight: 600; font-size: clamp(2.6rem, 2.4vw, 3.4rem); line-height: 1.2; }
.ec-pdp__brand { font-weight: 700; letter-spacing: 0.06em; }
.ec-pdp__price { font-family: var(--ec-body); font-weight: 700; }
.ec-pdp__price s { font-weight: 400; }
.ec-gallery__main { background: #fff; border: 1px solid var(--ec-line); border-radius: 12px; }
.ec-gallery__main img { mix-blend-mode: normal; }

/* ---------- Car Perfume pages keep their look, on white ---------- */
.cp-builder__view .cp-stage { background: var(--ec-soft); }
.ec-hero .cp-stage { background: var(--ec-paper); }

/* ---------- Footer ---------- */
.ec-footer { background: var(--ec-ink); }

/* ---------- Scroll animations: staggered lists ---------- */
html.ec-anim :is(.ec-circles, .ec-rail__track, .ec-grid, .ec-brands__grid, .ec-trust__grid, .ec-banners) > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ec-ease), transform 0.9s var(--ec-ease);
  transition-delay: calc(var(--si, 0) * 70ms);
}
html.ec-anim :is(.ec-circles, .ec-rail__track, .ec-grid, .ec-brands__grid, .ec-trust__grid, .ec-banners).is-in > * { opacity: 1; transform: none; }
html.ec-anim .ec-circles > * { transform: translateY(20px) scale(0.92); }
html.ec-anim .ec-circles.is-in > * { transform: none; }
html.ec-anim .ec-banners > *:nth-child(even) { transform: translateX(30px); }
html.ec-anim .ec-banners.is-in > * { transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.ec-anim :is(.ec-circles, .ec-rail__track, .ec-grid, .ec-brands__grid, .ec-trust__grid, .ec-banners) > * { opacity: 1; transform: none; transition: none; }
}
/* Header tightens once you scroll */
.ec-header__inner { transition: height 0.35s var(--ec-ease); }
@media (min-width: 990px) {
  .ec-header.is-scrolled .ec-header__inner { height: 64px; }
  .ec-header.is-scrolled .ec-logo__word { font-size: 2.4rem; }
}
.ec-logo__word { transition: font-size 0.35s var(--ec-ease); }

/* ---------- Sale pricing: quiet and clean ---------- */
:root { --ec-save: #a3243b; }
.ec-card__price { align-items: baseline; gap: 0.2rem 0.8rem; }
.ec-card__price b { font-weight: 600; }
.ec-card__price s { font-size: 1.35rem; font-weight: 400; color: var(--ec-ink-3); text-decoration-thickness: 1px; }
.ec-card__off { font-size: 1.3rem; font-weight: 600; color: var(--ec-save); letter-spacing: 0.01em; }
.ec-pdp__price s { font-size: 2rem; color: var(--ec-ink-3); text-decoration-thickness: 1px; }
.ec-pdp__save { margin: -1rem 0 0; font-size: 1.45rem; color: var(--ec-save); font-weight: 500; }

/* ---------- More scroll animation ---------- */
/* Word-by-word titles */
.ec-w { display: inline-block; overflow: clip; overflow-clip-margin: 0.12em; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.ec-w > span { display: inline-block; }
html.ec-anim [data-reveal] .ec-w > span { transform: translateY(105%); transition: transform 0.9s var(--ec-ease); transition-delay: calc(var(--wi, 0) * 55ms + 0.05s); }
html.ec-anim [data-reveal].is-in .ec-w > span { transform: none; }
html.ec-anim .ec-head[data-reveal] { opacity: 1; transform: none; }
.ec-slide .ec-w > span { transform: translateY(105%); transition: transform 0.9s var(--ec-ease); transition-delay: calc(var(--wi, 0) * 60ms + 0.1s); }
.ec-slide.is-active .ec-w > span { transform: none; }
.ec-slide__copy > .ec-slide__title { opacity: 1; transform: none; }
html.ec-anim .ec-banners > * .ec-w > span { transform: translateY(105%); transition: transform 0.9s var(--ec-ease); transition-delay: calc(var(--si, 0) * 90ms + var(--wi, 0) * 50ms + 0.25s); }
html.ec-anim .ec-banners.is-in > * .ec-w > span { transform: none; }

/* Banners wipe open, their visuals settle */
html.ec-anim .ec-banners > * { clip-path: inset(0 0 100% 0 round 14px); opacity: 1; transform: none; transition: clip-path 1.1s var(--ec-ease); transition-delay: calc(var(--si, 0) * 120ms); }
html.ec-anim .ec-banners.is-in > * { clip-path: inset(0 0 0 0 round 14px); }
html.ec-anim .ec-banners > * .ec-banner__visual > * { transform: scale(1.18); transition: transform 1.4s var(--ec-ease); transition-delay: calc(var(--si, 0) * 120ms); }
html.ec-anim .ec-banners.is-in > * .ec-banner__visual > * { transform: none; }
html.ec-anim .ec-banners > * .ec-banner__visual--car_perfume > * { transform: none; }

/* Product photos settle as their row arrives */
html.ec-anim :is(.ec-grid, .ec-rail__track) > * .ec-card__media img:first-child { transform: scale(1.14); transition: transform 1.2s var(--ec-ease), opacity 0.5s var(--ec-ease); transition-delay: calc(var(--si, 0) * 70ms); }
html.ec-anim :is(.ec-grid, .ec-rail__track).is-in > * .ec-card__media img:first-child { transform: none; }
html.ec-anim :is(.ec-grid, .ec-rail__track).is-in > * .ec-card:hover .ec-card__media img:first-child { transform: scale(1.05); }

/* Promise icons pop in */
html.ec-anim .ec-trust__grid > * .ec-icon { transform: scale(0.4) rotate(-25deg); opacity: 0; transition: transform 0.8s cubic-bezier(0.3, 1.6, 0.5, 1), opacity 0.4s; transition-delay: calc(var(--si, 0) * 90ms + 0.2s); }
html.ec-anim .ec-trust__grid.is-in > * .ec-icon { transform: none; opacity: 1; }

/* Brand grid gets depth for the tilt */
.ec-brands__grid { perspective: 900px; }

/* Scroll progress line */
.ec-progress { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; height: 2px; background: linear-gradient(90deg, var(--ec-accent), #e0679b, #f2b23d); transform: scaleX(0); transform-origin: left; pointer-events: none; }
.ec-header { position: relative; }

@media (prefers-reduced-motion: reduce) {
  html.ec-anim .ec-w > span, .ec-slide .ec-w > span { transform: none; transition: none; }
  html.ec-anim .ec-banners > * { clip-path: none; }
  html.ec-anim .ec-banners > * .ec-banner__visual > *, html.ec-anim :is(.ec-grid, .ec-rail__track) > * .ec-card__media img:first-child, html.ec-anim .ec-trust__grid > * .ec-icon { transform: none; opacity: 1; }
  .ec-progress { display: none; }
}
/* Brand tiles are moved by the scroll-linked tilt; only fade them here */
html.ec-anim .ec-brands__grid > * { transform: none; transition: opacity 0.7s var(--ec-ease); transition-delay: calc(var(--si, 0) * 50ms); }

/* =====================================================================
   Cleaner pass
   ===================================================================== */

/* Announcement: one centered message at a time */
.ec-announce { position: relative; height: 3.6rem; overflow: hidden; font-family: var(--ec-body); text-transform: none; letter-spacing: 0.02em; font-size: 1.3rem; font-weight: 500; }
.ec-announce__msgs { position: relative; height: 100%; }
.ec-announce__msg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 var(--ec-gutter);
  color: inherit; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transform: translateY(8px); transition: opacity 0.6s var(--ec-ease), transform 0.6s var(--ec-ease);
}
.ec-announce__msg.is-on { opacity: 1; transform: none; }
a.ec-announce__msg:hover { text-decoration: underline; text-underline-offset: 3px; }
.ec-announce__msg::after { content: none; }

/* Category bar: no chevrons unless you're using the keyboard */
.ec-cat__toggle { width: 0; margin-left: -0.2rem; opacity: 0; overflow: hidden; }
.ec-cat__toggle:focus-visible { width: 2.2rem; opacity: 1; }
.ec-cats { gap: clamp(1.6rem, 2.8vw, 4.4rem); }

/* Product tiles: soft gray, no borders */
.ec-card__media { border: 0; background: #f5f4f1; border-radius: 12px; }
.ec-card__media img { mix-blend-mode: multiply; }
.ec-card__body { padding-top: 1.4rem; }
.ec-grid, .ec-rail__track { row-gap: 3.2rem; }

/* Banners: plain titles, every visual in a white circle */
.ec-banner__eyebrow { display: none; }
.ec-banner__title { font-family: var(--ec-body); font-weight: 600; font-size: clamp(2.2rem, 2vw, 2.8rem); line-height: 1.15; letter-spacing: -0.01em; }
.ec-banner__title em { font-style: normal; }
.ec-circle-visual { display: grid; place-items: center; width: min(80%, 20rem); aspect-ratio: 1; border-radius: 50%; background: #fff; box-shadow: 0 16px 30px -20px rgba(0, 0, 0, 0.4); overflow: hidden; }
.ec-circle-visual img { width: 100%; height: 100%; max-height: none; object-fit: contain; padding: 10%; mix-blend-mode: multiply; }
.ec-banner__refill, .ec-slide__refill { max-height: none; }
.ec-slide__visual--refill .ec-circle-visual { width: min(70%, 28rem); }

/* Swinging Car Perfume in the slider */
.ec-slide__visual--car_perfume_3d { align-self: stretch; height: auto; margin-block: calc(-1 * clamp(24px, 3.6vw, 56px)) -7.2rem; } /* top to bottom of the slide, so the bottle hangs on a long cord */
.ec-slide__rig { position: relative; width: 100%; height: 100%; }
.ec-slide__rig .ec-mirror-wrap { width: min(250px, 70%); }
.ec-slide__rig .ec-mirror-stem { height: 26px; }
.ec-slide__stage { position: absolute; inset: 58px 0 0 0; }
.ec-slide__stage .cp-stage__fallback { object-fit: contain; }
@media (max-width: 749px) {
  .ec-slide:has(.ec-slide__visual--car_perfume_3d) { grid-template-rows: minmax(330px, 1fr) auto; }
  .ec-slide__visual--car_perfume_3d { margin-block: -18px 0; }
}

/* =====================================================================
   One width: every section shares the same left and right edges
   ===================================================================== */
body { overflow-x: clip; }
/* Product rows sit inside the page grid and show a whole number of cards. */
.ec-rail { --rail-n: 6; --rail-gap: 1.6rem; }
.ec-rail__track {
  padding-inline: 0;
  scroll-padding-inline: 0;
  gap: 3.2rem var(--rail-gap);
  grid-auto-columns: calc((100% - (var(--rail-n) - 1) * var(--rail-gap)) / var(--rail-n));
}
@media (max-width: 1099px) { .ec-rail { --rail-n: 4; } }
@media (max-width: 749px) {
  /* On phones the row may run to the screen edge so it reads as swipeable. */
  .ec-rail { --rail-gap: 1.2rem; margin-inline: calc(var(--ec-gutter) * -1); }
  .ec-rail__track { padding-inline: var(--ec-gutter); scroll-padding-inline: var(--ec-gutter); grid-auto-columns: 44%; }
}
.ec-brands__grid { perspective: none; }

/* =====================================================================
   Trust panel (dark, boxed at the page width)
   ===================================================================== */
.ec-tpanel {
  background: var(--tp-bg, #454a57);
  color: var(--tp-ink, #fff);
  border-radius: 12px;
  padding: clamp(40px, 5.5vw, 72px) clamp(20px, 5vw, 80px);
}
.ec-tpanel__top { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 40px); margin-bottom: clamp(36px, 4.5vw, 60px); }
.ec-seal { flex: none; width: clamp(88px, 8.5vw, 118px); height: auto; color: inherit; }
.ec-seal text { font-family: var(--ec-body); letter-spacing: 0.08em; }
.ec-tpanel__title { margin: 0; font-family: var(--ec-body); font-weight: 700; font-size: clamp(2.4rem, 2.5vw, 3.6rem); line-height: 1.15; letter-spacing: -0.01em; color: inherit; }
.ec-tpanel__facts { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0; margin: 1rem 0 0; font-size: 1.6rem; line-height: 1.4; }
.ec-tpanel__facts span + span::before { content: ""; display: inline-block; width: 1px; height: 1.1em; margin: 0 1.4rem; vertical-align: -0.15em; background: currentColor; opacity: 0.45; }
.ec-tpanel__facts strong { font-weight: 700; }
.ec-tpanel__grid { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 3.6rem clamp(24px, 3vw, 48px); text-align: center; }
.ec-tpanel__item .ec-icon { display: block; width: 3.4rem; height: 3.4rem; margin: 0 auto 1.4rem; }
.ec-tpanel__item h3 { margin: 0 0 0.8rem; font-family: var(--ec-body); font-weight: 700; font-size: 1.8rem; letter-spacing: 0; color: inherit; }
.ec-tpanel__item p { margin: 0 auto; max-width: 34ch; font-size: 1.5rem; line-height: 1.55; opacity: 0.88; }
.ec-tpanel__item a { color: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 899px) { .ec-tpanel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) {
  .ec-tpanel__top { flex-direction: column; text-align: center; }
  .ec-tpanel__facts { justify-content: center; }
  .ec-tpanel__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Featured brands for Men / Women
   ===================================================================== */
.ec-fbrands { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: 5.6rem clamp(24px, 4vw, 64px); }
.ec-fbrands__col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ec-fbrands__img { display: grid; place-items: center; width: 11.2rem; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #f5f4f1; color: var(--ec-ink); }
.ec-fbrands__img img { width: 100%; height: 100%; object-fit: contain; padding: 14%; mix-blend-mode: multiply; }
.ec-fbrands__img img.is-cover { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.ec-fbrands__img .ec-icon { width: 4rem; height: 4rem; }
.ec-fbrands__title { margin: 2.2rem 0 2.4rem; font-family: var(--ec-body); font-weight: 700; font-size: clamp(2.2rem, 2vw, 2.8rem); letter-spacing: -0.01em; }
.ec-fbrands__pills { list-style: none; margin: 0 0 3.2rem; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 0.8rem; }
.ec-pill {
  display: inline-flex; align-items: center; gap: 0.3rem; min-height: 4.4rem; padding: 0 1.2rem 0 1.5rem;
  border: 1px solid var(--ec-line); border-radius: 6px; background: #fff; color: var(--ec-ink);
  font-family: var(--ec-body); font-weight: 600; font-size: 1.55rem; text-decoration: none; white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ec-ease);
}
.ec-pill .ec-icon { width: 1.5rem; height: 1.5rem; stroke-width: 2; transition: transform 0.2s var(--ec-ease); }
.ec-pill:hover { border-color: var(--ec-ink); box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.35); }
.ec-pill:hover .ec-icon { transform: translateX(2px); }
.ec-fbrands__btn { margin-top: auto; }
@media (max-width: 749px) {
  .ec-fbrands { grid-template-columns: 1fr; }
  .ec-pill { min-height: 4rem; font-size: 1.45rem; }
}

/* =====================================================================
   Filters (Jomashop-style sidebar)
   ===================================================================== */
.ec-filters__head h2, .ec-coll-side .ec-filters__head h2 { font-family: var(--ec-body); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.01em; }
.ec-coll-side .ec-filters__head { padding: 0 0 1.8rem; }
.ec-facet { border-bottom: 1px solid var(--ec-line); }
.ec-facet summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 2rem 0; font-family: var(--ec-body); font-weight: 700; font-size: 1.6rem; letter-spacing: 0; text-transform: none; cursor: pointer; list-style: none; }
.ec-facet summary::after { content: none; }
.ec-facet__pm { display: grid; flex: none; }
.ec-facet__pm .ec-icon { grid-area: 1 / 1; width: 2rem; height: 2rem; stroke-width: 1.4; color: var(--ec-ink-2); transition: opacity 0.2s, transform 0.3s var(--ec-ease); }
.ec-facet__pm .ec-icon:last-child, .ec-facet[open] .ec-facet__pm .ec-icon:first-child { opacity: 0; transform: rotate(-90deg); }
.ec-facet[open] .ec-facet__pm .ec-icon:last-child { opacity: 1; transform: none; }
.ec-facet__body { padding: 0 0 2rem; }
.ec-facet__search { position: relative; margin-bottom: 1.4rem; }
.ec-facet__search .ec-icon { position: absolute; left: 1.3rem; top: 50%; width: 2rem; height: 2rem; transform: translateY(-50%); color: var(--ec-ink-2); pointer-events: none; }
.ec-facet__search input { width: 100%; height: 4.6rem; padding: 0 1.2rem 0 4.2rem; border: 1px solid transparent; border-radius: 8px; background: #f3f3f3; font: inherit; font-size: 1.55rem; color: var(--ec-ink); }
.ec-facet__search input:focus { outline: none; border-color: var(--ec-ink); background: #fff; }
.ec-facet__search input::-webkit-search-cancel-button { cursor: pointer; }
.ec-az { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.6rem; margin-bottom: 1.4rem; }
.ec-az button {
  display: grid; place-items: center; aspect-ratio: 1; width: 100%; max-width: 4.4rem; padding: 0; justify-self: center;
  border: 1px solid var(--ec-ink); border-radius: 50%; background: #fff; color: var(--ec-ink);
  font-family: var(--ec-body); font-size: 1.35rem; font-weight: 500; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.ec-az button:hover:not([disabled]), .ec-az button[aria-pressed="true"] { background: var(--ec-ink); color: #fff; }
.ec-az button[disabled] { border-color: #e2e2e2; color: #c6c6c6; cursor: default; }
.ec-facet__list { max-height: none; overflow: visible; padding: 0; gap: 0; }
.ec-facet__list:not(.is-all):not(.is-filtering) > li:nth-child(n + 8):not(.is-on) { display: none; }
.ec-facet__list.is-all, .ec-facet__list.is-filtering { max-height: 38rem; overflow-y: auto; scrollbar-width: thin; }
.ec-facet__list > li[hidden] { display: none; }
.ec-check { gap: 1.2rem; padding: 0.7rem 0; font-size: 1.55rem; line-height: 1.3; }
.ec-check input { flex: none; width: 2rem; height: 2rem; border-radius: 3px; accent-color: var(--ec-ink); }
.ec-check small { font-size: 1.25rem; }
.ec-facet__more { margin-top: 0.8rem; padding: 0; border: 0; background: none; color: var(--ec-ink); font: inherit; font-weight: 700; font-size: 1.45rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.ec-facet__none { margin: 0.6rem 0 0; color: var(--ec-ink-3); font-size: 1.4rem; }
.ec-facet__apply { width: 100%; margin-top: 1.2rem; }
.ec-price-range { padding-bottom: 0; }
@media (min-width: 990px) {
  .ec-coll-layout.has-filters { grid-template-columns: 28rem minmax(0, 1fr); gap: 4rem; }
}

/* =====================================================================
   Info and policy pages: one layout for all of them
   ===================================================================== */
.ec-page { padding-top: clamp(20px, 2.4vw, 32px); padding-bottom: clamp(56px, 8vh, 96px); }
.ec-page__layout { display: grid; grid-template-columns: 26rem minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; margin-top: clamp(20px, 2.4vw, 32px); }
.ec-page__side { position: sticky; top: calc(var(--ec-top, 120px) + 2rem); display: grid; gap: 2.8rem; padding: 2.4rem; border: 1px solid var(--ec-line); border-radius: 12px; background: #fff; }
.ec-page__group-title { margin: 0 0 1rem; font-family: var(--ec-body); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ec-ink-3, #77787c); }
.ec-page__group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.2rem; }
.ec-page__group a { display: block; padding: 0.7rem 1.2rem; margin-inline: -1.2rem; border-radius: 6px; color: var(--ec-ink-2); font-size: 1.5rem; text-decoration: none; transition: background 0.2s, color 0.2s; }
.ec-page__group a:hover { background: var(--ec-soft); color: var(--ec-ink); }
.ec-page__group a.is-here { background: var(--ec-ink); color: #fff; font-weight: 600; }
.ec-page__main { min-width: 0; max-width: 78rem; }
.ec-page__title { margin: 0 0 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--ec-line); font-family: var(--ec-body); font-weight: 700; font-size: clamp(3rem, 3.2vw, 4.2rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--ec-ink); }

/* Page text (also used by Shopify's built-in policy pages) */
.ec-prose, .shopify-policy__body .rte { font-size: 1.6rem; line-height: 1.75; color: var(--ec-ink-2); }
.ec-prose > :first-child { margin-top: 0; }
.ec-prose > p:first-child { font-size: 1.8rem; line-height: 1.6; color: var(--ec-ink); }
.ec-prose :is(h2, h3, h4), .shopify-policy__body :is(h2, h3, h4) { font-family: var(--ec-body); color: var(--ec-ink); letter-spacing: -0.01em; line-height: 1.3; }
.ec-prose h2, .shopify-policy__body h2 { margin: 4rem 0 1.2rem; font-size: 2.2rem; font-weight: 700; }
.ec-prose h3, .shopify-policy__body h3 { margin: 3rem 0 0.8rem; font-size: 1.8rem; font-weight: 700; }
.ec-prose h4 { margin: 2.4rem 0 0.6rem; font-size: 1.6rem; font-weight: 700; }
.ec-prose p { margin: 0 0 1.4rem; }
.ec-prose ul, .ec-prose ol { margin: 0 0 1.8rem; padding-left: 0; list-style: none; display: grid; gap: 0.8rem; }
.ec-prose ul > li { position: relative; padding-left: 2.2rem; }
.ec-prose ul > li::before { content: ""; position: absolute; left: 0.3rem; top: 0.72em; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--ec-accent, #6b3fd0); }
.ec-prose ol { counter-reset: ec-ol; }
.ec-prose ol > li { position: relative; padding-left: 3rem; counter-increment: ec-ol; }
.ec-prose ol > li::before { content: counter(ec-ol); position: absolute; left: 0; top: 0.15em; display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--ec-soft); color: var(--ec-ink); font-size: 1.2rem; font-weight: 700; }
.ec-prose li > p { margin: 0; }
.ec-prose strong { color: var(--ec-ink); font-weight: 600; }
.ec-prose a, .shopify-policy__body a { color: var(--ec-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.ec-prose hr { margin: 3.2rem 0; border: 0; border-top: 1px solid var(--ec-line); }
.ec-prose table, .shopify-policy__body table { width: 100%; margin: 0 0 2rem; border-collapse: collapse; font-size: 1.45rem; }
.ec-prose :is(th, td), .shopify-policy__body :is(th, td) { padding: 1.2rem; border: 1px solid var(--ec-line); text-align: left; vertical-align: top; }
.ec-prose th, .shopify-policy__body th { background: var(--ec-soft); color: var(--ec-ink); }
.ec-prose .ec-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.2rem; margin: 2.4rem 0; }
.ec-prose .ec-facts > li { padding: 1.8rem; border-radius: 10px; background: var(--ec-soft); }
.ec-prose .ec-facts > li::before { content: none; }

.ec-page__help { display: flex; align-items: center; gap: 1.8rem; margin-top: 4.8rem; padding: 2.4rem; border-radius: 12px; background: var(--ec-soft); }
.ec-page__help > .ec-icon { flex: none; width: 3.2rem; height: 3.2rem; }
.ec-page__help h2 { margin: 0 0 0.3rem; font-family: var(--ec-body); font-weight: 700; font-size: 1.8rem; }
.ec-page__help p { margin: 0; color: var(--ec-ink-2); font-size: 1.5rem; }
.ec-page__help a:not(.ec-btn) { color: var(--ec-ink); font-weight: 600; }
.ec-page__help .ec-btn { margin-left: auto; flex: none; }

.ec-page__form { margin-top: 4rem; padding-top: 3.2rem; border-top: 1px solid var(--ec-line); }
.ec-page__form h2 { margin: 0 0 2rem; font-family: var(--ec-body); font-weight: 700; font-size: 2.2rem; }
.ec-page__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; margin-bottom: 2rem; }
.ec-page__fields label { display: grid; gap: 0.6rem; }
.ec-page__fields .is-wide { grid-column: 1 / -1; }
.ec-page__fields textarea { min-height: 16rem; padding-top: 1.2rem; resize: vertical; }
.ec-page__fields abbr { text-decoration: none; color: var(--ec-sale, #cf2e2e); }
.ec-page__notice { display: flex; align-items: center; gap: 1rem; margin: 0 0 2rem; padding: 1.4rem 1.6rem; border-radius: 8px; font-size: 1.5rem; }
.ec-page__notice.is-ok { background: #e9f4ec; color: #1d5b31; }
.ec-page__notice.is-error { background: #fbeaea; color: #8a1f1f; }
.ec-page__notice ul { margin: 0; padding-left: 1.8rem; }

/* Shopify's built-in policy pages (/policies/...) get the same look */
.shopify-policy__container { max-width: 78rem; margin: 0 auto; padding: clamp(32px, 4vw, 56px) var(--ec-gutter) clamp(56px, 8vh, 96px); }
.shopify-policy__title h1 { margin: 0 0 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--ec-line); font-family: var(--ec-body); font-weight: 700; font-size: clamp(3rem, 3.2vw, 4.2rem); line-height: 1.1; letter-spacing: -0.02em; text-align: left; }

@media (max-width: 989px) {
  .ec-page__layout { grid-template-columns: 1fr; }
  .ec-page__side { position: static; order: 2; grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); }
}
@media (max-width: 599px) {
  .ec-page__fields { grid-template-columns: 1fr; }
  .ec-page__help { flex-wrap: wrap; }
  .ec-page__help .ec-btn { margin-left: 0; }
}

/* Brand logos stay big enough to read on smaller screens */
@media (max-width: 1099px) { .ec-brands__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 749px) {
  .ec-brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .ec-brand, [data-bg]:not([data-bg="none"]) .ec-brand { aspect-ratio: 2 / 1; }
  .ec-brand__logo { max-width: 80%; max-height: 60px; }
  .ec-brand__name { font-size: 1.7rem; }
}

/* Cart lines: brand label, short name on one or two lines */
.cart-item__name { display: block; font-family: var(--ec-body); font-weight: 600; font-size: 1.5rem; line-height: 1.3; letter-spacing: 0; color: var(--ec-ink); }
.cart-item__brand { display: block; margin-bottom: 0.3rem; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ec-ink-3); }
.cart-item .product-option { font-size: 1.3rem; }
.cart-item .product-option dt, .cart-item .product-option dd { display: inline; margin: 0; }
.cart-item .product-option dt { color: var(--ec-ink-3); }
.cart-drawer .cart-item__image { object-fit: contain; }

/* 3D bottles: fade the live view in first, then let the still image go, so there's never a gap */
.cp-stage canvas { transition: opacity 0.5s var(--ec-ease); }
.cp-stage__fallback { transition: opacity 0.4s var(--ec-ease) 0.35s; }
/* With WebGL the still photo stays hidden (it's framed differently), and the bottle fades
   and settles into place once the 3D view is ready. The photo only shows if 3D fails,
   or as a last resort if the view still isn't live after a few seconds. */
html.cp-gl .cp-stage:not(.is-live):not(.is-static) .cp-stage__fallback { opacity: 0; animation: cp-still-in 0.4s ease 6s forwards; }
@keyframes cp-still-in { to { opacity: 1; } }
.cp-stage canvas { transform: translateY(10px) scale(0.98); transition: opacity 0.6s var(--ec-ease), transform 0.9s var(--ec-ease); }
.cp-stage.is-live canvas { transform: none; }
@media (prefers-reduced-motion: reduce) { .cp-stage canvas { transform: none; } }

/* Category bar: the current category stays readable (it used to turn white from the old dark bar) */
.ec-cat__link[aria-current="page"] { color: var(--ec-ink); }
.ec-cat.is-featured .ec-cat__link[aria-current="page"] { color: var(--ec-accent); }

/* Refill animation */
.cp-refills__visual { background: var(--ec-paper, #fff); }
.cp-refill-stage { position: absolute; inset: 0; background: #fff; }
.cp-refill-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transform: translateY(10px); transition: opacity 0.6s var(--ec-ease), transform 0.9s var(--ec-ease); }
.cp-refill-stage.is-live canvas { opacity: 1; transform: none; }
.cp-refills__visual .cp-refill-stage__still { transition: opacity 0.4s var(--ec-ease) 0.35s; }
.cp-refill-stage.is-live .cp-refill-stage__still { opacity: 0; }
html.cp-gl .cp-refill-stage:not(.is-live):not(.is-static) .cp-refill-stage__still { opacity: 0; animation: cp-still-in 0.4s ease 6s forwards; }
.cp-refill-stage__replay {
  position: absolute; right: 1.4rem; bottom: 1.4rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 3.8rem; padding: 0 1.4rem; border: 1px solid var(--ec-line); border-radius: 999px; background: rgba(255, 255, 255, 0.92);
  color: var(--ec-ink); font: 600 1.3rem/1 var(--ec-body); cursor: pointer; opacity: 1; transition: opacity 0.3s, border-color 0.2s;
}
.cp-refill-stage__replay .ec-icon { width: 1.6rem; height: 1.6rem; }
.cp-refill-stage__replay:hover { border-color: var(--ec-ink); }
.cp-refill-stage.is-playing .cp-refill-stage__replay { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .cp-refill-stage canvas { transform: none; } }

/* Filters built from links (when the store has no Shopify filters set up) */
.ec-filters__foot.is-links { display: none; }
.ec-facet__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.2rem; }
.ec-radio, .ec-facet__list--links .ec-check { display: flex; align-items: center; gap: 1.2rem; padding: 0.7rem 0; color: var(--ec-ink); font-size: 1.55rem; line-height: 1.3; text-decoration: none; }
.ec-radio > span { flex: none; width: 2rem; height: 2rem; border: 1.5px solid var(--ec-ink-3); border-radius: 50%; transition: border-color 0.2s, box-shadow 0.2s; }
.ec-radio:hover > span, .ec-facet__list--links .ec-check:hover .ec-check__box { border-color: var(--ec-ink); }
.ec-radio.is-on > span { border-color: var(--ec-ink); box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 10px var(--ec-ink); }
.ec-check__box { flex: none; width: 2rem; height: 2rem; border: 1.5px solid var(--ec-ink-3); border-radius: 3px; transition: border-color 0.2s, background 0.2s; }
.ec-facet__list--links .is-on .ec-check__box { border-color: var(--ec-ink); background: var(--ec-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 80% no-repeat; }
.ec-facet__list--links .is-on .ec-check { font-weight: 600; }

/* Car Perfume builder: what the chosen scent smells like */
.cp-profile { margin-top: 1.6rem; padding: 1.8rem 2rem; border-radius: 12px; background: var(--ec-soft); }
.cp-profile[hidden] { display: none; }
.cp-profile.is-in { animation: cp-profile-in 0.45s var(--ec-ease); }
@keyframes cp-profile-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.cp-profile__head { display: flex; align-items: baseline; gap: 1rem; margin: 0 0 0.6rem; font-family: var(--ec-body); font-weight: 700; font-size: 1.7rem; color: var(--ec-ink); }
.cp-profile__for { font-weight: 600; font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ec-ink-3); }
.cp-profile__desc { margin: 0 0 1.2rem; font-size: 1.5rem; line-height: 1.55; color: var(--ec-ink-2); }
.cp-profile__notes { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cp-profile__notes li { padding: 0.5rem 1.1rem; border: 1px solid var(--ec-line); border-radius: 999px; background: #fff; font-size: 1.3rem; font-weight: 600; color: var(--ec-ink); }
.cp-profile__life { display: flex; align-items: center; gap: 0.8rem; margin: 1.4rem 0 0; font-size: 1.4rem; font-weight: 600; color: var(--ec-ink); }
.cp-profile__life .ec-icon { width: 1.9rem; height: 1.9rem; }
@media (prefers-reduced-motion: reduce) { .cp-profile.is-in { animation: none; } }

/* Car Perfume 3D: the stage is the same white as the page, and wider than its column on
   desktop so the swinging bottle never touches an edge (it stays centered under the mirror). */
.cp-builder__view, .cp-builder__view .cp-stage, .ec-hero .cp-stage { background: var(--ec-paper); }
@media (min-width: 990px) {
  .ec-hero__rig { z-index: 1; }
  .ec-hero .cp-stage { left: -22%; right: -22%; }
}

/* In-stock first: the line where sold-out products start, the note at the end of the
   in-stock pages, and "Show more" for collections listed in full. */
.ec-grid > .ec-stockline {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin: 1.2rem 0 .4rem; padding: 1.4rem 1.8rem;
  border-radius: 12px; background: var(--ec-soft); color: var(--ec-ink);
  font-size: 1.4rem;
}
.ec-stockline p { margin: 0; flex: 1 1 20rem; }
.ec-stockline svg, .ec-stocknote > svg { width: 2rem; height: 2rem; flex: none; }
.ec-stockline .ec-link { font-weight: 600; }
.ec-stocknote {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 3.2rem; padding: 2rem 2.4rem;
  border: 1px solid var(--ec-line); border-radius: 12px;
}
.ec-stocknote > div { flex: 1 1 26rem; }
.ec-stocknote h2 { margin: 0 0 .3rem; font-family: var(--ec-body); font-size: 1.6rem; font-weight: 700; }
.ec-stocknote p { margin: 0; color: var(--ec-ink-2); font-size: 1.4rem; }
.ec-more { display: flex; justify-content: center; margin-top: 3.2rem; }
.ec-restock { display: flex; align-items: center; gap: .8rem; margin: 1.2rem 0 0; padding: 1.2rem 1.4rem; border-radius: 10px; background: var(--ec-soft); font-size: 1.4rem; color: var(--ec-ink); }
.ec-restock[hidden] { display: none; }
.ec-restock svg { width: 1.8rem; height: 1.8rem; flex: none; }
.ec-grid > li[hidden] { display: none; }

/* Stars */
.ec-stars { position: relative; display: inline-block; line-height: 1; font-size: 1.6rem; letter-spacing: .12em; white-space: nowrap; }
.ec-stars__bg { color: #dcd9d3; }
.ec-stars__fg { position: absolute; inset: 0 auto 0 0; width: var(--pct, 0%); overflow: hidden; color: #c9982c; }

/* Customer reviews page */
.ec-reviews { padding-bottom: 2rem; }
.ec-reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2.4rem 4rem; padding: 2.4rem 0 3.2rem; border-bottom: 1px solid var(--ec-line); }
.ec-reviews__head h1 { margin: 0; }
.ec-reviews__intro { margin: .8rem 0 0; max-width: 46rem; color: var(--ec-ink-2); font-size: 1.6rem; }
.ec-reviews__summary { display: flex; flex-wrap: wrap; align-items: center; gap: 2.4rem 3.2rem; }
.ec-reviews__score { display: grid; justify-items: start; gap: .6rem; }
.ec-reviews__score strong { font-family: var(--ec-display); font-size: 5.6rem; font-weight: 400; line-height: .9; }
.ec-reviews__score .ec-stars { font-size: 2rem; }
.ec-reviews__score > span:last-child { color: var(--ec-ink-2); font-size: 1.3rem; }
.ec-reviews__bars { display: grid; gap: .5rem; min-width: 24rem; margin: 0; padding: 0; font-size: 1.3rem; }
.ec-reviews__bars li { display: grid; grid-template-columns: 3.2rem 1fr 3rem; align-items: center; gap: 1rem; }
.ec-reviews__bars li span:last-child { text-align: right; color: var(--ec-ink-2); }
.ec-reviews__bar { height: 6px; border-radius: 99px; background: var(--ec-soft); overflow: hidden; }
.ec-reviews__bar i { display: block; height: 100%; background: #c9982c; border-radius: inherit; }
.ec-reviews__tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; margin: 2.4rem 0; }
.ec-reviews__chips { display: flex; flex-wrap: wrap; gap: .8rem; }
.ec-reviews__chips .ec-pill { display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; }
.ec-reviews__chips .ec-pill svg { width: 1.6rem; height: 1.6rem; }
.ec-reviews__chips .ec-pill.is-on { background: var(--ec-ink); color: #fff; border-color: var(--ec-ink); }
.ec-reviews__grid { columns: 3 30rem; column-gap: 2rem; margin: 0; padding: 0; list-style: none; }
.ec-review { break-inside: avoid; margin: 0 0 2rem; border: 1px solid var(--ec-line); border-radius: 14px; overflow: hidden; background: #fff; }
.ec-review[hidden] { display: none; }
.ec-review__photo img { display: block; width: 100%; height: auto; }
.ec-review__body { padding: 1.8rem 2rem 2rem; }
.ec-review__text { margin: 1rem 0 1.4rem; font-size: 1.5rem; line-height: 1.6; color: var(--ec-ink); }
.ec-review__text p { margin: 0 0 .8rem; }
.ec-review__by { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1rem; margin: 0; font-size: 1.4rem; }
.ec-review__verified { display: inline-flex; align-items: center; gap: .3rem; color: #2f7a4b; font-size: 1.2rem; font-weight: 600; }
.ec-review__verified svg { width: 1.4rem; height: 1.4rem; }
.ec-review__date { margin: .4rem 0 0; color: var(--ec-ink-3); font-size: 1.2rem; }
.ec-reviews__empty svg { width: 3.2rem; height: 3.2rem; color: #c9982c; }
.ec-reviews__app { margin-top: 3.2rem; }
.ec-reviews__form { margin-top: 4.8rem; }
.ec-reviews__form-text { color: var(--ec-ink-2); }
.ec-rate { border: 0; margin: 0 0 1.6rem; padding: 0; }
.ec-rate__stars { display: inline-flex; flex-direction: row-reverse; gap: .2rem; }
.ec-rate__stars input { position: absolute; opacity: 0; pointer-events: none; }
.ec-rate__stars label { font-size: 3rem; line-height: 1; color: #dcd9d3; cursor: pointer; transition: color .15s; }
.ec-rate__stars input:checked ~ label, .ec-rate__stars label:hover, .ec-rate__stars label:hover ~ label { color: #c9982c; }
.ec-rate__stars input:focus-visible + label { outline: 2px solid var(--ec-ink); outline-offset: 2px; border-radius: 4px; }
.ec-announce__stars { margin-right: .6rem; color: #e2bd6a; letter-spacing: .08em; }

/* Category wheel */
.ec-cats-sec .ec-head { justify-content: center; text-align: center; }
.ec-wheel { position: relative; overflow: hidden; perspective: 1100px; padding: 1.2rem 0 .8rem; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.ec-wheel.is-live { -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); cursor: grab; }
.ec-wheel.is-live:active { cursor: grabbing; }
.ec-wheel__track { display: flex; gap: clamp(1.6rem, 2.6vw, 4rem); width: max-content; margin: 0; padding: 0; list-style: none; will-change: transform; transform-style: preserve-3d; }
.ec-wheel__track > li { flex: 0 0 auto; width: 13.6rem; transform-origin: 50% 50%; will-change: transform, opacity; }
.ec-wheel__track .ec-circle__img { max-width: none; }
.ec-wheel__track img { -webkit-user-drag: none; pointer-events: none; }
/* Without motion it's a plain row: centered when it fits, scrollable when it doesn't. */
.ec-wheel:not(.is-live) { overflow-x: auto; scrollbar-width: none; }
.ec-wheel:not(.is-live)::-webkit-scrollbar { display: none; }
.ec-wheel.is-centered .ec-wheel__track { margin-inline: auto; }
@media (max-width: 749px) {
  .ec-wheel__track > li { width: 9.6rem; }
  .ec-wheel.is-live { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
}


/* Slide visual: a turntable of bottles, one per brand. Each bottle is on its own
   solid white card (the product photos are shot on white), so nothing is see-through
   and cards in front cover the ones behind. */
.ec-slide__visual--ring { align-self: stretch; height: auto; margin-block: calc(-1 * clamp(24px, 3.6vw, 56px)); padding-block: clamp(10px, 1.4vw, 20px) clamp(18px, 2.4vw, 30px); }
.ec-turn { position: relative; width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.ec-turn__stage { position: relative; min-height: 0; }
.ec-turn__floor { position: absolute; left: 6%; right: 6%; bottom: 2%; height: 34%; border-radius: 50%; background: radial-gradient(closest-side, rgba(110, 72, 38, 0.14), rgba(110, 72, 38, 0.06) 62%, transparent 100%); pointer-events: none; }
.ec-turn__item {
  position: absolute; left: 0; top: 0; width: var(--turn-size, 14rem); aspect-ratio: 1;
  display: block; overflow: hidden; border-radius: 18px; background: #fff;
  box-shadow: 0 0 0 1px rgba(60, 36, 14, 0.06), 0 22px 30px -20px rgba(60, 36, 14, 0.45);
  transform-origin: 50% 100%; will-change: transform; -webkit-tap-highlight-color: transparent;
}
.ec-turn:not(.is-live) .ec-turn__item { position: relative; display: inline-block; width: 30%; margin: 0 1%; }
.ec-turn:not(.is-live) .ec-turn__item:nth-child(n + 5) { display: none; }
.ec-turn__item img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform 0.35s var(--ec-ease); }
.ec-turn__hit { position: absolute; inset: 0; }
.ec-turn__item:hover img { transform: scale(1.04); }
.ec-turn__item:focus-visible { outline: 2px solid var(--ec-ink); outline-offset: 3px; }
.ec-turn__cap { justify-self: center; display: grid; justify-items: center; gap: 0.3rem; min-height: 7.2rem; padding: 0.4rem 1.6rem 0; color: var(--ec-ink); text-align: center; text-decoration: none; transition: opacity 0.18s; }
.ec-turn__cap.is-swapping { opacity: 0; }
.ec-turn__brand { font-family: var(--ec-label); font-size: 1.2rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ec-ink-2); }
.ec-turn__name { font-family: var(--ec-display); font-size: clamp(1.8rem, 1.6vw, 2.2rem); line-height: 1.15; }
.ec-turn__price { display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 0.3rem 0.8rem; font-size: 1.5rem; }
.ec-turn__price s { color: var(--ec-ink-3); }
.ec-turn__price em { font-style: normal; font-weight: 700; color: var(--ec-sale); }
.ec-turn__price s:empty, .ec-turn__price em:empty { display: none; }
.ec-turn__cap:hover .ec-turn__name { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 749px) {
  .ec-slide:has(.ec-slide__visual--ring) { grid-template-rows: minmax(270px, 1fr) auto; }
  .ec-slide__visual--ring { margin-block: -18px 0; padding-block: 10px 0; }
  .ec-turn__cap { min-height: 6.4rem; }
  .ec-turn__name { font-size: 1.7rem; }
}
.ec-review__product { margin: .6rem 0 0; font-size: 1.3rem; color: var(--ec-ink-2); }
.ec-review__product a { color: var(--ec-ink); font-weight: 600; }

/* New arrivals spotlight: one product card at a time (photo, brand, name, price) with
   thumbnails of the rest below; escentials.js moves it on every few seconds and a thin
   bar along the card's bottom shows the time to the next one. */
.ec-slide__visual:has(> .ec-spot) { container-type: size; }
@media (min-width: 750px) { .ec-slide__visual:has(> .ec-spot) { align-self: stretch; height: auto; margin-block: calc(-1 * clamp(24px, 3.6vw, 56px)) -4.4rem; padding-block: 1.2rem; } }
/* As wide as the column allows, but never taller than the room the slide has. */
.ec-spot { display: grid; justify-items: center; gap: 1.4rem; width: min(100cqw, 56rem, (100cqh - 7.4rem) * 2); opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ec-ease), transform 0.9s var(--ec-ease); transition-delay: 0.15s; }
.ec-slide.is-active .ec-spot { opacity: 1; transform: none; }
.ec-spot__card { position: relative; width: 100%; aspect-ratio: 2 / 1; border-radius: 20px; background: #fff; box-shadow: 0 30px 50px -34px rgba(20, 32, 64, 0.5); overflow: hidden; }
.ec-spot__item {
  position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 1.6rem;
  padding: 1.6rem 2.4rem 1.6rem 1.2rem; color: var(--ec-ink); text-decoration: none;
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ec-ease), visibility 0s 0.45s;
}
.ec-spot__item.is-on { opacity: 1; visibility: visible; transition: opacity 0.45s var(--ec-ease); }
.ec-spot__media { display: grid; place-items: center; height: 100%; min-height: 0; }
.ec-spot__media img { width: 100%; height: 100%; object-fit: contain; transform: translateY(10px) scale(0.95); transition: transform 0.7s var(--ec-ease); }
.ec-spot__item.is-on .ec-spot__media img { transform: none; }
.ec-spot__info { display: grid; gap: 0.5rem; align-content: center; }
.ec-spot__info > * { opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ec-ease), transform 0.6s var(--ec-ease); }
.ec-spot__item.is-on .ec-spot__info > * { opacity: 1; transform: none; }
.ec-spot__item.is-on .ec-spot__info > :nth-child(2) { transition-delay: 0.06s; }
.ec-spot__item.is-on .ec-spot__info > :nth-child(3) { transition-delay: 0.12s; }
.ec-spot__item.is-on .ec-spot__info > :nth-child(4) { transition-delay: 0.18s; }
.ec-spot__brand { font-family: var(--ec-label); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ec-ink-2); }
.ec-spot__name { font-family: var(--ec-display); font-size: clamp(2rem, 2vw, 2.8rem); line-height: 1.1; }
.ec-spot__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0.8rem; font-size: 1.6rem; }
.ec-spot__price s { color: var(--ec-ink-3); }
.ec-spot__price em { font-style: normal; font-weight: 700; color: var(--ec-sale); }
.ec-spot__cta { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; font-size: 1.4rem; font-weight: 600; }
.ec-spot__cta .ec-icon { width: 1.4rem; height: 1.4rem; transition: transform 0.3s var(--ec-ease); }
.ec-spot__item:hover .ec-spot__cta .ec-icon { transform: translateX(4px); }
.ec-spot__item:focus-visible { outline: 2px solid var(--ec-ink); outline-offset: -4px; border-radius: 20px; }
.ec-spot__new { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; padding: 0.3rem 0.9rem; border-radius: 999px; background: var(--ec-ink); color: #fff; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; pointer-events: none; }
.ec-spot__bar { position: absolute; left: 0; bottom: 0; z-index: 2; width: 100%; height: 3px; background: var(--ec-ink); opacity: 0.75; transform: scaleX(0); transform-origin: left; pointer-events: none; }
.ec-spot.is-running .ec-spot__bar { animation: ec-spot-bar var(--spot-ms, 4000ms) linear forwards; }
.ec-spot.is-paused .ec-spot__bar { animation-play-state: paused; }
@keyframes ec-spot-bar { to { transform: scaleX(1); } }
.ec-spot__thumbs { display: flex; justify-content: center; gap: 0.8rem; }
.ec-spot__thumb {
  width: 5.8rem; aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 12px; background: #fff; overflow: hidden; cursor: pointer;
  box-shadow: 0 10px 18px -14px rgba(20, 32, 64, 0.5); opacity: 0.72; transition: border-color 0.25s, opacity 0.25s, transform 0.25s var(--ec-ease);
}
.ec-spot__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.ec-spot__thumb:hover { opacity: 1; transform: translateY(-2px); }
.ec-spot__thumb[aria-pressed="true"] { border-color: var(--ec-ink); opacity: 1; }
.ec-spot__thumb:focus-visible { outline: 2px solid var(--ec-ink); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .ec-spot, .ec-spot__media img, .ec-spot__info > * { transition: none; transform: none; } }
@media (max-width: 749px) {
  .ec-spot { gap: 1rem; width: min(100cqw, (100cqh - 5rem) * 1.6); }
  .ec-spot__card { aspect-ratio: 16 / 10; border-radius: 16px; }
  .ec-spot__item { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1rem; padding: 1.2rem 1.4rem 1.2rem 0.6rem; }
  .ec-spot__new { top: 0.9rem; left: 0.9rem; font-size: 0.95rem; }
  .ec-spot__brand { font-size: 1rem; letter-spacing: 0.1em; }
  .ec-spot__name { font-size: 1.8rem; }
  .ec-spot__price { font-size: 1.4rem; }
  .ec-spot__cta { font-size: 1.3rem; margin-top: 0.2rem; }
  .ec-spot__thumbs { gap: 0.5rem; }
  .ec-spot__thumb { width: 3.9rem; border-radius: 9px; }
}

}
