/* ==========================================================================
   EUPHORIA JEWELLERY — HOME PAGE
   Angara-inspired, self-contained stylesheet. Every class is prefixed "ej-"
   so it can be pasted into Elementor › Site Settings › Custom CSS (or a child
   theme) without clashing with Hello / Astra / WooCommerce styles.
   Font (Montserrat, for body and headings) is loaded in <head>; in Elementor set
   it under Site Settings › Global Fonts instead.
   ========================================================================== */

:root {
  --ej-ink: #1d1d1f;
  --ej-text: #4a4a4a;
  --ej-muted: #7c7c7c;
  --ej-line: #e6e6e6;
  --ej-soft: #f4f4f4;
  --ej-sand: #f7f2eb;
  --ej-taupe: rgba(92, 76, 56, .84);
  --ej-gold: #a4812f;
  --ej-gold-soft: #d8bd7a;
  --ej-night: #141311;
  --ej-white: #fff;
  --ej-font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --ej-max: 1200px;
  --ej-gutter: clamp(16px, 4vw, 40px);
  --ej-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
.ej-home *,
.ej-home *::before,
.ej-home *::after {
  box-sizing: border-box;
}

body.ej-home {
  margin: 0;
  font-family: var(--ej-font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ej-text);
  background: var(--ej-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Resets use :where() (zero specificity) so component classes always win. */
:where(.ej-home) img {
  max-width: 100%;
  height: auto;
  display: block;
}

:where(.ej-home) a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

:where(.ej-home) button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

:where(.ej-home) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:where(.ej-home) :is(h1, h2, h3, h4, p, figure) {
  margin: 0;
}

.ej-home :focus-visible {
  outline: 2px solid var(--ej-gold);
  outline-offset: 3px;
}

.ej-home [hidden] {
  display: none !important;
}

.ej-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ej-skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--ej-ink);
  color: #fff;
  padding: 10px 16px;
  transition: top .2s;
}

.ej-skip:focus {
  top: 12px;
}

.ej-container {
  width: 100%;
  max-width: var(--ej-max);
  margin-inline: auto;
  padding-inline: var(--ej-gutter);
}

.ej-section {
  padding-block: clamp(44px, 6vw, 72px);
}

.ej-section--tight {
  padding-block: clamp(26px, 3.5vw, 40px);
}

.ej-section--soft {
  background: var(--ej-soft);
}

.ej-head {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.ej-title {
  font-family: var(--ej-font);
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 24px);
  letter-spacing: .01em;
  line-height: 1.3;
  color: var(--ej-ink);
}

.ej-subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ej-muted);
}

.ej-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ej-gold);
}

.ej-center {
  text-align: center;
  margin-top: clamp(24px, 3vw, 34px);
}

/* ---------- Buttons ---------- */
.ej-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 34px;
  border: 1px solid var(--ej-ink);
  background: transparent;
  color: var(--ej-ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  transition: background .3s var(--ej-ease), color .3s var(--ej-ease), border-color .3s var(--ej-ease);
}

.ej-btn:hover {
  background: var(--ej-ink);
  color: #fff;
}

.ej-btn--wide {
  min-width: 210px;
}

.ej-btn--solid {
  background: var(--ej-ink);
  color: #fff;
}

.ej-btn--solid:hover {
  background: var(--ej-gold);
  border-color: var(--ej-gold);
}

.ej-btn--light {
  border-color: #fff;
  color: #fff;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.ej-btn--light:hover {
  background: #fff;
  color: var(--ej-ink);
}

.ej-link {
  font-size: 12px;
  color: var(--ej-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .2s;
}

.ej-link:hover {
  color: var(--ej-gold);
}

/* ---------- Announcement bar ---------- */
.ej-announce {
  position: relative;
  height: 34px;
  overflow: hidden;
  background: var(--ej-night);
  color: #fff;
  font-size: 11px;
  letter-spacing: .04em;
}

.ej-announce__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 16px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .5s, transform .5s var(--ej-ease);
}

.ej-announce__item.is-active {
  opacity: 1;
  transform: none;
}

.ej-announce__item.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

.ej-announce__item i {
  font-size: 14px;
  color: var(--ej-gold-soft);
}

