/** Shopify CDN: Minification failed

Line 3707:0 Expected "}" to go with "{"

**/
/* ==========================================================================
   AWAKENED — base.css
   Palette + layout system. Every colour is driven by theme settings so the
   whole store can be re-skinned from Online Store > Themes > Customize.
   ========================================================================== */

:root {
  --page-width: 1440px;
  --gutter: 28px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: rgb(var(--c-bg));
  color: rgb(var(--c-text));
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  margin: 0;
  line-height: 1.15;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--page-width); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 900px; }
.section { padding: var(--section-pt, 72px) 0 var(--section-pb, 72px); }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 200;
  background: rgb(var(--c-accent)); color: rgb(var(--c-bg));
  padding: 10px 16px; border-radius: var(--radius-pill);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid rgb(var(--c-accent));
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type ---------- */
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
}
.section-sub {
  margin: 14px auto 0;
  max-width: 620px;
  text-align: center;
  color: rgb(var(--c-text) / .62);
  font-size: 14px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgb(var(--c-accent));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text));
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgb(var(--c-accent) / .35); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost {
  background: transparent; color: rgb(var(--c-text));
  border-color: rgb(var(--c-text) / .28);
}
.btn--ghost:hover { border-color: rgb(var(--c-accent)); color: rgb(var(--c-accent)); box-shadow: none; }
.btn--full { width: 100%; }

.link-underline {
  border-bottom: 1px solid rgb(var(--c-text) / .35);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.link-underline:hover { color: rgb(var(--c-accent)); border-color: rgb(var(--c-accent)); }

/* ---------- Scroll reveal (blur -> sharp, pops into place) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(14px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease),
    filter .85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) and (max-width: 0px) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .marquee__track { animation: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement {
  background: rgb(var(--c-accent));
  color: rgb(var(--c-accent-text));
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgb(var(--c-bg) / .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(var(--c-text) / .08);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  padding-top: 12px; padding-bottom: 12px;
}
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__link {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  position: relative; padding: 6px 0;
  transition: color .2s var(--ease);
}
.header__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: rgb(var(--c-accent)); transition: width .3s var(--ease);
}
.header__link:hover { color: rgb(var(--c-accent)); }
.header__link:hover::after { width: 100%; }

.header__brand { justify-self: center; display: inline-flex; align-items: center; }
.header__brand img { width: auto; }
.header__wordmark {
  font-family: var(--font-heading-family);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: .06em;
  color: rgb(var(--c-accent));
  white-space: nowrap;
}

.header__actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.icon-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  transition: color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.icon-btn:hover { color: rgb(var(--c-accent)); background: rgb(var(--c-text) / .06); transform: translateY(-1px); }
.icon-btn svg { width: 19px; height: 19px; }

/* bright pink cart bubble */
.cart-count {
  position: absolute; top: -2px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgb(var(--c-accent));
  color: rgb(var(--c-accent-text));
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700; line-height: 1;
  box-shadow: 0 0 0 2px rgb(var(--c-bg)), 0 0 14px rgb(var(--c-accent) / .8);
}
.cart-count[hidden] { display: none; }
.cart-count.is-bumped { animation: bump .45s var(--ease); }
@keyframes bump {
  0% { transform: scale(1); } 35% { transform: scale(1.45); } 100% { transform: scale(1); }
}

.header__burger { display: none; }

/* Mobile drawer nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: rgb(var(--c-bg) / .98);
  padding: 26px var(--gutter);
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a {
  font-family: var(--font-heading-family);
  font-size: 24px; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 0; border-bottom: 1px solid rgb(var(--c-text) / .08);
}

/* ==========================================================================
   MARQUEE — continuous scrolling sale bar
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid rgb(var(--c-text) / .08);
  background: rgb(var(--c-bg-alt));
  padding: 10px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center;
  animation: marquee var(--marquee-speed, 26s) linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 26px;
  padding-right: 26px;
  font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: rgb(var(--c-text) / .8);
}
.marquee__dot { color: rgb(var(--c-accent)); font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px;
  padding: clamp(48px, 7vw, 96px) 0;
}
.hero__title {
  font-size: clamp(38px, 6.4vw, 82px);
  line-height: 1.02;
  letter-spacing: .01em;
}
.hero__title em { font-style: italic; color: rgb(var(--c-accent)); }
.hero__text { margin: 22px 0 34px; max-width: 44ch; color: rgb(var(--c-text) / .7); font-size: 16px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media {
  position: relative; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 90px rgb(0 0 0 / .55);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(var(--c-bg) / .55));
  pointer-events: none;
}
.hero__badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgb(var(--c-bg) / .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgb(var(--c-accent) / .5);
  padding: 9px 16px; border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
}
.hero__glow {
  position: absolute; width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgb(var(--c-accent) / .22), transparent 62%);
  top: -220px; right: -180px; pointer-events: none; filter: blur(20px);
}

/* ==========================================================================
   PRODUCT GRID + CARD
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: 26px 22px;
  margin-top: 44px;
}
.card { position: relative; }
.card__media {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-card);
  background: rgb(var(--c-card));
  aspect-ratio: 1 / 1;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .45s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media .card__img--alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__img--alt { opacity: 1; }
.card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(140deg, rgb(var(--c-card)), rgb(var(--c-bg-alt)));
  display: grid; place-items: center;
  color: rgb(var(--c-text) / .35); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.card__flag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text));
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.card__flag--sold { background: rgb(var(--c-text) / .35); color: rgb(var(--c-bg)); }
.card__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__quick .btn { width: 100%; padding: 12px 18px; font-size: 10px; }
.card__info { padding: 14px 4px 0; }
.card__title {
  font-family: var(--font-body-family);
  font-size: 13px; letter-spacing: .06em;
  color: rgb(var(--c-accent-soft));
}
.card__stars { margin-top: 6px; display: flex; gap: 2px; color: rgb(var(--c-accent)); }
.card__stars svg { width: 12px; height: 12px; }
.card__price { margin-top: 7px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.card__price s { color: rgb(var(--c-text) / .45); }
.card__price .is-sale { color: rgb(var(--c-accent)); }

.grid-actions { margin-top: 44px; text-align: center; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: 22px; margin-top: 44px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
}
.reviews__rail::-webkit-scrollbar { height: 5px; }
.reviews__rail::-webkit-scrollbar-thumb { background: rgb(var(--c-accent) / .5); border-radius: 99px; }
.review {
  scroll-snap-align: start;
  background: rgb(var(--c-card));
  border: 1px solid rgb(var(--c-text) / .08);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.review__photo { aspect-ratio: 4 / 3; overflow: hidden; background: rgb(var(--c-bg-alt)); }
.review__photo img { width: 100%; height: 100%; object-fit: cover; }
.review__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.review__stars { display: flex; gap: 3px; color: rgb(var(--c-accent)); }
.review__stars svg { width: 14px; height: 14px; }
.review__text { font-size: 14px; color: rgb(var(--c-text) / .82); margin: 0; }
.review__who { display: flex; align-items: center; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.review__name { font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.verified {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgb(var(--c-accent) / .14);
  color: rgb(var(--c-accent));
  border: 1px solid rgb(var(--c-accent) / .35);
  padding: 3px 9px 3px 6px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600; letter-spacing: .08em;
}
.verified svg { width: 12px; height: 12px; }
.review__bought {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgb(var(--c-text) / .5);
  border-top: 1px solid rgb(var(--c-text) / .08);
  padding-top: 12px;
}
.review__bought b { color: rgb(var(--c-text) / .82); font-weight: 600; }
.reviews__summary {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 18px; font-size: 13px; color: rgb(var(--c-text) / .6);
}
.reviews__summary .stars { display: flex; gap: 3px; color: rgb(var(--c-accent)); }
.reviews__summary svg { width: 15px; height: 15px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin: 44px auto 0; }
.faq__item { border-bottom: 1px solid rgb(var(--c-text) / .1); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-size: 15px; letter-spacing: .02em;
  transition: color .2s var(--ease);
}
.faq__q:hover { color: rgb(var(--c-accent)); }
.faq__icon { position: relative; flex: 0 0 16px; height: 16px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; transition: transform .3s var(--ease);
}
.faq__icon::before { top: 7.5px; left: 0; width: 16px; height: 1.5px; }
.faq__icon::after { left: 7.5px; top: 0; width: 1.5px; height: 16px; }
.faq__q[aria-expanded="true"] { color: rgb(var(--c-accent)); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.faq__a.is-open { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0 0 22px; padding-right: 40px; color: rgb(var(--c-text) / .68); font-size: 14px; }

/* ==========================================================================
   NEWSLETTER POPUP + SIDE TAB
   ========================================================================== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgb(0 0 0 / .72);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup {
  position: relative; width: min(880px, 100%);
  background: rgb(var(--c-card));
  border: 1px solid rgb(var(--c-accent) / .28);
  border-radius: 22px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(24px) scale(.97);
  transition: transform .5s var(--ease);
  box-shadow: 0 40px 100px rgb(0 0 0 / .6);
}
.popup-overlay.is-open .popup { transform: none; }
.popup__media { background: rgb(var(--c-bg-alt)); }
.popup__media img { width: 100%; height: 100%; object-fit: cover; }
.popup__body { padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: center; }
.popup__title { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: .04em; margin: 12px 0 10px; }
.popup__title span { color: rgb(var(--c-accent)); }
.popup__text { color: rgb(var(--c-text) / .68); font-size: 14px; margin: 0 0 22px; }
.popup__form { display: flex; flex-direction: column; gap: 12px; }
.popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgb(var(--c-bg) / .6);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.popup__close:hover { background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text)); transform: rotate(90deg); }
.popup__close svg { width: 14px; height: 14px; }
.popup__fine { margin: 14px 0 0; font-size: 11px; color: rgb(var(--c-text) / .42); }

.field {
  width: 100%; padding: 15px 18px;
  background: rgb(var(--c-bg));
  border: 1px solid rgb(var(--c-text) / .18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  transition: border-color .2s var(--ease);
}
.field::placeholder { color: rgb(var(--c-text) / .38); }
.field:focus { border-color: rgb(var(--c-accent)); outline: none; }

/* Sticky side tab that returns after closing the popup */
.offer-tab {
  position: fixed; left: 0; top: 55%; z-index: 100;
  display: flex; align-items: center; gap: 8px;
  background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text));
  padding: 10px 14px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 10px 30px rgb(var(--c-accent) / .35);
  transform: translateX(-110%);
  transition: transform .45s var(--ease);
}
.offer-tab.is-shown { transform: none; }
.offer-tab__open { padding: 2px 0; }
.offer-tab__x {
  display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%;
  background: rgb(var(--c-accent-text) / .18);
  transition: background-color .2s var(--ease);
}
.offer-tab__x:hover { background: rgb(var(--c-accent-text) / .38); }
.offer-tab__x svg { width: 10px; height: 10px; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgb(0 0 0 / .6);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 115;
  width: min(440px, 100%);
  background: rgb(var(--c-bg-alt));
  border-left: 1px solid rgb(var(--c-text) / .1);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid rgb(var(--c-text) / .1);
}
.drawer__title { font-size: 15px; letter-spacing: .22em; text-transform: uppercase; }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__empty { padding: 60px 0; text-align: center; color: rgb(var(--c-text) / .55); }
.line {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgb(var(--c-text) / .08);
}
.line__img { border-radius: 12px; overflow: hidden; background: rgb(var(--c-card)); aspect-ratio: 1; }
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__name { font-size: 13px; }
.line__variant { font-size: 11px; color: rgb(var(--c-text) / .5); margin-top: 3px; }
.line__price { font-size: 13px; margin-top: 6px; }
.qty { display: inline-flex; align-items: center; border: 1px solid rgb(var(--c-text) / .18); border-radius: var(--radius-pill); margin-top: 8px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 14px; }
.qty button:hover { color: rgb(var(--c-accent)); }
.qty span { min-width: 22px; text-align: center; font-size: 12px; }
.line__remove { font-size: 11px; color: rgb(var(--c-text) / .5); text-decoration: underline; align-self: start; }
.line__remove:hover { color: rgb(var(--c-accent)); }
.drawer__foot { padding: 20px 24px 26px; border-top: 1px solid rgb(var(--c-text) / .1); }
.drawer__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.drawer__row strong { font-size: 17px; }
.drawer__note { font-size: 11px; color: rgb(var(--c-text) / .5); margin: 0 0 16px; }

