/* ==========================================================================
   EMPIRE WATCHES — PREMIUM EXPERIENCE LAYER (v2)
   Loaded AFTER style.css. Adds the cinematic header, hero, motion system,
   product-card interactions and section rhythm.
   ========================================================================== */

:root {
  --ease: cubic-bezier(.16, 1, .3, 1);
  --grad-gold: linear-gradient(100deg, #D4AF37 0%, #F4E08C 45%, #C9A227 100%);
  --grad-gold-soft: linear-gradient(120deg, rgba(212,175,55,.16), rgba(201,162,39,.04));
  --ring: rgba(201, 162, 39, .28);
  --ink-90: rgba(10, 10, 10, .90);
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* --------------------------------------------------------------------------
   MOTION SYSTEM — scroll reveal + shared keyframes
   -------------------------------------------------------------------------- */
/* Reveal animations only hide content when JavaScript is confirmed running
   (the <html> element gets .ew-js). If app.js fails to load for any reason,
   every section stays fully visible instead of blank. */
.ew-js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  will-change: opacity, transform;
}
.ew-js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal][data-delay="4"] { transition-delay: .36s; }
[data-reveal][data-delay="5"] { transition-delay: .45s; }
[data-reveal][data-delay="6"] { transition-delay: .54s; }

@keyframes ew-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ew-kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
@keyframes ew-shimmer { to { background-position: 220% center; } }
@keyframes ew-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ew-cue { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(13px); opacity: 0; } }
@keyframes ew-pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.42); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  /* The gold ticker and keyword band are core brand motion — keep them moving
     even when the operating system requests reduced motion. */
  .ew-ticker-track, .ew-band-track {
    animation-duration: 34s !important;
    animation-iteration-count: infinite !important;
  }
  html { scroll-behavior: auto; }
}

/* Gold gradient text + shimmer sweep */
.ew-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ew-shimmer {
  background: linear-gradient(100deg, #C9A227 0%, #F6E9A8 28%, #FFF7DA 42%, #F0D77B 56%, #C9A227 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ew-shimmer 5.5s linear infinite;
}

/* --------------------------------------------------------------------------
   TOP BAR — animated trust ticker
   -------------------------------------------------------------------------- */
.ew-topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--ring);
  color: #E4E4E4;
}
.ew-topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 42px;
}
.ew-ticker {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ew-ticker-track {
  display: flex;
  width: max-content;
  animation: ew-marquee 34s linear infinite;
}
.ew-topbar:hover .ew-ticker-track { animation-play-state: paused; }
.ew-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-right: 52px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #C8C8C8;
  white-space: nowrap;
}
.ew-ticker-item svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.ew-ticker-item b { color: var(--gold-light); font-weight: 600; }
.ew-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #EDEDED;
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.ew-topbar-contact svg { width: 15px; height: 15px; color: var(--gold); }
.ew-topbar-contact:hover { color: var(--gold-light); }
.ew-topbar-socials { display: flex; align-items: center; gap: 4px; }
.ew-topbar-socials a {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #B9B9B9;
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.ew-topbar-socials a svg { width: 15px; height: 15px; }
.ew-topbar-socials a:hover { color: var(--ink); background: var(--gold); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   HEADER — sticky, blurred, shrink-on-scroll
   -------------------------------------------------------------------------- */
.ew-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .45s var(--ease), background .45s var(--ease);
}
.ew-header.is-stuck {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 34px rgba(0, 0, 0, .10);
}
.ew-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
  transition: height .45s var(--ease);
}
.ew-header.is-stuck .ew-header-inner { height: 66px; }

.ew-logo { display: flex; flex-direction: column; justify-content: center; flex: none; }
.ew-logo-mark {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  color: var(--ink);
  transition: font-size .45s var(--ease);
}
.ew-header.is-stuck .ew-logo-mark { font-size: 22px; }
.ew-logo-sub {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .36em;
  color: var(--muted);
  transition: opacity .35s var(--ease), margin .35s var(--ease);
}
.ew-header.is-stuck .ew-logo-sub { opacity: 0; margin-top: 0; height: 0; overflow: hidden; }