.ej-announce__item a {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

/* ---------- Header ---------- */
.ej-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  transition: box-shadow .3s;
}

.ej-header.is-stuck {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.ej-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 88px;
}

.ej-header__start {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ej-header__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ej-text);
}

.ej-header__contact i {
  font-size: 15px;
}

.ej-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ej-logo {
  display: flex;
  align-items: center;
  justify-self: center;
}

.ej-logo__img {
  display: block;
  width: auto;
  height: 68px;
}

.ej-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.ej-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(230px, 100%);
  height: 36px;
  padding: 0 12px;
  background: var(--ej-soft);
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
}

.ej-search:focus-within {
  background: #fff;
  border-color: #cfcfcf;
}

.ej-search i {
  font-size: 17px;
  color: var(--ej-text);
}

.ej-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ej-ink);
  outline: none;
}

.ej-search input::placeholder {
  color: #9a9a9a;
  text-transform: uppercase;
}

.ej-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 21px;
  color: var(--ej-ink);
  transition: color .2s;
}

.ej-icon-btn:hover {
  color: var(--ej-gold);
}

.ej-icon-btn--search {
  display: none;
}

.ej-badge {
  position: absolute;
  top: 1px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--ej-gold);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.ej-badge.is-bump {
  animation: ej-bump .4s var(--ej-ease);
}

@keyframes ej-bump {
  50% {
    transform: scale(1.35);
  }
}

.ej-msearch {
  display: none;
  padding: 0 var(--ej-gutter) 12px;
}

.ej-msearch.is-open {
  display: block;
}

.ej-msearch .ej-search {
  width: 100%;
  height: 42px;
}

/* ---------- Primary navigation + mega menu ---------- */
.ej-nav__list {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.ej-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ej-ink);
}

.ej-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ej-ease);
}

.ej-nav__item:hover>.ej-nav__link::after,
.ej-nav__item:focus-within>.ej-nav__link::after {
  transform: scaleX(1);
}

.ej-nav__link--accent {
  color: var(--ej-gold);
}

.ej-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--ej-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s var(--ej-ease), visibility .25s;
}

.ej-nav__item:hover>.ej-mega,
.ej-nav__item:focus-within>.ej-mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ej-mega__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.35fr;
  gap: 32px;
  padding-block: 30px;
}

.ej-mega h4 {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ej-ink);
}

.ej-mega li+li {
  margin-top: 9px;
}

.ej-mega a {
  font-size: 13px;
  color: var(--ej-text);
  transition: color .2s;
}

.ej-mega a:hover {
  color: var(--ej-gold);
}

.ej-mega__promo {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ej-sand);
}

.ej-mega__promo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s var(--ej-ease);
}

.ej-mega__promo:hover img {
  transform: scale(1.04);
}

.ej-mega__promo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 14px;
  background: var(--ej-taupe);
  color: #fff !important;
  font-family: var(--ej-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ---------- Mobile drawer ---------- */
.ej-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  width: min(340px, 86vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .35s var(--ej-ease), visibility .35s;
}

.ej-drawer.is-open {
  transform: none;
  visibility: visible;
}

.ej-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ej-line);
}

.ej-drawer__head .ej-logo__img {
  height: 44px;
}

.ej-drawer__close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.ej-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px 24px;
}

.ej-acc {
  border-bottom: 1px solid var(--ej-line);
}

.ej-acc>summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ej-ink);
}

.ej-acc>summary::-webkit-details-marker {
  display: none;
}

.ej-acc>summary i {
  transition: transform .25s;
}

.ej-acc[open]>summary i {
  transform: rotate(45deg);
}

.ej-acc ul {
  padding: 0 0 12px 4px;
}

.ej-acc li a {
  display: block;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--ej-text);
}

.ej-drawer__link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--ej-line);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ej-ink);
}

.ej-drawer__foot {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  background: var(--ej-soft);
  font-size: 12.5px;
}

.ej-drawer__foot a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ej-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 19, 17, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.ej-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

body.ej-lock {
  overflow: hidden;
}

/* ---------- Hero slider ---------- */
.ej-hero {
  position: relative;
  overflow: hidden;
  background: #e9e4dc;
}

.ej-hero__viewport {
  display: grid;
}