/* Free shipping progress bar inside the drawer */
.ship-bar { margin: 14px 0 4px; }
.ship-bar__track { height: 4px; border-radius: 99px; background: rgb(var(--c-text) / .14); overflow: hidden; }
.ship-bar__fill { height: 100%; background: rgb(var(--c-accent)); width: 0; transition: width .5s var(--ease); }
.ship-bar__label { font-size: 11px; letter-spacing: .06em; margin-bottom: 8px; color: rgb(var(--c-text) / .65); }
.ship-bar__label b { color: rgb(var(--c-accent)); }

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; padding: 44px 0 24px; align-items: start; }
.pdp__gallery { display: flex; flex-direction: column; gap: 14px; position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__main {
  border-radius: 22px; overflow: hidden; background: rgb(var(--c-card)); aspect-ratio: 1;
}
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.pdp__thumb {
  border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: rgb(var(--c-card));
  border: 1px solid transparent; transition: border-color .2s var(--ease);
}
.pdp__thumb.is-active { border-color: rgb(var(--c-accent)); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__title { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: .04em; margin-bottom: 10px; }
.pdp__price { font-size: 20px; display: flex; align-items: center; gap: 12px; margin: 16px 0 4px; }
.pdp__price s { color: rgb(var(--c-text) / .45); font-size: 16px; }
.pdp__desc { color: rgb(var(--c-text) / .72); font-size: 14px; margin: 22px 0; }
.pdp__desc p { margin: 0 0 12px; }
.opt { margin: 22px 0; }
.opt__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgb(var(--c-text) / .6); margin-bottom: 10px; }
.opt__values { display: flex; flex-wrap: wrap; gap: 8px; }
.opt__value {
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgb(var(--c-text) / .18); font-size: 12px; letter-spacing: .06em;
  transition: all .2s var(--ease);
}
.opt__value:hover { border-color: rgb(var(--c-accent) / .6); }
.opt__value.is-active { background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text)); border-color: rgb(var(--c-accent)); }
.opt__value.is-unavailable { opacity: .35; text-decoration: line-through; }
.pdp__buy { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.trust { display: grid; gap: 12px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgb(var(--c-text) / .1); }
.trust__row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgb(var(--c-text) / .72); }
.trust__row svg { width: 17px; height: 17px; color: rgb(var(--c-accent)); flex: none; }

/* ==========================================================================
   COLLECTION / PAGE / MISC
   ========================================================================== */
.page-head { padding: 56px 0 8px; text-align: center; }
.page-head h1 { font-size: clamp(30px, 4.4vw, 52px); letter-spacing: .16em; text-transform: uppercase; }
.page-head p { color: rgb(var(--c-text) / .6); max-width: 620px; margin: 14px auto 0; font-size: 14px; }
.rte { color: rgb(var(--c-text) / .78); font-size: 15px; }
.rte h2 { font-size: 24px; margin: 28px 0 12px; }
.rte a { color: rgb(var(--c-accent)); text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; font-size: 13px; border: 1px solid rgb(var(--c-text) / .14);
}
.pagination .is-current { background: rgb(var(--c-accent)); color: rgb(var(--c-accent-text)); border-color: rgb(var(--c-accent)); }