.ew-nav { display: flex; align-items: center; gap: 40px; margin: 0 auto; }
.ew-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: #191919;
  transition: color .35s var(--ease);
}
.ew-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease);
}
.ew-nav a:hover { color: var(--gold-deep); }
.ew-nav a:hover::after, .ew-nav a.is-active::after { transform: scaleX(1); }
.ew-nav a.is-active { color: var(--gold-deep); }

.ew-actions { display: flex; align-items: center; gap: 2px; flex: none; }
.ew-icon-btn {
  position: relative;
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.ew-icon-btn svg { width: 19px; height: 19px; }
.ew-icon-btn:hover { background: var(--grad-gold-soft); color: var(--gold-deep); transform: translateY(-1px); }
.ew-cart-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 19px; height: 19px;
  padding: 0 5px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
}
.ew-burger { display: none; }

/* Mobile drawer */
.ew-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
  z-index: 1400;
}
.ew-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.ew-drawer {
  position: fixed; top: 0; left: 0;
  width: min(86vw, 330px); height: 100%;
  background: var(--ink);
  color: #fff;
  padding: 26px 26px 34px;
  display: flex; flex-direction: column;
  transform: translateX(-102%);
  transition: transform .5s var(--ease);
  z-index: 1500;
  overflow-y: auto;
}
.ew-drawer.is-open { transform: none; }
.ew-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ring);
}
.ew-drawer-head .ew-logo-mark { color: #fff; font-size: 21px; }
.ew-drawer-head .ew-logo-sub { color: var(--gold); }
.ew-drawer-close {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  transition: background .3s, border-color .3s;
}
.ew-drawer-close:hover { background: rgba(201,162,39,.18); border-color: var(--gold); }
.ew-drawer-close svg { width: 18px; height: 18px; }
.ew-drawer-nav { display: flex; flex-direction: column; padding: 12px 0; }
.ew-drawer-nav a {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.ew-drawer-nav a svg { width: 15px; height: 15px; color: var(--gold); opacity: .55; }
.ew-drawer-nav a:hover, .ew-drawer-nav a.is-active { color: var(--gold-light); padding-left: 8px; }
.ew-drawer-foot { margin-top: auto; padding-top: 22px; font-size: 12.5px; color: #A9A9A9; line-height: 1.9; }
.ew-drawer-foot a { color: #E9E9E9; }
.ew-drawer-foot a:hover { color: var(--gold-light); }
.ew-drawer-foot .ew-drawer-socials { display: flex; gap: 10px; margin-top: 14px; }
.ew-drawer-foot .ew-drawer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: #fff;
  transition: background .3s, color .3s, border-color .3s;
}
.ew-drawer-foot .ew-drawer-socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.ew-drawer-foot .ew-drawer-socials svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   BUTTONS — sheen sweep
   -------------------------------------------------------------------------- */
.ew-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 54px;
  padding: 0 32px;
  border-radius: 2px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.ew-btn svg { width: 16px; height: 16px; }
.ew-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  transition: left .75s var(--ease);
}
.ew-btn:hover::before { left: 130%; }
.ew-btn-gold {
  background: var(--grad-gold);
  color: #14110A;
  box-shadow: 0 12px 30px rgba(201, 162, 39, .30);
}
.ew-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(201, 162, 39, .42); }
.ew-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.ew-btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); background: rgba(201,162,39,.10); }
.ew-btn-dark { background: var(--ink); color: #fff; }
.ew-btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.24); }

/* --------------------------------------------------------------------------
   HERO — cinematic, ken-burns background
   -------------------------------------------------------------------------- */
.ew-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 720px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.ew-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center right / cover no-repeat;
  animation: ew-kenburns 22s ease-in-out infinite alternate;
}
.ew-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,.96) 0%, rgba(8,8,8,.86) 38%, rgba(10,10,10,.34) 68%, rgba(10,10,10,.18) 100%),
    radial-gradient(70% 90% at 12% 50%, rgba(201,162,39,.14), transparent 70%);
}
.ew-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 104px 0;
}
.ew-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ew-eyebrow::before {
  content: "";
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ew-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 74px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: .005em;
  margin-bottom: 22px;
  color: #fff;
}
.ew-hero h1 span { display: block; }
.ew-hero-lede {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
}
.ew-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.ew-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.ew-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ew-stat-label {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
}
.ew-vtag {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  z-index: 2;
}
.ew-vtag::after {
  content: "";
  display: block;
  width: 1px; height: 74px;
  margin: 18px auto 0;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.ew-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 13px;
  z-index: 2;
}
.ew-scrollcue::after {
  content: "";
  position: absolute;
  left: 50%; top: 9px;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: ew-cue 1.9s var(--ease) infinite;
}