.ej-hero__slide {
  grid-area: 1 / 1;
  position: relative;
  width: 100%; /* without this, max-height shrinks the width through the aspect ratio (gap on the right) */
  aspect-ratio: 16 / 7;
  min-height: 400px;
  max-height: 680px;
  background: var(--ej-hero-bg, #1a130c);
  color: var(--ej-hero-ink, #fff);
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ej-ease), visibility .9s;
}

.ej-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.ej-hero__slide.is-prev {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: none;
}

.ej-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: var(--ej-hero-pos, center);
  transform: scale(1.05);
  transition: transform 7s linear;
}

.ej-hero__slide.is-active .ej-hero__img {
  transform: scale(1);
}

/* Wide screens / zoomed out: from 1555px the hero stops growing taller (max-height), so rather
   than cropping the banner, pin it to the right at full height and fill the left with the
   banner's own edge colour (--ej-hero-fill), blended in with a soft fade. */
@media (min-width: 1555px) {
  .ej-hero__slide {
    background: var(--ej-hero-fill, var(--ej-hero-bg, #1a130c));
  }

  .ej-hero__img {
    left: auto;
    width: auto;
    max-width: none;
    aspect-ratio: 16 / 9;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%);
    mask-image: linear-gradient(90deg, transparent 0, #000 22%);
  }
}

.ej-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.ej-hero__copy {
  width: min(520px, 100%);
  text-align: center;
}

.ej-hero__copy>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ej-ease), transform .7s var(--ej-ease);
}

.ej-hero__slide.is-active .ej-hero__copy>* {
  opacity: 1;
  transform: none;
}

.ej-hero__slide.is-active .ej-hero__copy> :nth-child(2) {
  transition-delay: .12s;
}

.ej-hero__slide.is-active .ej-hero__copy> :nth-child(3) {
  transition-delay: .22s;
}

.ej-hero__slide.is-active .ej-hero__copy> :nth-child(4) {
  transition-delay: .32s;
}

.ej-hero__slide.is-active .ej-hero__copy> :nth-child(5) {
  transition-delay: .42s;
}

.ej-hero__eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .9;
}

.ej-hero__title {
  font-family: var(--ej-font);
  font-weight: 500;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: inherit;
}

.ej-hero__rule {
  height: 1px;
  margin: 18px 0 14px;
  background: currentColor;
  opacity: .7;
}

.ej-hero__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.ej-hero__stat strong {
  display: block;
  font-family: var(--ej-font);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
}

.ej-hero__stat span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ej-hero__divider {
  width: 1px;
  background: currentColor;
  opacity: .6;
}

.ej-hero__cta {
  margin-top: 26px;
}

.ej-hero__slide--light .ej-btn--light {
  border-color: var(--ej-ink);
  color: var(--ej-ink);
}

.ej-hero__slide--light .ej-btn--light:hover {
  background: var(--ej-ink);
  color: #fff;
}

.ej-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .88);
  color: var(--ej-ink);
  font-size: 18px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity .3s, background .2s;
}

.ej-hero:hover .ej-hero__arrow,
.ej-hero__arrow:focus-visible {
  opacity: 1;
}

.ej-hero__arrow:hover {
  background: #fff;
}

.ej-hero__arrow--prev {
  left: 20px;
}

.ej-hero__arrow--next {
  right: 20px;
}

.ej-hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ej-hero__dots .ej-dot {
  background: rgba(255, 255, 255, .5);
}

.ej-hero__dots .ej-dot.is-active {
  background: #fff;
}

.ej-hero.is-light .ej-hero__dots .ej-dot {
  background: rgba(0, 0, 0, .18);
}

.ej-hero.is-light .ej-hero__dots .ej-dot.is-active {
  background: var(--ej-ink);
}

.ej-promise.is-offscreen .ej-promise__bar.is-active span {
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .ej-announce__item {
    font-size: 10.5px;
  }
}

.ej-dot {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #d4d4d4;
  transition: width .3s var(--ej-ease), background .3s;
}

.ej-dot.is-active {
  width: 24px;
  background: var(--ej-ink);
}

/* ---------- Trust strip ---------- */
.ej-trust {
  padding-block: 22px;
}

.ej-trust__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 44px;
}

.ej-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #000000;
}