.marquee-strip { padding: 26px 0; }

/* Collage / image band */
.band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.band figure { margin: 0; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 4/5; }
.band img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.band figure:hover img { transform: scale(1.05); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid rgb(var(--c-text) / .1); padding: 62px 0 0; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 42px; }
.footer__brand { font-family: var(--font-heading-family); font-size: 28px; color: rgb(var(--c-accent)); }
.footer__blurb { color: rgb(var(--c-text) / .6); font-size: 14px; margin: 14px 0 18px; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; }
.footer__title { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; color: rgb(var(--c-text) / .75); }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 13px; color: rgb(var(--c-text) / .7); transition: color .2s var(--ease); }
.footer__links a:hover { color: rgb(var(--c-accent)); }
.footer__form { display: flex; gap: 8px; margin-top: 14px; }
.footer__form .field { flex: 1; }
.footer__bottom {
  margin-top: 52px; padding: 22px 0; border-top: 1px solid rgb(var(--c-text) / .08);
  text-align: center; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgb(var(--c-text) / .45);
}

.form-note { font-size: 13px; margin-top: 10px; }
.form-note--ok { color: rgb(var(--c-accent)); }
.form-note--err { color: #ff8080; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .product-grid { --cols: 3 !important; }
}
@media (max-width: 990px) {
  :root { --gutter: 20px; --header-h: 72px; }
  .header__nav { display: none; }
  .header__burger { display: inline-flex; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp__gallery { position: static; }
  .popup { grid-template-columns: 1fr; }
  .popup__media { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .section { padding: 52px 0; }
  .product-grid { --cols: 2 !important; gap: 20px 14px; }
  .section-title { letter-spacing: .14em; }
  .reviews__rail { grid-auto-columns: minmax(260px, 82%); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__blurb { max-width: none; }
  .card__quick { opacity: 1; transform: none; position: static; margin-top: 10px; }
  .band { grid-template-columns: 1fr; }
  .offer-tab { top: auto; bottom: 18px; }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* Prevent mobile horizontal overflow */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Keep marquee inside the screen */
.marquee {
  width: 100%;
  max-width: 100vw;
  overflow: hidden !important;
}

.marquee__track {
  max-width: none;
}

/* Keep hidden menus/drawers from expanding page width */
.mobile-nav,
.drawer {
  max-width: 100vw;
  overflow-x: hidden;
}
/* FIX MARQUEE CAUSING MOBILE PAGE TO BE TOO WIDE */
.marquee {
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  overflow-x: clip !important;
  contain: paint;
}

.marquee__track {
  width: max-content !important;
  max-width: none !important;
}

/* Stop marquee content from increasing overall page width */
body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

html {
  overflow-x: clip !important;
  max-width: 100vw !important;
/* =========================
   LEFT DRAWER MENU
========================= */

/* =========================================
   SMOOTH DRAWER + CASCADING MENU ANIMATION
========================================= */

.ecstasy-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;

  z-index: 9998;
}

.ecstasy-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Drawer itself */
.ecstasy-drawer {
  position: fixed;
  top: 0;
  left: 0;

  width: min(370px, 88vw);
  height: 100dvh;

  background: #fff;
  z-index: 9999;

  padding: 70px 30px 0;

  overflow-y: auto;
  overflow-x: hidden;

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-35px)
    scale(0.985);

  transform-origin: left center;

  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    visibility 0.6s;
}

.ecstasy-drawer.active {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(0)
    scale(1);
}


/* Close button */
.ecstasy-drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;

  color: #111;
  cursor: pointer;

  opacity: 0;
  transform: translateY(-16px);

  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecstasy-drawer.active .ecstasy-drawer-close {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.08s;
}


/* Main menu items start hidden/up */
.drawer-item,
.drawer-login {
  opacity: 0;
  transform: translateY(-22px);

  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* Cascade each menu item downward */
.ecstasy-drawer.active .drawer-item,
.ecstasy-drawer.active .drawer-login {
  opacity: 1;
  transform: translateY(0);
}


/* delays */
.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(1) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(1) {
  transition-delay: 0.10s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(2) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(2) {
  transition-delay: 0.15s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(3) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(3) {
  transition-delay: 0.20s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(4) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(4) {
  transition-delay: 0.25s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(5) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(5) {
  transition-delay: 0.30s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(6) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(6) {
  transition-delay: 0.35s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(7) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(7) {
  transition-delay: 0.40s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > *:nth-child(8) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(8) {
  transition-delay: 0.45s;
}


/* =========================================
   SHOP DROPDOWN
========================================= */

.drawer-submenu {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.drawer-submenu > * {
  overflow: hidden;
}


/* If links are direct children, this handles them */
.drawer-submenu a {
  display: block;

  color: #111;
  text-decoration: none;

  font-size: 14px;
  letter-spacing: 0.5px;

  padding: 0;

  opacity: 0;
  transform: translateY(-14px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.45s ease;
}


/* Open state */
.drawer-dropdown.open .drawer-submenu {
  grid-template-rows: 1fr;
  opacity: 1;
}

.drawer-dropdown.open .drawer-submenu a {
  opacity: 1;
  transform: translateY(0);

  padding-top: 9px;
  padding-bottom: 9px;
}


/* cascade submenu links */
.drawer-dropdown.open .drawer-submenu a:nth-child(1) {
  transition-delay: 0.05s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(2) {
  transition-delay: 0.10s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(3) {
  transition-delay: 0.15s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(4) {
  transition-delay: 0.20s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(5) {
  transition-delay: 0.25s;
}


/* Arrow animation */
.drawer-arrow {
  display: inline-block;

  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-dropdown.open .drawer-arrow {
  transform: rotate(180deg);
}


/* Prevent scrolling behind drawer */
body.drawer-open {
  overflow: hidden;
}

/* =========================================
   FORCE HAMBURGER MENU ON DESKTOP + MOBILE
========================================= */

.header__nav {
  display: none !important;
}

.header__burger {
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 0;
  background: transparent;

  color: currentColor;
  cursor: pointer;
}

.header__burger svg {
  display: block;
  width: 24px;
  height: 24px;
}

.header__burger:hover {
  opacity: 0.7;
}
/* =========================================
   DRAWER FIX - COMPLETE
========================================= */

.ecstasy-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;

  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.ecstasy-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}


/* DRAWER */
.ecstasy-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;

  width: min(370px, 88vw) !important;
  height: 100dvh !important;

  background: #ffffff !important;
  color: #111111 !important;

  z-index: 9999 !important;

  padding: 70px 30px 30px !important;

  overflow-y: auto;
  overflow-x: hidden;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-45px);

  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    visibility 0.65s ease;
}

.ecstasy-drawer.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  transform: translateX(0) !important;
}


/* CLOSE X */
.ecstasy-drawer-close {
  position: absolute;
  top: 20px;
  right: 22px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: none;

  background: transparent;
  color: #111;

  cursor: pointer;

  opacity: 0;
  transform: translateY(-18px);

  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecstasy-drawer.active .ecstasy-drawer-close {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.ecstasy-drawer-close svg {
  width: 20px;
  height: 20px;
}


/* NAVIGATION */
.ecstasy-drawer-nav {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
}


/* NORMAL ROWS */
.drawer-item {
  width: 100%;
  min-height: 56px;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 0;

  border: 0;
  border-top: 1px solid #f1d4df;

  background: transparent;

  color: #111 !important;
  text-decoration: none !important;

  font-family: inherit;
  font-size: 17px;
  font-weight: 400;

  letter-spacing: 3px;

  cursor: pointer;

  opacity: 0;
  transform: translateY(-20px);

  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ITEMS APPEAR */
.ecstasy-drawer.active .drawer-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* TOP TO BOTTOM CASCADE */
.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(1) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(1) {
  transition-delay: 0.08s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(2) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(2) {
  transition-delay: 0.13s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(3) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(3) {
  transition-delay: 0.18s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(4) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(4) {
  transition-delay: 0.23s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(5) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(5) {
  transition-delay: 0.28s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(6) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(6) {
  transition-delay: 0.33s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(7) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(7) {
  transition-delay: 0.38s;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(8) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(8) {
  transition-delay: 0.43s;
}


/* =========================
   SHOP
========================= */

.drawer-dropdown {
  width: 100%;
}

.drawer-dropdown-button {
  width: 100%;
}

.drawer-arrow {
  display: inline-block;

  font-size: 18px;
  letter-spacing: 0;

  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-dropdown.open .drawer-arrow {
  transform: rotate(180deg);
}


/* SHOP CONTENT */
.drawer-submenu {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}

.drawer-submenu-inner {
  min-height: 0;
  overflow: hidden;
}

.drawer-dropdown.open .drawer-submenu {
  grid-template-rows: 1fr;
  opacity: 1;
}


/* SHOP LINKS */
.drawer-submenu a {
  display: block;

  padding: 0 0 0 0;

  color: #111 !important;
  text-decoration: none;

  font-size: 14px;
  letter-spacing: 1px;

  opacity: 0;
  transform: translateY(-14px);

  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-dropdown.open .drawer-submenu a {
  opacity: 1;
  transform: translateY(0);

  padding-top: 8px;
  padding-bottom: 8px;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(1) {
  transition-delay: 0.05s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(2) {
  transition-delay: 0.10s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(3) {
  transition-delay: 0.15s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(4) {
  transition-delay: 0.20s;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(5) {
  transition-delay: 0.25s;
}


/* LOGIN */
.drawer-login {
  display: block;

  padding: 20px 0;

  border-top: 1px solid #f1d4df;

  color: #111 !important;
  text-decoration: none;

  font-size: 15px;

  opacity: 0;
  transform: translateY(-18px);

  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecstasy-drawer.active .drawer-login {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.47s;
}


/* SOCIAL SECTION */
.drawer-socials {
  opacity: 0;
  transform: translateY(-18px);

  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecstasy-drawer.active .drawer-socials {
  opacity: 1;
  transform: translateY(0);

  transition-delay: 0.52s;
}


body.drawer-open {
  overflow: hidden !important;
}


@media screen and (max-width: 749px) {
  .ecstasy-drawer {
    width: 88vw !important;
    max-width: 370px !important;

    padding-left: 26px !important;
    padding-right: 26px !important;
  }

  .drawer-item {
    font-size: 17px;
    letter-spacing: 2.5px;
  }
}
/* =========================================
   FINAL SMOOTH BLACK DRAWER OVERRIDES
========================================= */

/* dark page overlay */
.ecstasy-drawer-overlay {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  /* leave the pink announcement bar visible */
  top: var(--announcement-height, 36px) !important;

  background: rgba(0, 0, 0, 0.48) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease !important;

  z-index: 9998 !important;
}

.ecstasy-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}


/* drawer itself */
.ecstasy-drawer {
  position: fixed !important;

  left: 0 !important;

  /* starts below pink announcement bar */
  top: var(--announcement-height, 36px) !important;

  width: min(380px, 88vw) !important;

  height: calc(100dvh - var(--announcement-height, 36px)) !important;

  background: #050505 !important;
  color: #ffffff !important;

  z-index: 9999 !important;

  padding: 30px 30px 30px !important;

  overflow-y: auto !important;
  overflow-x: hidden !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  /* short movement = smoother */
  transform: translateX(-28px) !important;

  will-change: transform, opacity;

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    visibility 0.42s ease !important;
}

.ecstasy-drawer.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  transform: translateX(0) !important;
}


/* close button */
.ecstasy-drawer-close {
  position: absolute !important;
  top: 10px !important;
  right: 18px !important;

  width: 34px !important;
  height: 34px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  background: transparent !important;

  color: #fff !important;

  opacity: 0 !important;
  transform: translateY(-8px) !important;

  transition:
    opacity 0.28s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ecstasy-drawer.active .ecstasy-drawer-close {
  opacity: 1 !important;
  transform: translateY(0) !important;

  transition-delay: 0.05s !important;
}

.ecstasy-drawer-close svg {
  stroke: #fff !important;
  color: #fff !important;
}


/* menu */
.ecstasy-drawer-nav {
  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;

  padding-top: 8px !important;
}


/* main menu rows */
.drawer-item {
  width: 100% !important;
  min-height: 56px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  border-top: 1px solid rgba(255, 95, 170, 0.25) !important;

  background: transparent !important;

  color: #fff !important;

  text-decoration: none !important;
  text-align: left !important;

  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;

  opacity: 0 !important;

  /* each item drops in slightly */
  transform: translateY(-12px) !important;

  transition:
    opacity 0.32s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}


/* top-to-bottom cascading entrance */
.ecstasy-drawer.active .drawer-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(1) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(1) {
  transition-delay: 0.07s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(2) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(2) {
  transition-delay: 0.11s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(3) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(3) {
  transition-delay: 0.15s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(4) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(4) {
  transition-delay: 0.19s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(5) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(5) {
  transition-delay: 0.23s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(6) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(6) {
  transition-delay: 0.27s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(7) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(7) {
  transition-delay: 0.31s !important;
}

.ecstasy-drawer.active .ecstasy-drawer-nav > :nth-child(8) .drawer-item,
.ecstasy-drawer.active .ecstasy-drawer-nav > .drawer-item:nth-child(8) {
  transition-delay: 0.35s !important;
}


/* =========================================
   SHOP DROPDOWN - FIXES THE BIG EMPTY SPACE
========================================= */

.drawer-dropdown {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.drawer-dropdown-button {
  width: 100% !important;
}


/* CLOSED = truly collapsed */
.drawer-submenu {
  display: block !important;

  max-height: 0 !important;

  overflow: hidden !important;

  opacity: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: translateY(-6px) !important;

  transition:
    max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.drawer-submenu-inner {
  overflow: hidden !important;

  margin: 0 !important;
  padding: 4px 0 10px !important;
}


/* OPEN */
.drawer-dropdown.open .drawer-submenu {
  max-height: 280px !important;

  opacity: 1 !important;

  transform: translateY(0) !important;
}


/* submenu links */
.drawer-submenu a {
  display: block !important;

  padding: 8px 0 !important;

  color: rgba(255,255,255,0.82) !important;

  text-decoration: none !important;

  font-size: 14px !important;
  letter-spacing: 1.5px !important;

  opacity: 0 !important;
  transform: translateY(-8px) !important;

  transition:
    opacity 0.28s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.drawer-dropdown.open .drawer-submenu a {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(1) {
  transition-delay: 0.05s !important;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(2) {
  transition-delay: 0.08s !important;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(3) {
  transition-delay: 0.11s !important;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(4) {
  transition-delay: 0.14s !important;
}

.drawer-dropdown.open .drawer-submenu a:nth-child(5) {
  transition-delay: 0.17s !important;
}


/* shop arrow */
.drawer-arrow {
  color: #fff !important;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.drawer-dropdown.open .drawer-arrow {
  transform: rotate(180deg) !important;
}


/* login */
.drawer-login {
  display: block !important;

  padding: 20px 0 !important;

  border-top: 1px solid rgba(255, 95, 170, 0.25) !important;

  color: #fff !important;
  text-decoration: none !important;

  opacity: 0 !important;
  transform: translateY(-10px) !important;

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ecstasy-drawer.active .drawer-login {
  opacity: 1 !important;
  transform: translateY(0) !important;

  transition-delay: 0.38s !important;
}


/* socials */
.drawer-socials {
  color: #fff !important;

  opacity: 0 !important;
  transform: translateY(-10px) !important;

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.drawer-socials a {
  color: #fff !important;
}

.ecstasy-drawer.active .drawer-socials {
  opacity: 1 !important;
  transform: translateY(0) !important;

  transition-delay: 0.42s !important;
}


body.drawer-open {
  overflow: hidden !important;
}
.drawer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 16px !important;

  width: 100% !important;

  margin: 0 !important;
  padding: 15px 0 8px !important;
}

.drawer-socials a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 25px !important;
  height: 25px !important;

  min-width: 25px !important;
  min-height: 25px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 0 !important;
  background: transparent !important;

  color: #fff !important;
  text-decoration: none !important;
}

.drawer-socials a svg {
  display: block !important;

  width: 19px !important;
  height: 19px !important;

  max-width: 19px !important;
  max-height: 19px !important;
}

/* Instagram needs an outline instead of a solid fill */
.drawer-social-instagram svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.drawer-social-instagram svg circle:last-child {
  fill: currentColor !important;
  stroke: none !important;
}

.drawer-socials a:hover {
  opacity: 0.7 !important;
  transform: translateY(-1px) !important;
}
/* Move View All button underneath collection heading */
.collection {
  display: flex;
  flex-direction: column;
}

.collection .collection__title {
  order: 1;
}

.collection .collection__view-all {
  order: 2;
  margin-top: 5px !important;
  margin-bottom: 25px !important;
}

.collection slider-component,
.collection .product-grid {
  order: 3;
}
/* ==========================================
   PRODUCT GALLERY - DESKTOP
========================================== */

.pdp__desktop-gallery {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: 100%;
}

.pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 80px;
}

.pdp__thumb {
  display: block;
  width: 76px;
  height: 76px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.pdp__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__thumb.is-active {
  border-color: #000;
}

.pdp__main {
  width: 100%;
  min-width: 0;
}

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


/* Mobile gallery hidden on desktop */
.pdp__mobile-gallery {
  display: none;
}


/* ==========================================
   PRODUCT GALLERY - MOBILE
========================================== */

@media screen and (max-width: 749px) {

  .pdp__desktop-gallery {
    display: none !important;
  }

  .pdp__gallery {
    display: block !important;
    width: 100%;
    max-width: 100%;
  }

  .pdp__mobile-gallery {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .pdp__mobile-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pdp__mobile-track::-webkit-scrollbar {
    display: none;
  }

  .pdp__mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  .pdp__mobile-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .pdp__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 18px 0 28px;
  }

  .pdp__mobile-dot {
    appearance: none;
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #aaa;
  }

  .pdp__mobile-dot.is-active {
    width: 11px;
    height: 11px;
    min-width: 11px;
    background: #000;
  }


  /* CENTER PRODUCT INFO */

  .pdp__details {
    text-align: center;
  }

  .pdp__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pdp-review-link {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .pdp__details form,
  .pdp__details fieldset {
    text-align: center;
  }

  .pdp__details legend {
    width: 100%;
    text-align: center;
  }

}
/* PRODUCT THUMBNAILS — SQUARE */
.pdp__thumb,
.pdp__thumb img {
  border-radius: 0 !important;
}

.pdp__thumb {
  width: 76px !important;
  height: 76px !important;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.pdp__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
/* DESKTOP PRODUCT IMAGE SLIDE */
@media screen and (min-width: 750px) {

  .pdp__main {
    position: relative;
    overflow: hidden;
  }

  .pdp__main img {
    border-radius: 0 !important;
  }

}
/* PRODUCT CARD INFO - FIRST IMAGE STYLE */

.product-grid .card__info {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Product name */
.product-grid .card__title {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 4px !important;
}

/* Judge.me stars */
.product-grid .card__info .jdgm-widget.jdgm-preview-badge {
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 4px !important;
}

.product-grid .card__info .jdgm-prev-badge {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  gap: 4px !important;
}

/* Price */
.product-grid .card__price {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
  margin-top: 0 !important;
}
/* ===== PRODUCT CARDS ===== */

/* Center everything underneath product image */
.product-grid .card__info {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Product name */
.product-grid .card__title {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 4px !important;
}

/* Judge.me stars + reviews */
.product-grid .card__info .jdgm-widget.jdgm-preview-badge {
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 4px !important;
}

.product-grid .card__info .jdgm-prev-badge {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  gap: 4px !important;
}

/* Price */
.product-grid .card__price {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
  margin-top: 0 !important;

  /* RED PRICE */
  color: #e60000 !important;
}

/* Make links/prices inside card price red too */
.product-grid .card__price * {
  color: #e60000 !important;
}
/* PRODUCT CARD FONT ONLY */
.product-grid .card__info,
/* PRODUCT NAME FONT */
.product-grid .card__title {
  font-family: Arial, sans-serif !important;
}

/* REVIEW COUNT FONT — DOES NOT TOUCH STARS */
.product-grid .jdgm-prev-badge__text {
  font-family: Arial, sans-serif !important;
}

/* PRICE FONT */
.product-grid .card__price,
.product-grid .card__price * {
  font-family: Arial, sans-serif !important;
}
/* MAKE PRODUCT NAME BIGGER */
.product-grid .card__title {
  font-size: 16px !important;
}
/* ===== JUDGE.ME STAR COLOR EVERYWHERE ===== */

/* Full + half stars */
.jdgm-prev-badge .jdgm-star.jdgm--on,
.jdgm-prev-badge .jdgm-star.jdgm--half {
  color: #ffb400 !important;
}

/* Empty stars */
.jdgm-prev-badge .jdgm-star.jdgm--off {
  color: #dddddd !important;
}
/* ===== COUNTRY / CURRENCY SWITCHER ===== */

.header-currency-switcher {
  position: absolute;
  top: 12px;
  right: 35px;
  z-index: 50;
}

.header-currency-switcher form {
  margin: 0;
}

.currency-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-flag {
  font-size: 21px;
  line-height: 1;
}

.currency-country-select {
  appearance: none;
  -webkit-appearance: none;

  background: transparent;
  border: none;
  outline: none;

  font-size: 14px;
  font-family: inherit;
  color: #000;

  cursor: pointer;

  padding: 5px 22px 5px 0;

  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%);

  background-position:
    calc(100% - 7px) 50%,
    calc(100% - 3px) 50%;

  background-size:
    4px 4px,
    4px 4px;

  background-repeat: no-repeat;
}

.currency-country-select:hover {
  opacity: 0.7;
}
/* ========================================
   COUNTRY + CURRENCY SWITCHER
======================================== */



.header-currency-switcher form {
  margin: 0;
}

.country-picker {
  position: relative;
}


/* CLOSED SELECTOR */
.country-picker__button {
  display: flex;
  align-items: center;
  gap: 9px;

  background: transparent;
  border: none;

  padding: 7px 10px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #000;

  cursor: pointer;
  white-space: nowrap;
}


/* ROUND FLAG */
.country-picker__flag {
  width: 25px;
  height: 25px;

  min-width: 25px;

  border-radius: 50%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid rgba(0,0,0,.08);
}


/* ARROW */
.country-picker__arrow {
  font-size: 15px;
  margin-left: 4px;
}


/* DROPDOWN BOX */
.country-picker__menu {
  position: absolute;

  top: calc(100% + 8px);
  right: 0;

  width: 280px;
  max-height: 340px;

  overflow-y: auto;

  background: #fff;

  border: 1px solid #e6e6e6;
  border-radius: 8px;

  box-shadow:
    0 8px 25px rgba(0,0,0,.12);

  padding: 6px;

  z-index: 9999;
}


/* EACH COUNTRY */
.country-picker__option {
  width: 100%;

  display: flex;
  align-items: center;
  gap: 10px;

  background: transparent;
  border: none;

  padding: 9px 10px;

  border-radius: 6px;

  text-align: left;

  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
}


/* HOVER */
.country-picker__option:hover {
  background: #f5f5f5;
}


/* SCROLLBAR */
.country-picker__menu::-webkit-scrollbar {
  width: 6px;
}

.country-picker__menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}


/* MOBILE */
@media screen and (max-width: 749px) {

  .header-currency-switcher {
    right: 10px;
    top: 15px;
  }

  .country-picker__current {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .country-picker__menu {
    width: 260px;
    max-height: 300px;
  }

}
/* HIDE CURRENCY SWITCHER ON MOBILE */
@media screen and (max-width: 749px) {
  .currency-topbar {
    display: none !important;
  }
}
/* ===== CURRENCY BAR ABOVE HEADER ===== */

.currency-topbar {
  width: 100%;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 0 30px;

  background: #ffffff;
  border-bottom: 1px solid #eeeeee;

  box-sizing: border-box;

  position: relative;
  z-index: 1000;
}

.header-currency-switcher {
  position: static !important;
  margin: 0 !important;
}

.header-currency-switcher form {
  margin: 0 !important;
}

.country-picker {
  position: relative;
}

/* Keep dropdown above everything */
.country-picker__menu {
  z-index: 9999 !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .currency-topbar {
    height: 36px;
    padding: 0 15px;
  }

  .country-picker__button {
    padding: 4px 6px;
  }

  .country-picker__flag {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .country-picker__current {
    font-size: 12px;
  }
}
/* CURRENCY SWITCHER FONT ONLY */
.header-currency-switcher,
.header-currency-switcher button,
.header-currency-switcher span,
.header-currency-switcher .country-picker__option {
  font-family: Arial, sans-serif !important;
}
/* =====================================================
   MOBILE HEADER - AWAKENED JEWELRY
   Hamburger LEFT / Logo CENTER / Search + Cart RIGHT
===================================================== */

@media screen and (max-width: 749px) {

  /* MAIN HEADER */
  header.header,
  .header {
    position: relative !important;
    min-height: 100px !important;
    height: 100px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
  }


  /* ==========================================
     HAMBURGER - LEFT
  ========================================== */

  .menu-drawer-container,
  header .menu-drawer-container,
  .header__icon--menu {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 5 !important;
  }

  .header__icon--menu {
    width: 48px !important;
    height: 48px !important;
    padding: 5px !important;
  }

  .header__icon--menu svg,
  .menu-drawer-container svg {
    width: 36px !important;
    height: 36px !important;
  }


  /* ==========================================
     LOGO - PERFECTLY CENTERED
  ========================================== */

  .header > .header__heading,
  .header > .header__heading-link {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2 !important;
    width: auto !important;
  }

  .header__heading-link,
  .header__heading-logo-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .header__heading-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 145px !important;
    max-width: 145px !important;
    height: auto !important;
  }


  /* ==========================================
     RIGHT SIDE ICONS
  ========================================== */

  .header__icons {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;

    z-index: 5 !important;
  }


  /* HIDE INSTAGRAM + TIKTOK ON MOBILE */
  header a[href*="instagram"],
  header a[href*="instagram.com"],
  header a[href*="tiktok"],
  header a[href*="tiktok.com"],
  .header a[href*="instagram"],
  .header a[href*="tiktok"] {
    display: none !important;
  }


  /* HIDE ACCOUNT ICON IF THERE IS ONE */
  .header__icon--account {
    display: none !important;
  }


  /* ==========================================
     SEARCH ICON - BIGGER
  ========================================== */

  .header__icon--search,
  details-modal.header__search .header__icon {
    width: 46px !important;
    height: 46px !important;
    padding: 5px !important;
  }

  .header__icon--search svg,
  details-modal.header__search svg {
    width: 34px !important;
    height: 34px !important;
  }


  /* ==========================================
     CART ICON - BIGGER
  ========================================== */

  .header__icon--cart,
  .header__icon--cart-empty {
    width: 46px !important;
    height: 46px !important;
    padding: 5px !important;
  }

  .header__icon--cart svg,
  .header__icon--cart-empty svg {
    width: 34px !important;
    height: 34px !important;
  }


  /* CART NUMBER BUBBLE */
  .cart-count-bubble {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 11px !important;
    top: 0 !important;
    right: 0 !important;
  }

}
/* ==================================================
   MOBILE HEADER ICON SIZE — MATCH REFERENCE PHOTO
================================================== */
@media screen and (max-width: 749px) {

  /* HAMBURGER clickable area */
  .header__icon--menu,
  summary.header__icon--menu {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  /* Actual hamburger lines */
  .header__icon--menu svg,
  summary.header__icon--menu svg,
  .menu-drawer-container summary svg {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    transform: scale(1.25) !important;
    transform-origin: center !important;
  }


  /* SEARCH clickable area */
  .header__icon--search,
  .header__search .header__icon,
  details-modal.header__search .header__icon {
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  /* Actual search icon */
  .header__icon--search svg,
  .header__search svg,
  details-modal.header__search svg {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    transform: scale(1.38) !important;
    transform-origin: center !important;
  }


  /* CART / BAG clickable area */
  .header__icon--cart,
  .header__icon--cart-empty,
  a[href="/cart"].header__icon {
    width: 55px !important;
    height: 55px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  /* Actual cart / bag */
  .header__icon--cart svg,
  .header__icon--cart-empty svg,
  a[href="/cart"].header__icon svg {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    transform: scale(1.45) !important;
    transform-origin: center !important;
  }


  /* Keep all icons vertically centered */
  .header__icons,
  .menu-drawer-container {
    align-items: center !important;
  }


  /* Cart number bubble */
  .cart-count-bubble {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    min-height: 27px !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    top: -5px !important;
    right: -5px !important;
  }

  .cart-count-bubble span {
    font-size: 13px !important;
    line-height: 27px !important;
  }
}
/* =====================================================
   MOBILE — ACTUALLY ENLARGE HEADER ICONS
   Works without Shopify's default icon classes
===================================================== */

@media screen and (max-width: 749px) {

  /* -------------------------
     HAMBURGER
  ------------------------- */
  header button[aria-label*="menu" i],
  header summary[aria-label*="menu" i],
  header button[aria-label*="navigation" i],
  header summary[aria-label*="navigation" i],
  header .menu-toggle,
  header .hamburger,
  header .mobile-menu-toggle,
  header .menu-drawer-container > summary {
    scale: 1.45 !important;
    transform-origin: center !important;
  }


  /* -------------------------
     SEARCH
  ------------------------- */
  header a[href*="/search"],
  header button[aria-label*="search" i],
  header summary[aria-label*="search" i],
  header .search-toggle,
  header .search-icon {
    scale: 1.45 !important;
    transform-origin: center !important;
  }


  /* -------------------------
     CART / BAG
  ------------------------- */
  header a[href="/cart"],
  header a[href*="/cart"],
  header button[aria-label*="cart" i],
  header button[aria-label*="bag" i],
  header .cart-icon,
  header .cart-link {
    scale: 1.45 !important;
    transform-origin: center !important;
  }


  /* Give the larger icons enough space */
  header .header__icons,
  header .header-icons,
  header .mobile-header-icons {
    gap: 18px !important;
  }

}
@media screen and (max-width: 749px) {

  /* =====================================
     LOGO — SMALLER + EXACTLY CENTERED
  ===================================== */

  .header__heading,
  .header__heading-link {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  .header__heading-logo {
    width: 115px !important;
    max-width: 115px !important;
    height: auto !important;
  }


  /* =====================================
     HAMBURGER — MOVE FARTHER LEFT
  ===================================== */

  .menu-drawer-container,
  .header__icon--menu {
    position: absolute !important;
    left: 8px !important;
  }


  /* =====================================
     SEARCH + CART — MOVE FARTHER RIGHT
  ===================================== */

  .header__icons {
    position: absolute !important;
    right: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }


  /* If your search uses a direct link/button */
  header a[href*="/search"],
  header button[aria-label*="search" i],
  header summary[aria-label*="search" i] {
    margin: 0 !important;
  }


  /* CART */
  header a[href*="/cart"] {
    margin: 0 !important;
  }

}
@media screen and (max-width: 749px) {

  /* Remove extra side padding from header */
  header.header,
  .header {
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
  }


  /* ==================================
     LOGO — TRUE CENTER OF THE SCREEN
  ================================== */

  .header__heading,
  .header__heading-link {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 2 !important;
  }

  .header__heading-logo {
    width: 110px !important;
    max-width: 110px !important;
    height: auto !important;
  }


  /* ==================================
     HAMBURGER — FARTHER LEFT
  ================================== */

  .menu-drawer-container {
    position: absolute !important;

    left: 3px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 5 !important;
  }


  /* ==================================
     SEARCH + CART — FARTHER RIGHT
  ================================== */

  .header__icons {
    position: absolute !important;

    right: 2px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    /* SEARCH + CART CLOSER TOGETHER */
    gap: 2px !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 5 !important;
  }


  /* Remove spacing Shopify may add around search */
  header a[href*="/search"],
  header button[aria-label*="search" i],
  header summary[aria-label*="search" i] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }


  /* Remove spacing around cart */
  header a[href*="/cart"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

}
/* =====================================================
   HERO = FULL WIDTH IMAGE BANNER
===================================================== */

/* Remove all hero text/buttons */
.hero__content,
.hero-content,
.hero__text,
.hero__heading,
.hero__subtitle,
.hero .buttons,
.hero .button,
.hero__buttons {
  display: none !important;
}


/* Make entire hero shorter + full width */
.hero,
.hero-section {
  width: 100vw !important;
  max-width: none !important;

  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding: 0 !important;

  height: 430px !important;
  min-height: 0 !important;

  overflow: hidden !important;
}


/* Make image area fill entire hero */
.hero__media,
.hero-media,
.hero__image-wrapper,
.hero-image,
.hero .media {
  position: absolute !important;

  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border-radius: 0 !important;
}


/* Make actual image fill the banner */
.hero img,
.hero-section img,
.hero__media img,
.hero__image {
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;

  border-radius: 0 !important;

  display: block !important;
}


/* Remove rounded corners from anything inside hero */
.hero *,
.hero-section * {
  border-radius: 0 !important;
}


/* =============================
   MOBILE
============================= */

@media screen and (max-width: 749px) {

  .hero,
  .hero-section {
    height: 280px !important;
  }

}
/* =====================================================
   BEST SELLERS — SHOP ALL BUTTON
   SMALL + THIN LIKE REFERENCE
===================================================== */

.collection__view-all .button,
.featured-collection .button,
.collection__view-all a.button,
.featured-collection .collection__view-all a {
  /* exact compact size */
  width: 124px !important;
  min-width: 124px !important;
  max-width: 124px !important;

  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;

  padding: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;

  /* center text */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* thin reference-style font */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;

  letter-spacing: 3.2px !important;
  text-transform: uppercase !important;

  color: #111 !important;

  /* thin pill border */
  background: #fff !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 999px !important;

  box-shadow: none !important;
  text-shadow: none !important;
}


/* FORCE TEXT INSIDE BUTTON TO ALSO BE THIN */
.collection__view-all .button *,
.featured-collection .button *,
.collection__view-all a *,
.featured-collection .collection__view-all a * {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 3.2px !important;
  line-height: 1 !important;
}


/* REMOVE THEME'S EXTRA BUTTON OUTLINE */
.collection__view-all .button::before,
.collection__view-all .button::after,
.featured-collection .button::before,
.featured-collection .button::after {
  display: none !important;
  content: none !important;
}


/* MOBILE */
@media screen and (max-width: 749px) {

  .collection__view-all .button,
  .featured-collection .button,
  .collection__view-all a.button,
  .featured-collection .collection__view-all a {
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;

    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;

    padding: 0 !important;

    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 3.2px !important;
  }
}
/* =========================================
   THIN SALE MARQUEE — REFERENCE STYLE
========================================= */

/* BAR */
.announcement-bar,
.marquee-bar,
[class*="announcement-bar"],
[class*="marquee-bar"] {
  height: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;

  padding: 0 !important;
  margin: 0 !important;

  overflow: hidden !important;
}

/* EVERYTHING INSIDE BAR */
.announcement-bar *,
.marquee-bar *,
[class*="announcement-bar"] *,
[class*="marquee-bar"] * {
  font-family: Arial, Helvetica, sans-serif !important;

  font-size: 11px !important;
  font-weight: 400 !important;

  /* LETTERS CLOSER TOGETHER */
  letter-spacing: -0.45px !important;

  line-height: 22px !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  min-height: 0 !important;
}

/* REMOVE DOTS / SEPARATORS */
.announcement-bar .dot,
.announcement-bar .separator,
.marquee-bar .dot,
.marquee-bar .separator,
[class*="announcement"] [class*="dot"],
[class*="announcement"] [class*="separator"],
[class*="marquee"] [class*="dot"],
[class*="marquee"] [class*="separator"] {
  display: none !important;
}
.awakened-sale-text-fix {
  position: relative !important;
  top: 0 !important;
  transform: translateY(-0.35px) !important;
}
.awakened-sale-bar-fix {
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;

  padding: 0 !important;
  margin: 0 !important;

  box-sizing: border-box !important;
  overflow: hidden !important;
}

.awakened-sale-text-fix {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;

  line-height: 20px !important;

  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;

  white-space: nowrap !important;
}
/* WHITE GLOWING DISCOUNT BADGE */
.card__media {
  position: relative !important;
}

.discount-glow-badge {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 20 !important;

  display: flex !important;
  align-items: center !important;
  gap: 5px !important;

  background: #ffffff !important;
  color: #111111 !important;

  padding: 6px 9px !important;
  border-radius: 5px !important;

  font-family: Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;

  box-shadow:
    0 0 5px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 255, 255, 0.65),
    0 2px 5px rgba(0, 0, 0, 0.3) !important;

  white-space: nowrap !important;
}

.discount-glow-badge svg {
  width: 13px !important;
  height: 13px !important;
  fill: #111111 !important;
  flex-shrink: 0 !important;
}
.discount-glow-badge {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 20 !important;

  display: flex !important;
  align-items: center !important;
  gap: 5px !important;

  background: #fff4fa !important;
  color: #111111 !important;

  padding: 6px 9px !important;
  border-radius: 5px !important;

  font-family: Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;

  box-shadow:
    0 0 5px rgba(255, 238, 248, 1),
    0 0 10px rgba(255, 220, 240, 0.95),
    0 0 16px rgba(255, 210, 235, 0.7),
    0 2px 5px rgba(0, 0, 0, 0.22) !important;

  white-space: nowrap !important;
}
/* =====================================
   PRODUCT PRICE — MATCH REFERENCE
===================================== */

.card__price {
  width: 100% !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  text-align: left !important;

  gap: 7px !important;
  margin-top: 18px !important;

  font-family: Arial, Helvetica, sans-serif !important;
}

/* CURRENT PRICE */
.card__price .is-sale,
.card__price > span {
  color: #111111 !important;

  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

/* OLD CROSSED-OUT PRICE */
.card__price s {
  color: #aaaaaa !important;

  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;

  text-decoration-color: #aaaaaa !important;
  text-decoration-thickness: 1px !important;
}

/* STOP THE CARD FROM CENTERING THE PRICE */
.card__info .card__price {
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-self: stretch !important;
}
/* Old crossed-out price = gray */
.price__compare-at,
.price-item--regular,
.compare-at-price,
.product-card__compare-price,
s {
  color: #9a9a9a !important;
  opacity: 1 !important;
  text-decoration-color: #9a9a9a !important;
}

/* Keep the CURRENT sale price black */
.price-item--sale,
.sale-price,
.product-card__price {
  color: #111 !important;
}
/* Compare / old crossed-out product price */
.product-card s,
.product-card del,
.card s,
.card del,
.product-item s,
.product-item del,
[class*="product"] [class*="compare"],
[class*="product"] [class*="old-price"],
[class*="product"] [class*="original-price"] {
  color: #999999 !important;
  -webkit-text-fill-color: #999999 !important;
  text-decoration-color: #999999 !important;
}
/* ===== FIX COMPARISON SECTION ===== */

/* Full-width black background */
.comparison-section {
  background: #000 !important;
  color: #fff !important;

  width: 100vw !important;
  max-width: none !important;

  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding: 70px 20px !important;
  box-sizing: border-box;
}

/* Make all text white */
.comparison-block h2,
.comparison-description,
.comparison-description p,
.comparison-hint {
  color: #fff !important;
}

/* Main slider */
.comparison-image-wrap {
  background: #000 !important;
  overflow: hidden !important;
}

/* IMPORTANT:
   don't physically crop the diamond into a circle */
.comparison-image-wrap.comparison-circle {
  width: min(90vw, 500px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;

  border-radius: 0 !important;
  background: #000 !important;
}

/* Show entire uploaded image */
.comparison-image {
  object-fit: contain !important;
  object-position: center !important;
  background: #000 !important;
}

/* Left side must stay full-size while being revealed */
.comparison-left-wrap {
  overflow: hidden !important;
}

.comparison-left {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;

  height: 100% !important;
  max-width: none !important;

  object-fit: contain !important;
  object-position: center !important;

  background: #000 !important;
}

/* White divider */
.comparison-line {
  background: #fff !important;
}

/* Slider button */
.comparison-handle {
  background: #000 !important;
  border: 2px solid #fff !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .comparison-section {
    padding: 50px 15px !important;
  }

  .comparison-image-wrap.comparison-circle {
    width: min(92vw, 430px) !important;
  }
}
/* ===== COMPARISON SLIDER FONT FIX ===== */

.comparison-section,
.comparison-section * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Heading */
.comparison-block h2 {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  letter-spacing: -0.8px !important;
  line-height: 1.15 !important;
}

/* Description */
.comparison-description,
.comparison-description p {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
}

/* P6NK / Others buttons */
.comparison-labels span {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

/* Bottom drag text */
.comparison-hint {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.comparison-image-wrap {
  border-radius: 12px !important;
  overflow: hidden !important;
}
.comparison-image-wrap,
.comparison-image,
.comparison-left,
.comparison-right {
  border-radius: 12px !important;
}

.comparison-image-wrap,
.comparison-left-wrap {
  overflow: hidden !important;
}
/* FORCE rounded corners on comparison sliders */
.comparison-section .comparison-image-wrap,
.comparison-section .comparison-image-wrap.comparison-circle {
  border-radius: 14px !important;
  overflow: hidden !important;
  clip-path: inset(0 round 14px) !important;
}

/* Keep both images clipped inside the rounded box */
.comparison-section .comparison-right,
.comparison-section .comparison-left,
.comparison-section .comparison-left-wrap {
  overflow: hidden !important;
}

/* Don't create rounded edges in the middle of the slider */
.comparison-section .comparison-right,
.comparison-section .comparison-left {
  border-radius: 0 !important;
}
/* Only make the RECTANGLE slider fill the box */
.comparison-section .comparison-rectangle .comparison-image,
.comparison-section .comparison-rectangle .comparison-left,
.comparison-section .comparison-rectangle .comparison-right {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Keep the CRYSTAL slider fully visible */
.comparison-section .comparison-circle .comparison-image,
.comparison-section .comparison-circle .comparison-left,
.comparison-section .comparison-circle .comparison-right {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.comparison-section .comparison-image-wrap {
  background: transparent !important;
}
/* Premium Materials rectangle */
.comparison-section .comparison-rectangle {
  border-radius: 18px !important;
  overflow: hidden !important;
  clip-path: none !important;
}

.comparison-section .comparison-rectangle .comparison-image {
  object-fit: cover !important;
  border-radius: 0 !important;
}

/* 5A Crystal - leave it circular */
.comparison-section .comparison-circle {
  border-radius: 50% !important;
  overflow: hidden !important;
  clip-path: none !important;
  background: #000 !important;
}

.comparison-section .comparison-circle .comparison-image {
  object-fit: contain !important;
  border-radius: 0 !important;
}
.awakened-bundler {
  width: 100%;
  margin-top: 24px;
}

.awakened-bundler #bundler-target-element {
  width: 100%;
  max-width: 100%;
}
/* SOFT HERO BOTTOM FADE — SAFE VERSION */

.hero__media {
  background: #ffffff;
}

.hero__media img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 82%,
    rgba(0, 0, 0, 0.8) 88%,
    rgba(0, 0, 0, 0.35) 95%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 82%,
    rgba(0, 0, 0, 0.8) 88%,
    rgba(0, 0, 0, 0.35) 95%,
    transparent 100%
  );
}
@font-face { font-family: Coolvetica; src: url('/cdn/shop/files/Coolvetica_Rg.otf?v=1787423149'); } 
h2 {
  font-family: Coolvetica_Rg !important;
}
/* FORCE COOLVETICA ON HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.title,
.section-title,
.collection__title,
.collection__title .title {
  font-family: 'Coolvetica', Arial, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
/* ========================================
   JUDGE.ME WRITE A REVIEW BUTTON
======================================== */

button[data-testid="write-review-button"] {
  background: #f565c4 !important;
  color: #ffffff !important;

  /* SHARP / SQUARE CORNERS */
  border-radius: 0px !important;

  /* REMOVE DEFAULT BORDER */
  border: 1px solid #ffbde6 !important;

  /* LIGHT PINK GLOW */
  box-shadow:
    0 0 5px rgba(255, 190, 230, 0.95),
    0 0 12px rgba(255, 190, 230, 0.70),
    0 0 22px rgba(255, 190, 230, 0.45),
    0 0 35px rgba(255, 190, 230, 0.20) !important;

  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease !important;
}


/* HOVER EFFECT */
button[data-testid="write-review-button"]:hover {
  background: #ff72c9 !important;

  box-shadow:
    0 0 7px rgba(255, 195, 232, 1),
    0 0 16px rgba(255, 195, 232, 0.85),
    0 0 28px rgba(255, 195, 232, 0.55),
    0 0 45px rgba(255, 195, 232, 0.30) !important;

  transform: translateY(-1px);
}