/* --------------------------------------------------------------------------
   SECTION RHYTHM & HEADINGS
   -------------------------------------------------------------------------- */
.ew-section { padding: 92px 0; }
.ew-section-tight { padding: 64px 0; }
.ew-section-dark { background: var(--ink); color: #fff; }
.ew-section-surface { background: var(--surface); }

.ew-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.ew-head-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ew-head-eyebrow::before,
.ew-head-eyebrow::after {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .55;
}
.ew-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: .01em;
  margin-bottom: 14px;
}
.ew-head p { font-size: 15px; line-height: 1.75; color: #5F5F5F; }
.ew-section-dark .ew-head p { color: rgba(255,255,255,.66); }
.ew-section-dark .ew-head-eyebrow { color: var(--gold-light); }
.ew-head-left { margin-left: 0; text-align: left; }

/* Gold marquee band */
.ew-band {
  background: var(--ink);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
  padding: 22px 0;
  overflow: hidden;
}
.ew-band-track {
  display: flex;
  width: max-content;
  animation: ew-marquee 30s linear infinite;
}
.ew-band:hover .ew-band-track { animation-play-state: paused; }
.ew-band-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 44px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.16);
  white-space: nowrap;
}
.ew-band-item .ew-band-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.ew-band-item:nth-child(odd) {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   TRUST CARDS (upgraded)
   -------------------------------------------------------------------------- */
.ew-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ew-trust-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.ew-trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--ring);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
}
.ew-trust-ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  border: 1px solid var(--ring);
  color: var(--gold-deep);
}
.ew-trust-ico svg { width: 21px; height: 21px; }
.ew-trust-card h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ew-trust-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   PRODUCT CARD — zoom, gold sweep, slide-up action
   -------------------------------------------------------------------------- */
.ew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.ew-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.ew-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .6s var(--ease);
  z-index: 3;
}
.ew-card:hover {
  transform: translateY(-8px);
  border-color: var(--ring);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .13);
}
.ew-card:hover::after { transform: scaleX(1); }

.ew-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}
.ew-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.ew-card:hover .ew-card-media img { transform: scale(1.09); }
.ew-card-badge {
  position: absolute;
  top: 13px; left: 13px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--gold-light);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ew-card-badge.is-sale { background: var(--grad-gold); color: #14110A; }
.ew-card-actions {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateY(130%);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .45s var(--ease);
}
.ew-card:hover .ew-card-actions { transform: none; opacity: 1; }
.ew-card-add {
  flex: 1;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.ew-card-add svg { width: 15px; height: 15px; }
.ew-card-add:hover { background: var(--grad-gold); color: #14110A; }
.ew-card-view {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.ew-card-view svg { width: 17px; height: 17px; }
.ew-card-view:hover { background: var(--ink); color: var(--gold-light); }

.ew-card-body { padding: 18px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.ew-card-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 9px;
}
.ew-card-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.ew-card-title a { transition: color .3s var(--ease); }
.ew-card-title a:hover { color: var(--gold-deep); }
.ew-card-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
.ew-card-rating .ew-stars { color: var(--star); font-size: 13px; letter-spacing: 1.5px; }
.ew-card-rating span { font-size: 11.5px; color: var(--muted); }
.ew-card-price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.ew-price-now { font-size: 17px; font-weight: 700; color: var(--ink); }
.ew-price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.ew-price-off {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(201, 135, 58, .12);
  color: var(--sale);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* --------------------------------------------------------------------------
   CATEGORY SPLIT TILES
   -------------------------------------------------------------------------- */
.ew-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ew-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.ew-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.3s var(--ease);
}
.ew-tile:hover .ew-tile-bg { transform: scale(1.08); }
.ew-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.10) 0%, rgba(8,8,8,.62) 62%, rgba(8,8,8,.90) 100%);
  transition: background .6s var(--ease);
}
.ew-tile:hover::after { background: linear-gradient(180deg, rgba(8,8,8,.20) 0%, rgba(8,8,8,.68) 58%, rgba(10,8,4,.94) 100%); }
.ew-tile-inner { position: relative; z-index: 2; }
.ew-tile-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.ew-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.9vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #fff;
}
.ew-tile p { font-size: 14px; color: rgba(255,255,255,.74); margin-bottom: 22px; }
.ew-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.32);
  transition: color .35s var(--ease), border-color .35s var(--ease), gap .35s var(--ease);
}
.ew-tile-link svg { width: 15px; height: 15px; }
.ew-tile:hover .ew-tile-link { color: var(--gold-light); border-color: var(--gold); gap: 17px; }