.ej-trust__icon {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ej-soft);
  font-size: 16px;
  color: var(--ej-ink);
}

/* ---------- Image tiles (Trending on / Celebrate with) ---------- */
.ej-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ej-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ej-sand);
}

.ej-tile img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .9s var(--ej-ease);
}

.ej-tile:hover img {
  transform: scale(1.05);
}

.ej-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 9px;
  background: var(--ej-taupe);
  color: #fff;
  text-align: center;
  font-family: var(--ej-font);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.3;
  letter-spacing: .02em;
}

.ej-tile__label small {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: var(--ej-font);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: max-height .35s var(--ej-ease), opacity .35s, margin .35s;
}

.ej-tile:hover .ej-tile__label small,
.ej-tile:focus-visible .ej-tile__label small {
  max-height: 20px;
  margin-top: 3px;
  opacity: .9;
}

/* ---------- Breadcrumb (product, shop and collection pages) ---------- */
.ej-crumbs {
  padding-block: 14px 12px;
  font-size: 11px;
  color: var(--ej-muted);
}

.ej-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ej-crumbs li+li::before {
  content: "/";
  margin-right: 6px;
  color: #bdbdbd;
}

.ej-crumbs a:hover {
  color: var(--ej-ink);
}

.ej-crumbs [aria-current] {
  color: var(--ej-text);
}

/* ---------- Product carousel ---------- */
.ej-carousel {
  position: relative;
}

.ej-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 20px) / 4);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.ej-carousel__track::-webkit-scrollbar {
  display: none;
}

.ej-carousel__track>* {
  scroll-snap-align: start;
}

.ej-carousel__nav {
  position: absolute;
  top: 34%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ej-ink);
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  transition: opacity .25s, background .2s;
}

.ej-carousel__nav:hover {
  background: var(--ej-ink);
  color: #fff;
}

.ej-carousel__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.ej-carousel__nav--prev {
  left: -20px;
}

.ej-carousel__nav--next {
  right: -20px;
}

.ej-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.ej-carousel__dots .ej-dot {
  width: 6px;
  height: 6px;
}

.ej-carousel__dots .ej-dot.is-active {
  width: 20px;
}

.ej-fade {
  transition: opacity .25s;
}

.ej-fade.is-swapping {
  opacity: 0;
}

/* ---------- Product card (mirrors a WooCommerce loop item) ---------- */
.ej-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding-bottom: 25px;
}

.ej-card__figure {
  position: relative;
}

.ej-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fff;
}

.ej-card__media img {
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  transition: transform .7s var(--ej-ease);
}

.ej-card:hover .ej-card__media img {
  transform: scale(1.06);
}

.ej-card__tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 3px 8px;
  background: var(--ej-sand);
  color: var(--ej-gold);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ej-card__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  color: var(--ej-ink);
  font-size: 16px;
  transition: color .2s, transform .2s;
}

.ej-card__wish:hover {
  transform: scale(1.1);
}

.ej-card__wish[aria-pressed="true"] {
  color: #c0392b;
}

.ej-card__cta {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ej-ink);
  color: #fff !important;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s var(--ej-ease), background .2s;
}

.ej-card:hover .ej-card__cta,
.ej-card__cta:focus-visible {
  opacity: 1;
  transform: none;
}

.ej-card__cta:hover {
  background: var(--ej-gold);
}

.ej-card__body {
  padding: 14px 4px 0;
}

.ej-card__meta {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ej-gold);
}

.ej-card__title {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  color: #5c5c5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.1em;
}

.ej-card__title a:hover {
  color: var(--ej-ink);
}

.ej-card__price {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ej-ink);
}

.ej-card__price small {
  margin-right: 3px;
  font-size: 11.5px;
  font-weight: 300;
  color: var(--ej-muted);
}

.ej-card--more .ej-card__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: var(--ej-sand);
  text-align: center;
}

.ej-card--more i {
  font-size: 30px;
  color: var(--ej-gold);
}

.ej-card--more strong {
  font-family: var(--ej-font);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ej-ink);
}

.ej-card--more span {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ej-text);
  border-bottom: 1px solid currentColor;
}

@media (hover: none) {
  .ej-card__cta {
    position: static;
    margin-top: 10px;
    min-height: 36px;
    opacity: 1;
    transform: none;
    background: transparent;
    color: var(--ej-ink) !important;
    border: 1px solid var(--ej-ink);
  }
}