/* --------------------------------------------------------------------------
   TESTIMONIALS + COUNTERS + CTA BAND
   -------------------------------------------------------------------------- */
.ew-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ew-quote {
  padding: 34px 30px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.ew-quote:hover { transform: translateY(-6px); border-color: var(--ring); background: rgba(201,162,39,.06); }
.ew-quote-mark { font-family: var(--font-display); font-size: 46px; line-height: .8; color: var(--gold); opacity: .5; margin-bottom: 14px; }
.ew-quote-stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.ew-quote p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.84); margin-bottom: 22px; }
.ew-quote-by { display: flex; align-items: center; gap: 13px; }
.ew-quote-av {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #14110A;
  font-weight: 700;
  font-size: 14px;
}
.ew-quote-name { font-size: 13.5px; font-weight: 600; color: #fff; }
.ew-quote-role { font-size: 11.5px; color: rgba(255,255,255,.52); letter-spacing: .08em; }

.ew-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.ew-counter-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ew-counter-label {
  margin-top: 11px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.ew-section-dark .ew-counter-label { color: rgba(255,255,255,.6); }

.ew-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.ew-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(201,162,39,.20), transparent 68%);
}
.ew-cta-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.ew-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 16px;
  color: #fff;
}
.ew-cta p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 30px; }
.ew-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Floating widgets */
.btn-whatsapp-float { animation: ew-pulse-ring 2.8s infinite; }
#btn-back-top { opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s, transform .4s var(--ease); transform: translateY(10px); }
#btn-back-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* --------------------------------------------------------------------------
   ENHANCEMENTS FOR EXISTING PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--ink) !important;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 130% at 18% 0%, rgba(201,162,39,.20), transparent 66%);
}
.page-hero > * { position: relative; z-index: 2; }

.product-card { transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease); }
.product-card:hover { transform: translateY(-8px); border-color: var(--ring); box-shadow: 0 22px 52px rgba(0,0,0,.13); }
.product-thumb { overflow: hidden; }
.product-thumb img { transition: transform 1.1s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.08); }
.btn { transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .35s var(--ease), color .35s var(--ease); }
.btn-gold:hover, .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(201,162,39,.34); }
.form-control { transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.form-control:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(201,162,39,.14); outline: none; }
.trust-card, .testimonial-card { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.trust-card:hover, .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.10); }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .ew-nav { gap: 26px; }
  .ew-nav a { font-size: 11.5px; letter-spacing: .14em; }
  .ew-grid { grid-template-columns: repeat(3, 1fr); }
  .ew-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ew-header-inner, .ew-header.is-stuck .ew-header-inner { height: 66px; gap: 10px; }
  .ew-burger { display: grid; }
  .ew-nav { display: none; }
  .ew-logo { margin-right: auto; min-width: 0; }
  .ew-logo-mark { font-size: 21px; }
  .ew-logo-sub { font-size: 8.5px; letter-spacing: .26em; }
  .ew-topbar-socials { display: none; }
  .ew-hero { min-height: 0; }
  .ew-hero-inner { padding: 74px 0 84px; max-width: none; }
  .ew-hero-bg { background-position: 72% center; }
  .ew-vtag, .ew-scrollcue { display: none; }
  .ew-split { grid-template-columns: 1fr; }
  .ew-quotes { grid-template-columns: 1fr; }
  .ew-counters { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; }
  .ew-section { padding: 68px 0; }
  .ew-head { margin-bottom: 38px; }
}