/* ---------- Story split (sketch to sparkle) ---------- */
.ej-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ej-soft);
}

.ej-story__media {
  overflow: hidden;
}

.ej-story__media img {
  width: 100%;
  height: 100% !important;
  min-height: 320px;
  object-fit: cover;
}

.ej-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  text-align: center;
}

.ej-story__title {
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ej-ink);
}

.ej-story__by {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ej-text);
}

.ej-story__text {
  max-width: 520px;
  margin-top: 10px;
  font-size: 12.5px;
}

.ej-story__facts {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  margin: 24px 0;
}

.ej-story__fact strong {
  display: block;
  font-family: var(--ej-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ej-ink);
}

.ej-story__fact span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ej-muted);
}

/* ---------- Payment options band ---------- */
.ej-pay {
  position: relative;
  overflow: hidden;
  background: var(--ej-night);
  color: #e9e4da;
}

.ej-pay::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 189, 122, .22);
  pointer-events: none;
}

.ej-pay__grid {
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  gap: 40px;
  align-items: center;
}

.ej-pay .ej-title {
  color: #fff;
}

.ej-pay__intro p {
  margin-top: 10px;
  font-size: 13px;
  color: #b9b2a5;
}

.ej-pay__intro .ej-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--ej-gold-soft);
}

.ej-pay__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ej-pay__opt {
  padding: 22px 14px;
  border: 1px solid rgba(216, 189, 122, .28);
  text-align: center;
  transition: border-color .3s, background .3s;
}

.ej-pay__opt:hover {
  border-color: var(--ej-gold-soft);
  background: rgba(216, 189, 122, .06);
}

.ej-pay__opt i {
  font-size: 28px;
  color: var(--ej-gold-soft);
}

.ej-pay__opt h3 {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.ej-pay__opt p {
  margin-top: 4px;
  font-size: 11.5px;
  color: #a9a294;
}

.ej-banks {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ej-banks__label {
  margin-bottom: 16px;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ej-gold-soft);
}

.ej-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ej-marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ej-marquee 45s linear infinite;
}

.ej-marquee:hover .ej-marquee__track {
  animation-play-state: paused;
}

.ej-bank {
  flex: none;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #f1ece3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

@keyframes ej-marquee {
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

/* ---------- Tabs ---------- */
.ej-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  margin-bottom: 26px;
  overflow-x: auto;

  scrollbar-width: none;
}

.ej-tabs::-webkit-scrollbar {
  display: none;
}

.ej-tab {
  position: relative;
  flex: none;
  padding: 6px 6px 10px;
  font-size: 15px;
  color: var(--ej-muted);
  white-space: nowrap;
  transition: color .2s;
}

.ej-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ej-ink);
  transform: scaleX(0);
  transition: transform .3s var(--ej-ease);
}

.ej-tab:hover,
.ej-tab[aria-selected="true"] {
  color: var(--ej-ink);
}

.ej-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}

/* ---------- Shop coins by weight ---------- */
.ej-weights {
  display: flex;
  gap: clamp(14px, 2.6vw, 34px);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 4px 10px;
  scroll-snap-type: x mandatory;
}

.ej-weights::-webkit-scrollbar {
  display: none;
}

.ej-weights> :first-child {
  margin-left: auto;
}

.ej-weights> :last-child {
  margin-right: auto;
}

.ej-weight {
  display: block;
  flex: none;
  width: 88px;
  text-align: center;
  scroll-snap-align: start;
}

.ej-weight__img {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transition: transform .35s var(--ej-ease), box-shadow .35s;
}

.ej-weight__img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.14);
}

.ej-weight:hover .ej-weight__img {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.ej-weight__name {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  font-size: 12.5px;
  color: var(--ej-ink);
  transition: border-color .25s;
}

.ej-weight:hover .ej-weight__name {
  border-color: var(--ej-gold);
}

.ej-weight__meta {
  display: block;
  font-size: 10.5px;
  color: var(--ej-muted);
}

.ej-weights__sep {
  flex: none;
  width: 1px;
  margin: 8px 2px 34px;
  background: var(--ej-line);
}

/* ---------- The Edit (journal) ---------- */
.ej-edit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ej-post__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 800 / 520;
  background: var(--ej-sand);
}

.ej-post__media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .8s var(--ej-ease);
}

.ej-post:hover .ej-post__media img {
  transform: scale(1.05);
}

.ej-post__body {
  padding: 12px 4px 0;
}

.ej-post__tag {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ej-gold);
}

.ej-post__title {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ej-ink);
}

.ej-post .ej-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
}

/* ---------- The Euphoria Promise ---------- */
.ej-promise__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.ej-promise__intro {
  margin-top: 8px;
  font-size: 12.5px;
}

.ej-promise__detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 86px;
  margin-top: 18px;
  padding: 16px 18px;
  background: #fff;
}

.ej-promise__num {
  min-width: 26px;
  font-family: var(--ej-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ej-ink);
}

.ej-promise__detail h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ej-gold);
}

.ej-promise__detail p {
  margin-top: 2px;
  font-size: 12px;
}

.ej-promise__pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ej-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: #fff;
  color: var(--ej-ink);
  font-size: 12px;
  text-align: left;
  transition: background .25s, color .25s;
}

.ej-pill i {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--ej-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ej-ink);
  font-size: 15px;
}

.ej-pill:hover {
  background: #ececec;
}

.ej-pill[aria-selected="true"] {
  background: var(--ej-ink);
  color: #fff;
}

.ej-promise__stage {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9e9e9;
}

.ej-promise__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s;
}

.ej-promise__img.is-active {
  opacity: 1;
}

.ej-promise__bars {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  gap: 6px;
}

.ej-promise__bar {
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .55);
}

.ej-promise__bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ej-ink);
}

.ej-promise__bar.is-done span {
  width: 100%;
}

.ej-promise__bar.is-active span {
  animation: ej-fill var(--ej-promise-ms, 5000ms) linear forwards;
}

.ej-promise.is-paused .ej-promise__bar.is-active span {
  animation-play-state: paused;
}

@keyframes ej-fill {
  to {
    width: 100%;
  }
}

/* ---------- Reviews ---------- */
.ej-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12.5px;
}

.ej-reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ej-review {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 18px;
  border: 1px solid var(--ej-line);
  background: #fff;
  text-align: center;
  scroll-snap-align: start;
}

.ej-review__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ej-sand);
}

.ej-review__media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.ej-stars {
  margin-top: 12px;
  color: #e8a33d;
  font-size: 15px;
  letter-spacing: 2px;
}

.ej-review__text {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ej-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ej-review.is-open .ej-review__text {
  display: block;
}

.ej-review__more {
  align-self: center;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ej-ink);
  text-decoration: underline;
}

.ej-review__name {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ej-ink);
}

.ej-review__meta {
  font-size: 11px;
  color: var(--ej-muted);
}

/* ---------- Instagram ---------- */
.ej-insta__head {
  margin-bottom: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ej-ink);
}

.ej-insta__head a {
  border-bottom: 1px solid currentColor;
}

.ej-insta__tag {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ej-gold);
}

.ej-insta {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ej-insta__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}

.ej-insta__item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .8s var(--ej-ease);
}

.ej-insta__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 17, .35);
  opacity: 0;
  transition: opacity .3s;
}

.ej-insta__item i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: 28px;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.8);
  transition: opacity .3s, transform .3s var(--ej-ease);
}

.ej-insta__item:hover img {
  transform: scale(1.06);
}

.ej-insta__item:hover::after,
.ej-insta__item:hover i {
  opacity: 1;
}

.ej-insta__item:hover i {
  transform: translate(-50%, -50%) scale(1);
}

/* ---------- Newsletter ---------- */
.ej-news {
  text-align: center;
  border-top: 1px solid var(--ej-line);
}

.ej-news__title {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--ej-ink);
}

.ej-news__title em {
  font-style: normal;
  color: var(--ej-gold);
}

.ej-news__form {
  display: flex;
  max-width: 440px;
  margin: 18px auto 0;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.ej-news__prefix {
  display: flex;
  align-items: center;
  padding: 0 10px 0 14px;
  border-right: 1px solid var(--ej-line);
  font-size: 12px;
  color: var(--ej-muted);
}

.ej-news__form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 0;
  outline: none;
  font: inherit;
  font-size: 13px;
  color: var(--ej-ink);
}