@media (max-width: 700px) {
  .ew-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ew-card-body { padding: 14px 14px 18px; }
  .ew-card-title { font-size: 14.5px; }
  .ew-price-now { font-size: 15.5px; }
  .ew-price-off { display: none; }
  .ew-card-actions { position: static; transform: none; opacity: 1; left: auto; right: auto; bottom: auto; margin-top: 14px; }
  .ew-card-view { display: none; }
  .ew-topbar-contact span { display: none; }
  .ew-hero-stats { gap: 26px; margin-top: 34px; }
  .ew-stat-num { font-size: 24px; }
  .ew-band-item { font-size: 17px; }
  .ew-tile { min-height: 300px; padding: 26px; }
  .ew-btn { height: 50px; padding: 0 24px; font-size: 11px; }
  .ew-hero-ctas .ew-btn, .ew-cta-actions .ew-btn { flex: 1 1 100%; }
}

@media (max-width: 430px) {
  .ew-header-inner, .ew-header.is-stuck .ew-header-inner { gap: 4px; }
  .ew-grid { grid-template-columns: 1fr; }
  .ew-trust { grid-template-columns: 1fr; }
  .ew-hero h1 { font-size: 34px; }
  .ew-logo-mark { font-size: 20px; }
}

/* ==========================================================================
   SLIDERS & CAROUSELS (v2.1)
   Both work WITHOUT JavaScript: the product rail is a native scroll-snap
   rail, and the testimonial slider falls back to a stacked grid.
   ========================================================================== */

/* --- Product rail / carousel ---------------------------------------------- */
.ew-rail-wrap { position: relative; }

.ew-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  margin: 0 -2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ew-rail::-webkit-scrollbar { display: none; }

.ew-rail > .ew-card {
  flex: 0 0 clamp(238px, 24vw, 292px);
  scroll-snap-align: start;
}

.ew-rail-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
.ew-rail-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  flex: none;
}
.ew-rail-btn svg { width: 18px; height: 18px; }
.ew-rail-btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.ew-rail-btn:disabled { opacity: .3; cursor: default; }
.ew-rail-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Gold progress bar under the rail */
.ew-rail-progress {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.ew-rail-progress span {
  display: block;
  height: 100%;
  width: 30%;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: transform .35s var(--ease), width .35s var(--ease);
}

/* --- Testimonial slider ---------------------------------------------------- */
.ew-slider { position: relative; }

/* No-JS fallback: quotes simply sit side by side */
.ew-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* JS enhanced: turn it into a real sliding track */
.ew-js .ew-slider-viewport { overflow: hidden; }
.ew-js .ew-slider-track {
  display: flex;
  grid-template-columns: none;
  gap: 0;
  transition: transform .75s var(--ease);
  will-change: transform;
}
.ew-js .ew-slide {
  flex: 0 0 33.3333%;
  padding: 0 13px;
  box-sizing: border-box;
}

.ew-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.ew-slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  flex: none;
}
.ew-slider-btn svg { width: 17px; height: 17px; }
.ew-slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.ew-slider-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.ew-dots { display: flex; gap: 9px; align-items: center; }
.ew-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.ew-dot:hover { background: rgba(255, 255, 255, .5); }
.ew-dot.is-active {
  width: 30px;
  border-radius: 6px;
  background: var(--grad-gold);
}
.ew-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Light-background variant of the dots */
.ew-dots-dark .ew-dot { background: rgba(10, 10, 10, .18); }
.ew-dots-dark .ew-dot.is-active { background: var(--grad-gold); }

/* --- Graceful fallback for a genuinely missing image ---------------------- */
img.ew-img-fallback {
  object-fit: contain !important;
  background: var(--surface);
  padding: 14%;
  animation: none !important;
  transform: none !important;
}

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .ew-slider-track { grid-template-columns: 1fr; }
  .ew-js .ew-slide { flex: 0 0 100%; padding: 0 6px; }
  .ew-rail > .ew-card { flex: 0 0 clamp(210px, 62vw, 268px); }
  .ew-slider-controls { margin-top: 26px; gap: 14px; }
}

@media (max-width: 430px) {
  .ew-rail { gap: 14px; }
  .ew-rail > .ew-card { flex: 0 0 76vw; }
}


/* ==========================================================================
   v2.2 - IMAGE LOGO (managed in Admin > Brand & contact)
   ========================================================================== */