.ej-news__form button {
  padding: 0 26px;
  background: var(--ej-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: background .2s;
}

.ej-news__form button:hover {
  background: var(--ej-gold);
}

.ej-news__msg {
  min-height: 20px;
  margin-top: 8px;
  font-size: 12px;
}

.ej-news__msg.is-error {
  color: #b3261e;
}

.ej-news__msg.is-ok {
  color: #2e7d32;
}

.ej-news__note {
  font-size: 11.5px;
  color: var(--ej-muted);
}

.ej-news__note a {
  text-decoration: underline;
}

.ej-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--ej-muted);
}

.ej-social a {
  font-size: 19px;
  color: var(--ej-ink);
  transition: color .2s;
}

.ej-social a:hover {
  color: var(--ej-gold);
}

/* ---------- Footer ---------- */
.ej-footer {
  background: var(--ej-soft);
  color: var(--ej-text);
  font-size: 12.5px;
}

.ej-footer__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-block: 48px 36px;
}

.ej-fcol>summary {
  list-style: none;
  pointer-events: none;
}

.ej-fcol>summary::-webkit-details-marker {
  display: none;
}

.ej-fcol>summary i {
  display: none;
}

.ej-fcol h3 {
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ej-ink);
}

.ej-fcol+.ej-fcol--stack {
  margin-top: 26px;
}

.ej-fcol li+li {
  margin-top: 8px;
}

.ej-footer a {
  transition: color .2s;
}

.ej-footer a:hover {
  color: var(--ej-ink);
}

.ej-footer__contact a,
.ej-footer__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ej-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding: 16px var(--ej-gutter);
  background: #fff;
}

.ej-payments svg {
  height: 22px;
  width: auto;
}

.ej-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 18px;
  font-size: 11.5px;
}

.ej-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.ej-footer__credit a {
  font-weight: 500;
  color: var(--ej-ink);
}

/* ---------- SEO copy ---------- */
.ej-seo {
  padding-block: 34px 70px;
  font-size: 12px;
}

.ej-seo__body {
  position: relative;
  max-height: 190px;
  overflow: hidden;
  transition: max-height .5s var(--ej-ease);
}

.ej-seo__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fff);
  transition: opacity .3s;
}

.ej-seo.is-open .ej-seo__body {
  max-height: 1400px;
}

.ej-seo.is-open .ej-seo__body::after {
  opacity: 0;
}

.ej-seo h2 {
  margin: 16px 0 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ej-ink);
}

.ej-seo h2:first-child {
  margin-top: 0;
}

.ej-seo p {
  line-height: 1.75;
}

.ej-seo a {
  text-decoration: underline;
}

.ej-seo__list {
  margin-top: 12px;
  display: grid;
  gap: 4px;
}

.ej-seo__toggle {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ej-ink);
  text-decoration: underline;
}

/* ---------- Floating WhatsApp + toast ---------- */
.ej-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff !important;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform .25s;
}

.ej-wa:hover {
  transform: scale(1.07);
}

.ej-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #25d366;
  opacity: .5;
  animation: ej-pulse 2.4s infinite;
}

@keyframes ej-pulse {
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

.ej-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ej-ink);
  color: #fff;
  font-size: 12.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity .3s, transform .3s var(--ej-ease);
}

.ej-toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ej-toast i {
  font-size: 17px;
  color: var(--ej-gold-soft);
}

/* ---------- WooCommerce loop in the same card style ----------
   Add the class "ej-woo" to Elementor's Products / Product Archive widget. */
.ej-woo ul.products li.product {
  text-align: left;
}

.ej-woo ul.products li.product a img {
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 12px !important;
  background: #fff;
}

.ej-woo ul.products li.product .woocommerce-loop-product__title {
  padding: 0 !important;
  font-family: var(--ej-font);
  font-size: 12.5px !important;
  font-weight: 300;
  line-height: 1.55;
  color: #5c5c5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ej-woo ul.products li.product .price {
  margin-top: 6px;
  font-size: 13.5px !important;
  font-weight: 500;
  color: var(--ej-ink) !important;
}

.ej-woo ul.products li.product .button {
  width: 100%;
  margin-top: 10px;
  padding: 11px 10px;
  border: 1px solid var(--ej-ink);
  border-radius: 0;
  background: transparent;
  color: var(--ej-ink);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s, color .2s;
}

.ej-woo ul.products li.product .button:hover {
  background: var(--ej-ink);
  color: #fff;
}

.ej-woo ul.products li.product .onsale {
  min-height: 0;
  min-width: 0;
  padding: 3px 8px;
  border-radius: 0;
  background: var(--ej-sand);
  color: var(--ej-gold);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---------- Scroll reveal (only when JS is running) ---------- */
.ej-js .ej-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ej-ease), transform .8s var(--ej-ease);
}

.ej-js .ej-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   RESPONSIVE — matches Elementor's default breakpoints (1024 / 767)
   ========================================================================== */
@media (max-width: 1100px) {
  .ej-search {
    width: 180px;
  }

  .ej-pay__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ej-promise__pills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .ej-burger {
    display: inline-flex;
  }

  .ej-header__contact,
  .ej-nav,
  .ej-search--desktop {
    display: none;
  }

  .ej-icon-btn--search {
    display: inline-flex;
  }

  .ej-header__bar {
    min-height: 64px;
    gap: 8px;
  }

  .ej-header__tools {
    gap: 4px;
  }

  .ej-logo__img {
    height: 50px;
  }

  .ej-carousel__track {
    grid-auto-columns: calc((100% - 2 * 16px) / 3);
    gap: 16px;
  }

  .ej-carousel__nav--prev {
    left: -8px;
  }

  .ej-carousel__nav--next {
    right: -8px;
  }

  .ej-story {
    grid-template-columns: 1fr;
  }

  .ej-promise__grid {
    grid-template-columns: 1fr;
  }

  .ej-promise__stage {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .ej-reviews {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(240px, 42%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .ej-footer__cols {
    grid-template-columns: 1fr 1fr;
  }

  .ej-pay__options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ej-hero__slide {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
  }

  .ej-hero__img {
    position: relative;
    height: clamp(230px, 64vw, 340px) !important;
    object-position: 72% center;
  }

  .ej-hero__content {
    height: auto;
    padding-block: 26px 56px;
  }

  .ej-hero__copy {
    margin-inline: auto;
  }

  .ej-hero__arrow {
    display: none;
  }

  .ej-trust {
    padding-block: 18px 6px;
  }

  .ej-trust__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ej-trust__item {
    font-size: 11.5px;
  }

  .ej-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ej-tile__label {
    font-size: 13.5px;
  }

  .ej-carousel__track {
    grid-auto-columns: calc((100% - 12px) / 2.15);
    gap: 12px;
  }

  .ej-carousel__nav {
    display: none;
  }

  .ej-edit {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 82%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ej-edit>* {
    scroll-snap-align: start;
  }

  .ej-reviews {
    grid-auto-columns: 78%;
  }

  .ej-insta {
    gap: 6px;
  }

  .ej-pay__options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ej-pay__opt {
    padding: 16px 10px;
  }

  .ej-promise__pills {
    grid-template-columns: 1fr 1fr;
  }

  .ej-footer__cols {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 20px;
  }

  .ej-fcol {
    border-bottom: 1px solid #e0e0e0;
  }

  .ej-fcol+.ej-fcol--stack {
    margin-top: 0;
  }

  .ej-fcol>summary {
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
  }

  .ej-fcol>summary h3 {
    margin: 0;
  }

  .ej-fcol>summary i {
    display: inline-block;
    transition: transform .25s;
  }

  .ej-fcol[open]>summary i {
    transform: rotate(45deg);
  }

  .ej-fcol ul,
  .ej-fcol .ej-footer__contact {
    padding-bottom: 14px;
  }

  .ej-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .ej-footer__legal {
    justify-content: center;
  }

  .ej-news__form button {
    padding: 0 16px;
  }

  .ej-wa {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .ej-icon-btn--account {
    display: none;
  }
}

@media (max-width: 400px) {
  .ej-icon-btn {
    width: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

  .ej-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .ej-marquee__track [aria-hidden="true"] {
    display: none;
  }

  .ej-js .ej-reveal {
    opacity: 1;
    transform: none;
  }
}