.ew-logo-img {
  display: block;
  width: auto;
  max-width: 230px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.ew-drawer .ew-logo-img { max-width: 190px; }

.ew-footer-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

@media (max-width: 700px) {
  .ew-logo-img { height: 34px !important; max-width: 168px; }
  .ew-footer-logo { height: 40px; max-width: 180px; }
}


/* =========================================================================
   v2.3 - BLACK HEADER, BANNER SLIDER, PRODUCT REVIEWS
   ========================================================================= */

/* ---------- 1. Dark header with white navigation --------------------- */
.ew-header {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(201, 162, 39, 0.24);
}
.ew-header.is-stuck {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(201, 162, 39, 0.4);
}
.ew-nav { gap: 26px; }
.ew-nav a {
  color: #FFFFFF;
  font-size: 13px;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.ew-nav a::after { background: var(--gold-gradient); }
.ew-nav a:hover,
.ew-nav a.is-active { color: var(--gold-light); }
.ew-logo-mark { color: #FFFFFF; }
.ew-logo-sub { color: rgba(255, 255, 255, 0.62); }
.ew-header .ew-icon-btn {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.ew-header .ew-icon-btn:hover {
  color: #0A0A0A;
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.ew-header .ew-burger { color: #FFFFFF; }

@media (max-width: 1180px) {
  .ew-nav { display: none; }
  .ew-burger { display: inline-flex; }
}
@media (min-width: 1181px) and (max-width: 1320px) {
  .ew-nav { gap: 18px; }
  .ew-nav a { font-size: 12px; letter-spacing: 0.06em; }
}

/* ---------- 2. Banner slider (artwork only, no overlay text) --------- */
.ew-banner {
  position: relative;
  background: #050505;
  overflow: hidden;
}
.ew-banner-viewport { overflow: hidden; }
.ew-banner-track {
  display: flex;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ew-banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
  line-height: 0;
}
.ew-banner-slide a { display: block; }
.ew-banner-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.ew-banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: 0.25s var(--ease);
  z-index: 3;
}
.ew-banner-btn svg { width: 20px; height: 20px; }
.ew-banner-btn.is-prev { left: 18px; }
.ew-banner-btn.is-next { right: 18px; }
.ew-banner:hover .ew-banner-btn,
.ew-banner-btn:focus-visible { opacity: 1; }
.ew-banner-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0A0A0A;
}
.ew-banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.ew-banner-dots .ew-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.ew-banner-dots .ew-dot.is-active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  width: 24px;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .ew-banner-btn { display: none; }
  .ew-banner-dots { bottom: 8px; }
  .ew-banner-dots .ew-dot { width: 7px; height: 7px; }
  .ew-banner-dots .ew-dot.is-active { width: 18px; }
}

/* ---------- 3. Slim breadcrumb bar under a page banner -------------- */
.ew-crumbbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.ew-crumbbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ew-crumb-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 0.02em;
}
.ew-crumbbar .breadcrumb-nav { margin: 0; }
@media (max-width: 700px) {
  .ew-crumb-title { font-size: 1.2rem; }
}

/* ---------- 4. Product reviews -------------------------------------- */
.ew-rv-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  margin-bottom: 34px;
}
.ew-rv-avg { text-align: center; }
.ew-rv-avg strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
}
.ew-rv-stars {
  color: var(--star);
  letter-spacing: 2px;
  font-size: 1.05rem;
}
.ew-rv-avg .ew-rv-count {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.ew-rv-bars { display: grid; gap: 8px; }
.ew-rv-bar {
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}
.ew-rv-bar-track {
  height: 7px;
  background: #E9E9E9;
  border-radius: 4px;
  overflow: hidden;
}
.ew-rv-bar-fill {
  display: block;
  height: 100%;
  background: var(--gold-gradient);
}
.ew-rv-list { display: grid; gap: 16px; margin-bottom: 44px; }
.ew-rv-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  background: #fff;
}
.ew-rv-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.ew-rv-who { display: flex; align-items: center; gap: 12px; }
.ew-rv-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.ew-rv-name { font-weight: 700; }
.ew-rv-city { font-size: 0.8rem; color: var(--muted); }
.ew-rv-date { font-size: 0.78rem; color: var(--muted); }
.ew-rv-verified {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f9d55;
}
.ew-rv-title { font-weight: 700; margin: 8px 0 4px; }
.ew-rv-text { margin: 0; color: #444; line-height: 1.75; }
.ew-rv-empty {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 36px;
}

/* write a review */
.ew-rv-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
}
.ew-rv-form h3 { margin: 0 0 6px; }
.ew-rv-form .ew-rv-hint {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
}
.ew-star-pick {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 4px;
}
.ew-star-pick button {
  background: none;
  border: 0;
  padding: 0 2px;
  font-size: 1.8rem;
  line-height: 1;
  color: #D7D7D7;
  cursor: pointer;
  transition: color 0.15s linear, transform 0.15s var(--ease);
}
.ew-star-pick button:hover { transform: translateY(-2px); }
.ew-star-pick button.is-on { color: var(--star); }
.ew-rv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ew-rv-msg {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.ew-rv-msg.is-ok { display: block; color: #1f9d55; }
.ew-rv-msg.is-err { display: block; color: #C0392B; }
.ew-rv-hp { position: absolute; left: -9999px; opacity: 0; }

@media (max-width: 700px) {
  .ew-rv-summary { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
  .ew-rv-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   v2.4 - SHOP FILTER POPUP
   Products are visible immediately; filters open in a dialog / bottom sheet.
   ========================================================================== */

.shop-container {
  display: block;
  padding: 30px 0 90px;
}

@media (min-width: 1100px) {
  .shop-container .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

body.ew-noscroll {
  overflow: hidden;
}

/* --- toolbar --------------------------------------------------------------- */
.ew-toolbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ew-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid #0A0A0A;
  border-radius: 4px;
  background: #0A0A0A;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ew-filter-btn:hover,
.ew-filter-btn.has-active {
  background: var(--gold, #C9A227);
  border-color: var(--gold, #C9A227);
  color: #0A0A0A;
}

.ew-filter-btn svg {
  flex: none;
}

.ew-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.ew-filter-btn.has-active .ew-filter-badge {
  background: #0A0A0A;
  color: var(--gold-light, #D4AF37);
}

/* --- popup shell ---------------------------------------------------------- */
.ew-filter-pop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.ew-filter-pop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ew-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.ew-filter-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  max-height: 86vh;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(14px) scale(.985);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
}

.ew-filter-pop.is-open .ew-filter-panel {
  transform: translateY(0) scale(1);
}

.ew-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #0A0A0A;
  color: #fff;
}

.ew-filter-head h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
}

.ew-filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.ew-filter-close:hover {
  background: var(--gold, #C9A227);
  border-color: var(--gold, #C9A227);
  color: #0A0A0A;
}

.ew-filter-body {
  padding: 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* the rail loses its box styling inside the popup */
.ew-filter-body .filter-rail {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.ew-filter-body .filter-item {
  padding: 4px 0;
  min-height: 32px;
}

.ew-filter-foot {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--line, #E6E6E6);
  background: #fff;
}

.ew-filter-foot .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* --- phones: bottom sheet ------------------------------------------------- */
@media (max-width: 700px) {
  .ew-filter-pop {
    align-items: flex-end;
    padding: 0;
  }

  .ew-filter-panel {
    max-width: none;
    max-height: 88vh;
    border-radius: 14px 14px 0 0;
    transform: translateY(100%);
  }

  .ew-filter-pop.is-open .ew-filter-panel {
    transform: translateY(0);
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ew-toolbar-left {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .ew-filter-btn {
    padding: 11px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ew-filter-pop,
  .ew-filter-panel {
    transition: none;
  }
}


/* ==========================================================================
   v2.5 - COMPACT PAGE HEADER / BREADCRUMB BAR (all pages except the homepage)
   ========================================================================== */

.ew-ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 12% 0%, #1c1c1c 0%, #0A0A0A 58%, #050505 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.34);
  padding: 26px 0 24px;
  isolation: isolate;
}

/* thin gold hairline across the very top */
.ew-ph::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(100deg, #D4AF37 0%, #F0D77B 45%, #C9A227 100%);
  opacity: .95;
}

/* faint diagonal sheen */
.ew-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(212, 175, 55, 0.075) 50%, transparent 62%);
  pointer-events: none;
}

.ew-ph-glow {
  position: absolute;
  top: -70px;
  right: 6%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.20) 0%, rgba(201, 162, 39, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

/* watch graphic */
.ew-ph-graphic {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, 0.5);
  line-height: 0;
  pointer-events: none;
  z-index: 0;
}

.ew-ph-watch {
  width: 120px;
  height: 120px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.28));
}

.ew-ph-second {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: ew-ph-tick 60s steps(60, end) infinite;
}

@keyframes ew-ph-tick {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.ew-ph-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ew-ph-copy {
  min-width: 0;
}

.ew-ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light, #D4AF37);
}

.ew-ph-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), #D4AF37);
}

.ew-ph-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ew-ph-title span,
.ew-ph-title .text-gold-gradient {
  background: linear-gradient(100deg, #D4AF37 0%, #F0D77B 45%, #C9A227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* breadcrumb trail */
.ew-ph-crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ew-ph-crumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color .2s ease;
}

.ew-ph-crumbs a:hover {
  color: var(--gold-light, #D4AF37);
}

.ew-ph-crumbs .is-current {
  color: var(--gold-light, #D4AF37);
  max-width: 42ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ew-ph-sep {
  font-style: normal;
  color: rgba(255, 255, 255, 0.3);
}

/* tablets */
@media (max-width: 900px) {
  .ew-ph {
    padding: 22px 0 20px;
  }

  .ew-ph-watch {
    width: 96px;
    height: 96px;
  }

  .ew-ph-graphic {
    right: 2%;
    opacity: .8;
  }
}

/* phones: graphic tucks behind the copy, bar stays short */
@media (max-width: 640px) {
  .ew-ph {
    padding: 18px 0 16px;
  }

  .ew-ph-inner {
    gap: 12px;
  }

  .ew-ph-graphic {
    right: -14px;
    color: rgba(212, 175, 55, 0.24);
  }

  .ew-ph-watch {
    width: 86px;
    height: 86px;
  }

  .ew-ph-crumbs {
    padding: 6px 12px;
    font-size: 0.7rem;
    gap: 7px;
  }

  .ew-ph-crumbs .is-current {
    max-width: 22ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ew-ph-second {
    animation: none;
  }
}


/* ==========================================================================
   v2.6 - BIGGER RESPONSIVE LOGO + 12-PRODUCT FEATURED GRID (no sliding)
   ========================================================================== */

/* ---- LOGO ---------------------------------------------------------------
   The header prints an inline height, so these rules use !important to take
   over and make the logo scale with the screen instead. ------------------- */

.ew-header .ew-logo {
  flex: none;
  padding: 2px 0;
}

.ew-header .ew-logo-img {
  height: clamp(50px, 5.4vw, 74px) !important;
  width: auto;
  max-width: min(340px, 46vw);
  object-fit: contain;
  transition: height .25s ease;
}

/* a touch smaller once the header sticks, so it never crowds the menu */
.ew-header.is-stuck .ew-logo-img {
  height: clamp(42px, 4.2vw, 58px) !important;
}

/* mobile drawer logo */
.ew-drawer .ew-logo-img {
  height: 56px !important;
  max-width: 230px;
}

/* footer logo, if one is used there */
.site-footer .ew-logo-img {
  height: 64px !important;
  max-width: 260px;
}

@media (max-width: 1100px) {
  .ew-header .ew-logo-img {
    height: clamp(48px, 6.4vw, 64px) !important;
  }
}

@media (max-width: 900px) {
  .ew-header .ew-logo-img,
  .ew-header.is-stuck .ew-logo-img {
    height: 52px !important;
    max-width: 54vw;
  }
}

@media (max-width: 480px) {
  .ew-header .ew-logo-img,
  .ew-header.is-stuck .ew-logo-img {
    height: 46px !important;
    max-width: 58vw;
  }
}

@media (max-width: 380px) {
  .ew-header .ew-logo-img,
  .ew-header.is-stuck .ew-logo-img {
    height: 40px !important;
  }
}

/* ---- FEATURED PRODUCTS GRID -------------------------------------------- */

.ew-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.ew-feat-grid > .ew-card {
  flex: none;
  width: auto;
  min-width: 0;
}

@media (max-width: 1180px) {
  .ew-feat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

/* phones and small tablets keep two per row, so all 12 watches are listed */
@media (max-width: 900px) {
  .ew-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .ew-feat-grid {
    gap: 12px;
  }
}

/* heading block without the eyebrow/subtitle keeps sensible spacing */
.ew-head > h2:last-child {
  margin-bottom: 0;
}
