/* ============================================================
   EXOTIC BOUTIQUE — WordPress Block Theme
   Palette: #FFFFFF body · #C9A96E gold · #1A1A1A text · #FAF9F6 off-white
   Fonts:   Cormorant Garamond (display) · Inter Tight (body)
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --eb-white:        #FFFFFF;
  --eb-off-white:    #FAF9F6;
  --eb-bone:         #F0EDE5;
  --eb-border:       #E8E6DF;
  --eb-border-light: rgba(0,0,0,0.07);

  --eb-text:         #1A1A1A;
  --eb-text-muted:   #6B6860;
  --eb-text-dim:     #9A9690;

  --eb-gold:         #C9A96E;
  --eb-gold-soft:    #B8924A;
  --eb-gold-light:   rgba(201,169,110,0.12);
  --eb-gold-border:  rgba(201,169,110,0.25);

  --eb-dark:         #0A0A0A;
  --eb-dark-surface: #111111;
  --eb-dark-2:       #1A1A1A;

  --eb-whatsapp:     #25D366;

  --eb-font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --eb-font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --eb-ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --eb-ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --eb-ease-luxury:  cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: inherit;
}

body {
  font-family: var(--eb-font-body);
  font-weight: 300;
  background: var(--eb-white);
  color: var(--eb-text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Remove WordPress default margins on block wrapper */
.wp-site-blocks {
  padding: 0 !important;
  margin: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }

::selection { background: var(--eb-gold); color: var(--eb-dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--eb-off-white); }
::-webkit-scrollbar-thumb { background: var(--eb-gold); border-radius: 2px; }

/* ─── ATOMS ──────────────────────────────────────────────── */
.eb-eyebrow {
  font-family: var(--eb-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--eb-gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eb-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--eb-gold);
  opacity: 0.55;
}
.eb-eyebrow--center { justify-content: center; }
.eb-eyebrow--center::before { display: none; }

.eb-hairline {
  width: 56px;
  height: 1px;
  background: var(--eb-gold);
  opacity: 0.45;
  margin: 24px 0;
}
.eb-hairline--center { margin-left: auto; margin-right: auto; }

.eb-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eb-gold);
  margin-right: 10px;
  flex-shrink: 0;
  animation: eb-pulse 2.6s var(--eb-ease-in-out) infinite;
}

@keyframes eb-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201,169,110,0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(201,169,110,0);
    transform: scale(1.05);
  }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.eb-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  font-family: var(--eb-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--eb-ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.eb-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%);
  transition: left 0.65s var(--eb-ease-out);
}
.eb-btn:hover::after { left: 100%; }

.eb-btn--primary {
  background: var(--eb-dark);
  color: var(--eb-off-white);
  border-color: var(--eb-dark);
}
.eb-btn--primary:hover {
  background: var(--eb-gold);
  border-color: var(--eb-gold);
  color: var(--eb-dark);
}

.eb-btn--ghost {
  background: transparent;
  color: var(--eb-text);
  border-color: rgba(0,0,0,0.2);
}
.eb-btn--ghost:hover {
  border-color: var(--eb-gold);
  color: var(--eb-gold);
}

.eb-btn--ghost-light {
  background: transparent;
  color: var(--eb-off-white);
  border-color: rgba(255,255,255,0.22);
}
.eb-btn--ghost-light:hover {
  border-color: var(--eb-gold);
  color: var(--eb-gold);
}

.eb-btn--gold {
  background: var(--eb-gold);
  color: var(--eb-dark);
  font-weight: 600;
  border-color: var(--eb-gold);
}
.eb-btn--gold:hover {
  background: var(--eb-gold-soft);
  border-color: var(--eb-gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(201,169,110,0.25);
  color: var(--eb-dark);
}

.eb-arrow {
  display: inline-block;
  transition: transform 0.45s var(--eb-ease-out);
}
.eb-btn:hover .eb-arrow { transform: translateX(6px); }

/* ─── HEADER ──────────────────────────────────────────────── */
/*
 * Force grid layout with !important to override WordPress block
 * inline styles (WP generates display:flex on wp:group blocks).
 * Grid: [nav side] [logo center] [icons side] — center is always exact middle.
 */
.eb-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9000;             /* highest on page — dropdown sits inside */
  padding: 16px 48px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: box-shadow 0.4s var(--eb-ease-out),
              padding 0.4s var(--eb-ease-out);
  /* Always solid white — no transparent phase */
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--eb-border) !important;
  /* Reset any WP flex styles */
  flex-wrap: unset !important;
  justify-content: unset !important;
}

.eb-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  padding: 12px 48px !important;
}

/* Column 1: left-aligned nav group */
.eb-header > .eb-header__left,
.eb-header > .wp-block-group.eb-header__left {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  justify-content: flex-start !important;
  min-width: 0;
}

/* Column 2: center wordmark — always truly centered via grid */
.eb-header > .eb-wordmark-wrap,
.eb-header > .wp-block-group.eb-wordmark-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  white-space: nowrap;
}

/* Column 3: right-aligned icons group */
.eb-header > .eb-header__right,
.eb-header > .wp-block-group.eb-header__right {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: flex-end !important;
  min-width: 0;
}

/* Burger */
.eb-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
}
.eb-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--eb-text); /* always dark — header is always white */
  transition: all 0.4s var(--eb-ease-out);
}
.eb-burger:hover span:nth-child(2) { transform: scaleX(0.6); transform-origin: left; }

/* Nav */
.eb-nav {
  display: flex;
  gap: 36px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-text); /* always dark — header is always white */
}
.eb-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.35s;
}
.eb-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--eb-gold);
  transition: width 0.45s var(--eb-ease-out);
}
.eb-nav a:hover { color: var(--eb-gold); }
.eb-nav a:hover::after { width: 100%; }

/* Wordmark */
.eb-wordmark {
  font-family: var(--eb-font-display);
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--eb-text); /* always dark — header is always white */
  text-transform: uppercase;
  padding-left: 0.55em;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}
.eb-wordmark span { color: var(--eb-gold); }

/* Header icons */
.eb-header__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.35s;
}
.eb-header__icon:hover { background: rgba(0,0,0,0.06); }
.eb-header__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--eb-text); /* always dark — header is always white */
  stroke-width: 1.4;
  fill: none;
}

/* Header CTA */
.eb-header__cta {
  padding: 10px 20px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 40px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s;
}
.eb-header__cta:hover {
  background: var(--eb-gold);
  border-color: var(--eb-gold);
  color: var(--eb-dark);
}
.eb-header__cta .eb-dot {
  margin: 0;
  width: 6px;
  height: 6px;
}
.eb-header__cta:hover .eb-dot { background: var(--eb-dark); }

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.eb-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--eb-dark);
  z-index: 200;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.6s var(--eb-ease-out);
}
.eb-mobile-nav.is-open { transform: translateX(0); }

.eb-mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eb-mobile-nav__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--eb-off-white);
  stroke-width: 1.5;
  fill: none;
}

.eb-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.eb-mobile-nav__links a {
  font-family: var(--eb-font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 300;
  color: rgba(250,249,246,0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.4s;
}
.eb-mobile-nav__links a:hover {
  color: var(--eb-gold);
  padding-left: 12px;
}

.eb-mobile-nav__wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--eb-gold-border);
  color: var(--eb-gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: auto;
}
.eb-mobile-nav__wa svg {
  width: 20px;
  height: 20px;
  fill: var(--eb-gold);
  flex-shrink: 0;
}

.eb-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  backdrop-filter: blur(4px);
}
.eb-mobile-nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ─── HERO ────────────────────────────────────────────────── */
.eb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--eb-dark);
}

.eb-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.eb-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(201,169,110,0.18) 0%, transparent 55%),
    linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.12) 100%);
  z-index: 1;
}
.eb-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}

.eb-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 160px 48px 80px;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 60px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto;
}

.eb-hero__title {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-size: clamp(52px, 7.8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  color: var(--eb-off-white);
  margin: 28px 0 0;
}
.eb-hero__title .line { display: block; overflow: hidden; }
.eb-hero__title .line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: eb-rise 1.4s var(--eb-ease-out) forwards;
}
.eb-hero__title .line:nth-child(1) span { animation-delay: 0.35s; }
.eb-hero__title .line:nth-child(2) span { animation-delay: 0.5s; }
.eb-hero__title .line:nth-child(3) span { animation-delay: 0.65s; }
.eb-hero__title em { font-style: italic; color: var(--eb-gold); font-weight: 300; }

@keyframes eb-rise { to { opacity: 1; transform: translateY(0); } }

.eb-hero__lede {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250,249,246,0.62);
  max-width: 460px;
  margin: 34px 0 42px;
  font-weight: 300;
  opacity: 0;
  animation: eb-fade-in 1.4s var(--eb-ease-out) 1.0s forwards;
}

.eb-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: eb-fade-in 1.4s var(--eb-ease-out) 1.2s forwards;
}

@keyframes eb-fade-in { to { opacity: 1; } }

.eb-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 12px;
  opacity: 0;
  animation: eb-fade-in 1.6s var(--eb-ease-out) 1.4s forwards;
}
.eb-hero__meta-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 13px;
  color: rgba(250,249,246,0.5);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}
.eb-hero__meta-item strong {
  color: var(--eb-gold);
  font-family: var(--eb-font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.eb-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.4);
  opacity: 0;
  animation: eb-fade-in 1.4s var(--eb-ease-out) 1.8s forwards;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.eb-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--eb-gold));
  position: relative;
  overflow: hidden;
}
.eb-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--eb-off-white);
  animation: eb-scroll-pulse 2.4s var(--eb-ease-in-out) infinite;
}
@keyframes eb-scroll-pulse { 0% { top: -50%; } 100% { top: 100%; } }

/* ─── SECTION FRAME ──────────────────────────────────────── */
.eb-section {
  padding: 110px 48px;
  position: relative;
}
.eb-section--light { background: var(--eb-white); color: var(--eb-text); }
.eb-section--warm  { background: var(--eb-off-white); color: var(--eb-text); }
.eb-section--dark  { background: var(--eb-dark); color: var(--eb-off-white); }
.eb-section--dark2 { background: #0D0D0D; color: var(--eb-off-white); }

.eb-container {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}

.eb-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}
.eb-section-head__title {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: 14px;
  margin-bottom: 0;
}
.eb-section-head__title em { font-style: italic; color: var(--eb-gold); }

.eb-section-head__action {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--eb-gold);
  transition: gap 0.4s;
  color: inherit;
  white-space: nowrap;
}
.eb-section-head__action:hover { gap: 18px; color: var(--eb-gold); }

/* ─── COLLECTIONS ─────────────────────────────────────────── */
.eb-collections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.eb-collection {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1A1A1A;
  display: block;
}
.eb-collection img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--eb-ease-out), filter 1s;
  filter: brightness(0.75);
}
.eb-collection:hover img { transform: scale(1.05); filter: brightness(0.92); }
.eb-collection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.88) 100%);
  z-index: 2;
}
.eb-collection__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eb-collection__num {
  font-family: var(--eb-font-display);
  font-size: 14px;
  color: var(--eb-gold);
  letter-spacing: 0.06em;
}
.eb-collection__title {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--eb-off-white);
  margin: 0;
}
.eb-collection__sub {
  font-size: 12px;
  color: rgba(250,249,246,0.55);
  margin-top: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eb-collection__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eb-off-white);
  margin-top: 22px;
  transition: gap 0.4s;
}
.eb-collection:hover .eb-collection__cta { gap: 22px; }
.eb-collection__cta::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--eb-gold);
}

/* ─── STORY ──────────────────────────────────────────────── */
.eb-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eb-story__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.eb-story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eb-story__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-text);
  border: 1px solid var(--eb-border);
  z-index: 3;
}
.eb-story__title {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 22px 0;
  color: var(--eb-text);
}
.eb-story__title em { font-style: italic; color: var(--eb-gold-soft); }
.eb-story__body p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(26,26,26,0.58);
  margin-bottom: 20px;
  max-width: 520px;
}
.eb-story__sig {
  margin-top: 32px;
  font-family: var(--eb-font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--eb-gold-soft);
}
.eb-story__link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-text);
  border-bottom: 1px solid var(--eb-gold-soft);
  padding-bottom: 4px;
  transition: gap 0.4s, color 0.3s;
}
.eb-story__link:hover { gap: 18px; color: var(--eb-gold); }

/* ─── PRODUCT CARDS ──────────────────────────────────────── */
.eb-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.eb-card { position: relative; }

.eb-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--eb-bone);
  border: 1px solid var(--eb-border);
}
.eb-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--eb-ease-out);
  filter: brightness(0.97);
}
.eb-card:hover .eb-card__media img { transform: scale(1.04); filter: brightness(1); }

.eb-card__wa {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: var(--eb-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-dark);
  font-weight: 500;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s var(--eb-ease-out);
  z-index: 3;
}
.eb-card:hover .eb-card__wa { transform: translateY(0); opacity: 1; }
.eb-card__wa svg {
  width: 17px;
  height: 17px;
  fill: var(--eb-dark);
  flex-shrink: 0;
}

.eb-card__body { padding: 16px 2px 0; }
.eb-card__brand {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eb-gold);
  margin-bottom: 7px;
}
.eb-card__title {
  font-family: var(--eb-font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.005em;
  color: var(--eb-text);
}
.eb-card__avail {
  margin-top: 9px;
  font-size: 11px;
  color: var(--eb-text-muted);
  font-style: italic;
  display: inline-flex;
  align-items: center;
}
.eb-card__avail::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--eb-gold);
  margin-right: 8px;
  animation: eb-pulse 2.6s var(--eb-ease-in-out) infinite;
  flex-shrink: 0;
}

/* ─── LIFESTYLE BANNER ───────────────────────────────────── */
.eb-lifestyle {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eb-lifestyle > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.05);
}
.eb-lifestyle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.eb-lifestyle__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  padding: 0 48px;
}
.eb-lifestyle__quote-mark {
  font-family: var(--eb-font-display);
  font-style: italic;
  font-size: 130px;
  line-height: 1;
  color: var(--eb-gold);
  margin-bottom: -40px;
  opacity: 0.85;
  display: block;
}
.eb-lifestyle__quote {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.35;
  color: var(--eb-off-white);
  margin: 0;
}
.eb-lifestyle__cite {
  display: block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--eb-gold);
  font-style: normal;
}

/* ─── MEMBERSHIP ─────────────────────────────────────────── */
.eb-membership {
  background: var(--eb-dark-2);
  position: relative;
  overflow: hidden;
}
.eb-membership__panel {
  position: relative;
  padding: 88px 72px;
  background:
    linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 50%, rgba(201,169,110,0.04) 100%),
    rgba(10,10,10,0.5);
  border: 1px solid var(--eb-gold-border);
  overflow: hidden;
}
.eb-membership__panel::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201,169,110,0.14) 30deg,
    transparent 60deg,
    transparent 360deg
  );
  animation: eb-shine 16s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes eb-shine { to { transform: rotate(360deg); } }

.eb-membership__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eb-membership__title {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--eb-off-white);
  margin: 20px 0 22px;
}
.eb-membership__title em { font-style: italic; color: var(--eb-gold); }
.eb-membership__lede {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250,249,246,0.55);
  margin-bottom: 32px;
  max-width: 460px;
}
.eb-membership__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.eb-membership__list {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.eb-membership__list li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: baseline;
}
.eb-membership__list .num {
  font-family: var(--eb-font-display);
  font-size: 13px;
  color: var(--eb-gold);
  letter-spacing: 0.06em;
}
.eb-membership__list .text {
  font-size: 14px;
  color: rgba(250,249,246,0.8);
  line-height: 1.5;
}
.eb-membership__list .text strong {
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
  color: var(--eb-off-white);
}
.eb-membership__list .text span {
  color: rgba(250,249,246,0.45);
  font-size: 12px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.eb-tests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.eb-test {
  padding: 36px 0;
  border-top: 1px solid var(--eb-border);
  position: relative;
  transition: transform 0.6s var(--eb-ease-out);
}
.eb-test:hover { transform: translateY(-4px); }
.eb-test__mark {
  font-family: var(--eb-font-display);
  font-style: italic;
  font-size: 72px;
  color: var(--eb-gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
  display: block;
}
.eb-test__quote {
  font-family: var(--eb-font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 26px;
  color: var(--eb-text);
}
.eb-test__hairline {
  width: 28px;
  height: 1px;
  background: var(--eb-gold);
  margin-bottom: 16px;
}
.eb-test__author {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eb-text);
  font-weight: 500;
}
.eb-test__meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eb-text-muted);
  margin-top: 5px;
}

/* ─── INSTAGRAM GRID ─────────────────────────────────────── */
.eb-insta {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.eb-insta__tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--eb-bone);
  display: block;
}
.eb-insta__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s var(--eb-ease-out);
}
.eb-insta__tile:hover img { transform: scale(1.08); }
.eb-insta__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.22);
  opacity: 0;
  transition: opacity 0.45s;
  z-index: 2;
}
.eb-insta__tile:hover::after { opacity: 1; }

.eb-insta__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.45s;
}
.eb-insta__tile:hover .eb-insta__icon { opacity: 1; }
.eb-insta__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--eb-white);
  stroke-width: 1.5;
  fill: none;
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.eb-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 48px;
  border-top: 1px solid var(--eb-border);
  border-bottom: 1px solid var(--eb-border);
  background: var(--eb-off-white);
  flex-wrap: wrap;
}
.eb-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eb-text-muted);
}
.eb-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--eb-gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.eb-footer {
  background: var(--eb-dark);
  padding: 88px 48px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.eb-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.eb-footer__brand {
  font-family: var(--eb-font-display);
  font-size: 11px;
  letter-spacing: 0.55em;
  color: var(--eb-off-white);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.eb-footer__brand span { color: var(--eb-gold); }
.eb-footer__tagline {
  font-family: var(--eb-font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--eb-gold);
  margin-bottom: 16px;
}
.eb-footer__desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(250,249,246,0.4);
  max-width: 300px;
  margin: 0;
}
.eb-footer__head {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eb-gold);
  margin-bottom: 20px;
}
.eb-footer__list li { margin-bottom: 11px; }
.eb-footer__list a {
  font-size: 13px;
  color: rgba(250,249,246,0.4);
  transition: color 0.3s;
}
.eb-footer__list a:hover { color: var(--eb-gold); }
.eb-footer__addr {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(250,249,246,0.4);
  margin-bottom: 20px;
}
.eb-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  color: rgba(250,249,246,0.3);
  letter-spacing: 0.06em;
}
.eb-footer__legal { display: flex; gap: 28px; }
.eb-footer__legal a {
  color: rgba(250,249,246,0.3);
  transition: color 0.3s;
}
.eb-footer__legal a:hover { color: var(--eb-gold); }

/* ─── WHATSAPP FAB ────────────────────────────────────────── */
.eb-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.eb-fab__label {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  padding: 11px 18px;
  border: 1px solid var(--eb-border);
  border-radius: 40px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-text);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.45s var(--eb-ease-out);
  white-space: nowrap;
}
.eb-fab:hover .eb-fab__label { opacity: 1; transform: translateX(0); }
.eb-fab__btn {
  width: 56px;
  height: 56px;
  background: var(--eb-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(37,211,102,0.3);
  position: relative;
  flex-shrink: 0;
}
.eb-fab__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--eb-whatsapp);
  animation: eb-fab-pulse 2.6s var(--eb-ease-out) infinite;
}
@keyframes eb-fab-pulse {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.65); opacity: 0; }
}
.eb-fab__btn svg { width: 26px; height: 26px; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
[data-eb-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--eb-ease-out), transform 1.1s var(--eb-ease-out);
}
[data-eb-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ─── BLOG STYLES ─────────────────────────────────────────── */
.eb-blog-main {
  background: var(--eb-white);
  min-height: 60vh;
}
.eb-blog-card { background: transparent; }
.eb-blog-card__image { overflow: hidden; }
.eb-blog-card__date {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-gold);
}
.eb-blog-card__title {
  font-family: var(--eb-font-display) !important;
  font-weight: 400 !important;
  font-size: 22px !important;
  margin-top: 8px !important;
}
.eb-blog-card__excerpt {
  font-size: 14px;
  color: var(--eb-text-muted);
  line-height: 1.7;
}

/* Page title */
.eb-page-title {
  font-family: var(--eb-font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(36px, 5vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.018em !important;
}
.eb-post-date {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eb-text-muted);
}

/* ─── WORDPRESS CORE BLOCK OVERRIDES ─────────────────────── */

/* ── Site Logo ── */
.eb-wordmark-wrap .wp-block-site-logo {
  display: flex;
  align-items: center;
  margin: 0;
}
.eb-wordmark-wrap .wp-block-site-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);  /* white logo on dark hero */
  transition: filter 0.5s;
}
/* On scrolled header (light bg), restore logo colors */
.eb-header.is-scrolled .wp-block-site-logo img {
  filter: none;
}

/* ── Site Title as Wordmark ── */
.wp-block-site-title.eb-wordmark {
  margin: 0;
}
.wp-block-site-title.eb-wordmark a,
.wp-block-site-title.eb-wordmark {
  font-family: var(--eb-font-display) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.55em !important;
  text-transform: uppercase !important;
  color: var(--eb-text) !important; /* always dark — header is always white */
  text-decoration: none !important;
  padding-left: 0.55em;
  white-space: nowrap;
}

/* Logo/Title toggle: show logo when image exists, title as fallback */
.eb-wordmark-wrap:has(.wp-block-site-logo img) .wp-block-site-title.eb-wordmark {
  display: none;
}
/* When logo has no image, hide the empty logo placeholder */
.eb-wordmark-wrap .wp-block-site-logo:not(:has(img)) {
  display: none;
}

/* ── Navigation Block styled as eb-nav ── */
.eb-header .wp-block-navigation.eb-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  background: transparent !important;
}
/* Override WP navigation inner container */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation__container {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  flex-wrap: nowrap;
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item {
  position: relative;
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item__content {
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--eb-text) !important; /* always dark — header is always white */
  text-decoration: none !important;
  padding: 8px 0 !important;
  position: relative;
  transition: color 0.35s;
  display: inline-block;
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--eb-gold);
  transition: width 0.45s var(--eb-ease-out);
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item__content:hover,
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item__content:focus {
  color: var(--eb-gold) !important;
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item__content:hover::after {
  width: 100%;
}

/* Hide WP nav hamburger/overlay (we use our own) */
.eb-header .wp-block-navigation__responsive-container-open,
.eb-header .wp-block-navigation__responsive-container-close,
.eb-header .wp-block-navigation__responsive-container {
  display: none !important;
}

/* ──────────────────────────────────────────────────────────
   DROPDOWN SUBMENUS — Desktop
   ────────────────────────────────────────────────────────── */

/* Parent item: needs overflow visible for dropdown */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item.has-child {
  position: relative;
}

/* Submenu panel */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation__submenu-container {
  position: absolute;
  top: 100%;            /* flush with bottom of nav item — no gap so hover is continuous */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 18px 0 10px; /* top padding replaces the old gap, keeping visual spacing */
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--eb-gold-border);
  border-top: 2px solid var(--eb-gold);
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity    0.35s var(--eb-ease-out),
    transform  0.35s var(--eb-ease-out),
    visibility 0.35s;
  z-index: 9999; /* above everything, including the header's own stacking context */
}

/* Small triangle — sits inside the top padding area of the dropdown */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation__submenu-container::before {
  content: '';
  position: absolute;
  top: 6px;   /* inside the 18px padding-top, near the top */
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--eb-gold);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Show on hover or keyboard focus */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item.has-child:hover
  > .wp-block-navigation__submenu-container,
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation-item.has-child:focus-within
  > .wp-block-navigation__submenu-container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Scrolled header: light dropdown */
.eb-header.is-scrolled .wp-block-navigation.eb-nav .wp-block-navigation__submenu-container {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.eb-header.is-scrolled .wp-block-navigation.eb-nav .wp-block-navigation__submenu-container::before {
  background: var(--eb-gold);
}

/* Submenu items */
.eb-header .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content {
  display: block !important;
  padding: 12px 28px !important;
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(250,249,246,0.65) !important;
  white-space: nowrap;
  transition: color 0.25s, padding-left 0.3s var(--eb-ease-out);
  position: relative;
}
.eb-header.is-scrolled .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content {
  color: var(--eb-text-muted) !important;
}
.eb-header .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content:hover {
  color: var(--eb-gold) !important;
  padding-left: 36px !important;
}

/* Remove underline pseudo-element from submenu items */
.eb-header .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item__content::after {
  display: none !important;
}

/* Hairline between submenu items */
.eb-header .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item + .wp-block-navigation-item {
  border-top: 1px solid rgba(201,169,110,0.08);
}
.eb-header.is-scrolled .wp-block-navigation.eb-nav
  .wp-block-navigation__submenu-container
  .wp-block-navigation-item + .wp-block-navigation-item {
  border-top-color: var(--eb-border-light);
}

/* Chevron icon on parent link */
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation__submenu-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  opacity: 0.6;
  transition: transform 0.3s var(--eb-ease-out), opacity 0.3s;
}
.eb-header .wp-block-navigation.eb-nav .wp-block-navigation__submenu-icon svg {
  width: 9px; height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.eb-header .wp-block-navigation.eb-nav .has-child:hover .wp-block-navigation__submenu-icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   MOBILE NAV — Submenu Accordion
   ────────────────────────────────────────────────────────── */

/* Item row (parent link + toggle button) */
.eb-mobile-nav-item { display: flex; flex-direction: column; }

.eb-mobile-parent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.eb-mobile-parent-row a {
  flex: 1;
  border-bottom: none !important; /* row has the border */
}

/* Toggle button */
.eb-mobile-sub-toggle {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--eb-gold-border);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.3s, border-color 0.3s;
}
.eb-mobile-sub-toggle:hover { background: var(--eb-gold-light); border-color: var(--eb-gold); }
.eb-mobile-sub-toggle svg {
  width: 10px; height: 10px;
  stroke: var(--eb-gold); fill: none; stroke-width: 2;
  transition: transform 0.35s var(--eb-ease-out);
}
.eb-mobile-sub-toggle.is-open svg { transform: rotate(180deg); }

/* Sub-items panel (accordion) */
.eb-mobile-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--eb-ease-out);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--eb-gold-border);
  margin-left: 16px;
}
.eb-mobile-sub.is-open { max-height: 600px; }

.eb-mobile-sub a {
  display: block !important;
  font-family: var(--eb-font-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(250,249,246,0.5) !important;
  padding: 12px 0 12px 18px !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: color 0.25s, padding-left 0.3s !important;
}
.eb-mobile-sub a:hover { color: var(--eb-gold) !important; padding-left: 26px !important; }

/* ── General Block Resets ── */
.wp-block-navigation a { text-decoration: none; }
.wp-block-button__link {
  border-radius: 0 !important;
  transition: all 0.45s var(--eb-ease-out) !important;
}
.wp-block-image img { width: 100%; height: auto; }
figure.wp-block-image { margin: 0; }

/* Remove block editor default padding */
.wp-block-group:not([class*="eb-"]):not(.eb-header):not(.eb-wordmark-wrap):not(.eb-header__left):not(.eb-header__right) {
  padding: 0 !important;
}

/* ── Product card title link ── */
.eb-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.eb-card__title a:hover { color: var(--eb-gold); }

/* ── WooCommerce WhatsApp button ── */
.eb-wa-enquire {
  margin-top: 20px;
  gap: 10px;
}
.eb-wa-enquire svg { fill: var(--eb-dark); flex-shrink: 0; }

/* ── Woo: hide default price everywhere ── */
.woocommerce-Price-amount,
.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  display: none !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1280px) {
  .eb-products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .eb-hero__inner        { grid-template-columns: 1fr; gap: 40px; }
  .eb-section            { padding: 72px 24px; }
  .eb-header             { padding: 17px 24px !important; }
  .eb-header.is-scrolled { padding: 13px 24px !important; }
  .eb-nav                { display: none; }
  .eb-header .wp-block-navigation.eb-nav { display: none !important; }
  .eb-collections        { grid-template-columns: 1fr; }
  .eb-story              { grid-template-columns: 1fr; gap: 48px; }
  .eb-products           { grid-template-columns: repeat(2, 1fr); }
  .eb-membership__panel  { padding: 52px 28px; }
  .eb-membership__inner  { grid-template-columns: 1fr; gap: 48px; }
  .eb-tests              { grid-template-columns: 1fr; gap: 28px; }
  .eb-insta              { grid-template-columns: repeat(3, 1fr); }
  .eb-footer__grid       { grid-template-columns: 1fr 1fr; gap: 36px; }
  .eb-section-head       { grid-template-columns: 1fr; gap: 20px; }
  .eb-trust-strip        { gap: 28px; }
  .eb-footer             { padding: 60px 24px 24px; }
}

@media (max-width: 768px) {
  .eb-hero__inner        { padding: 120px 24px 60px; }
  .eb-trust-strip        { padding: 28px 24px; gap: 20px; }
  .eb-lifestyle__inner   { padding: 0 24px; }
  .eb-membership__panel  { padding: 44px 20px; }
}

@media (max-width: 640px) {
  .eb-products           { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .eb-footer__grid       { grid-template-columns: 1fr; }
  .eb-footer__bottom     { flex-direction: column; gap: 16px; text-align: center; }
  .eb-header__cta span:not(.eb-dot) { display: none; }
  .eb-insta              { grid-template-columns: repeat(2, 1fr); }
  .eb-hero__title        { font-size: clamp(42px, 12vw, 80px); }
}


/* ════════════════════════════════════════════════════════════
   WOOCOMMERCE — ALL PAGES
   Shop · Single Product · Cart · Checkout · My Account
   ════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL WC RESETS & SHARED UTILITIES ───────────────── */

/* Remove WooCommerce default padding/margin from wrappers */
.woocommerce-page .woocommerce,
.woocommerce { padding: 0; }

/* WC notices */
.woocommerce-notices-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }

.woocommerce-message,
.woocommerce-info {
  background: var(--eb-gold-light);
  border-top: 3px solid var(--eb-gold);
  color: var(--eb-text);
  font-family: var(--eb-font-body);
  font-size: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.woocommerce-error {
  background: #fff0f0;
  border-top: 3px solid #c9596e;
  color: var(--eb-text);
  font-family: var(--eb-font-body);
  font-size: 14px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--eb-gold); }

/* WC global buttons (reset) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eb-text); background: transparent;
  border: 1px solid var(--eb-border);
  padding: 0.75rem 1.5rem; border-radius: 0;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--eb-text); color: var(--eb-white); border-color: var(--eb-text); }
.woocommerce a.button.alt,
.woocommerce button.button.alt { background: var(--eb-dark); color: var(--eb-white); border-color: var(--eb-dark); }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--eb-gold); border-color: var(--eb-gold); color: var(--eb-dark); }

/* Sale badge */
.woocommerce span.onsale {
  background: var(--eb-gold); color: var(--eb-dark);
  border-radius: 0; min-height: auto; line-height: 1;
  font-family: var(--eb-font-body);
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.6rem;
}

/* Star ratings */
.star-rating span::before,
.star-rating::before { color: var(--eb-gold) !important; }

/* WC breadcrumb (single product) */
.eb-wc-breadcrumb,
.woocommerce-breadcrumb {
  font-family: var(--eb-font-body);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--eb-text-dim); margin-bottom: 2.5rem;
}
.eb-wc-breadcrumb a,
.woocommerce-breadcrumb a { color: var(--eb-text-dim); text-decoration: none; transition: color 0.2s; }
.eb-wc-breadcrumb a:hover,
.woocommerce-breadcrumb a:hover { color: var(--eb-gold); }
.eb-breadcrumb-sep { margin: 0 0.5rem; opacity: 0.4; }

/* Shared form field style */
.woocommerce form .form-row { padding: 0; margin-bottom: 1rem; }
.woocommerce form .form-row label {
  display: block; margin-bottom: 0.375rem;
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--eb-text-dim);
}
.woocommerce form .form-row label .optional { color: var(--eb-text-dim); font-size: 9px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--eb-border); border-radius: 0;
  font-family: var(--eb-font-body); font-size: 14px; color: var(--eb-text);
  background: var(--eb-white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--eb-gold);
  box-shadow: 0 0 0 3px var(--eb-gold-light);
}
.woocommerce form .form-row.woocommerce-invalid input.input-text { border-color: #c9596e; }
.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: #5db55d; }

/* Page title for WC pages */
.woocommerce-page .entry-title,
.woocommerce-page h1.page-title {
  font-family: var(--eb-font-display);
  font-size: clamp(32px,5vw,64px);
  font-weight: 300; letter-spacing: -0.015em; color: var(--eb-text);
  margin-bottom: 2.5rem;
}


/* ── 2. SHOP / ARCHIVE PAGE ───────────────────────────────── */

.eb-wc-archive-page,
.eb-wc-category-page { padding-top: 0; }

/* Make the WC wrapper fill full width on archive pages */
.eb-wc-archive-page > .woocommerce,
.eb-wc-category-page > .woocommerce { max-width: none; padding: 0; }

/* ── 2a. Shop Hero ── */

.eb-shop-hero {
  background: var(--eb-dark);
  padding: clamp(110px,14vw,180px) clamp(20px,4vw,48px) clamp(48px,6vw,80px);
  text-align: center; position: relative; overflow: hidden;
}
.eb-shop-hero--has-image {
  background-size: cover; background-position: center;
}
.eb-shop-hero--has-image::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.72);
  pointer-events: none;
}
.eb-shop-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.eb-shop-hero__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.eb-shop-hero .eb-eyebrow {
  font-size: 9px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--eb-gold); margin: 0 0 1rem;
}
.eb-shop-hero__title {
  font-family: var(--eb-font-display);
  font-size: clamp(48px,8vw,120px);
  font-weight: 300; line-height: 0.92; letter-spacing: -0.02em;
  color: var(--eb-white); margin: 0 0 1.25rem;
}
.eb-shop-hero__desc {
  font-family: var(--eb-font-body);
  font-size: 15px; color: rgba(255,255,255,0.5);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ── 2b. Controls (result count + ordering) ── */

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.woocommerce .woocommerce-result-count {
  font-family: var(--eb-font-body);
  font-size: 12px; color: var(--eb-text-muted); letter-spacing: 0.04em;
  float: left; padding: 2rem clamp(20px,4vw,48px) 1.5rem; line-height: 2;
}
.woocommerce .woocommerce-ordering {
  float: right; padding: 2rem clamp(20px,4vw,48px) 1.5rem;
}
.woocommerce .woocommerce-ordering select {
  font-family: var(--eb-font-body); font-size: 12px; color: var(--eb-text);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 4 6 8.5 10.5 4' stroke='%236B6860' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 0.5rem center / 12px;
  border: 1px solid var(--eb-border);
  padding: 0.5rem 2rem 0.5rem 0.875rem;
  letter-spacing: 0.05em; appearance: none; cursor: pointer; outline: none;
}
.woocommerce .woocommerce-ordering select:focus { border-color: var(--eb-gold); }

/* ── 2c. Product Grid ── */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5px !important;
  list-style: none !important; margin: 0 !important; padding: 0 !important; clear: both;
  max-width: none;
}
.woocommerce ul.products li.product {
  margin: 10px; padding: 0 !important;
  background: var(--eb-white);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* ── 2d. Product Card ── */

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  flex: 1; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; overflow: hidden;
}
.woocommerce ul.products li.product img {
  width: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--eb-ease-luxury);
}
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }

/* Brand above title */
.woocommerce ul.products li.product .eb-card__brand {
  font-family: var(--eb-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--eb-gold);
  margin: 1rem 1.125rem 0.2rem; padding: 0;
}
/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--eb-font-display) !important;
  font-size: clamp(16px,1.5vw,21px) !important;
  font-weight: 400 !important; line-height: 1.15 !important;
  color: var(--eb-text) !important;
  padding: 0 1.125rem !important; margin: 0 0 0.35rem !important;
}
/* Availability badge */
.woocommerce ul.products li.product .eb-availability {
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--eb-text-muted);
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0 1.125rem; margin: 0 0 auto;
}
.woocommerce ul.products li.product .eb-availability .eb-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--eb-text-dim); flex-shrink: 0;
}
.woocommerce ul.products li.product .eb-availability.eb-availability--in-stock .eb-dot { background: #5db55d; }
.woocommerce ul.products li.product .eb-availability.eb-availability--on-request .eb-dot,
.woocommerce ul.products li.product .eb-availability.eb-availability--sourcing .eb-dot { background: var(--eb-gold); }

/* WhatsApp enquire button on card */
.woocommerce ul.products li.product a.eb-wa-enquire {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text); background: transparent;
  padding: 0.9rem 1.125rem;
  border: none; border-top: 1px solid var(--eb-border);
  text-decoration: none; margin-top: 1rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.woocommerce ul.products li.product a.eb-wa-enquire svg { fill: currentColor; transition: fill 0.2s; }
.woocommerce ul.products li.product a.eb-wa-enquire:hover {
  color: var(--eb-gold); border-top-color: var(--eb-gold-border);
  background: var(--eb-gold-light);
}

/* ── 2e. Pagination ── */

.woocommerce nav.woocommerce-pagination {
  clear: both; padding: 3rem clamp(20px,4vw,48px) 5rem; text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0; border: none;
}
.woocommerce nav.woocommerce-pagination ul li { display: block; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  font-family: var(--eb-font-body); font-size: 13px;
  color: var(--eb-text-muted); border: 1px solid var(--eb-border);
  text-decoration: none; transition: all 0.2s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { color: var(--eb-gold); border-color: var(--eb-gold); }
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--eb-text); color: var(--eb-white); border-color: var(--eb-text);
}


/* ── 3. SINGLE PRODUCT PAGE ───────────────────────────────── */

.eb-wc-single-page { padding-top: 0; }
.eb-wc-single-page > .woocommerce {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(48px,6vw,80px) clamp(20px,4vw,48px) clamp(80px,10vw,120px);
}

/* ── 3. Hero Banner ── */

.eb-product-hero {
  position: relative;
  width: 100%;
  min-height: clamp(200px, 28vw, 340px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;          /* center horizontally */
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center 25%;
  overflow: hidden;
}

/* Overlay gradient: transparent top → deep charcoal bottom */
.eb-product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0)    0%,
    rgba(8,8,8,0.18) 35%,
    rgba(8,8,8,0.72) 70%,
    rgba(8,8,8,0.92) 100%
  );
  pointer-events: none;
}

/* Thin gold rule at bottom */
.eb-product-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--eb-gold) 30%, var(--eb-gold) 70%, transparent);
}

/* Bottom-center block: breadcrumb above title */
.eb-product-hero__bottom {
  position: relative;           /* above ::before overlay */
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding-bottom: 2rem;
}

/* Breadcrumb */
.eb-product-hero__breadcrumb .woocommerce-breadcrumb {
  font-family: var(--eb-font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.eb-product-hero__breadcrumb .woocommerce-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.eb-product-hero__breadcrumb .woocommerce-breadcrumb a:hover { color: var(--eb-gold); }

/* H1 title */
.eb-product-hero__title {
  font-family: var(--eb-font-display) !important;
  font-size: clamp(36px, 5.5vw, 80px) !important;
  font-weight: 300 !important;
  line-height: 0.93 !important;
  letter-spacing: -0.022em !important;
  color: var(--eb-white) !important;
  margin: 0 !important;
  max-width: 900px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* Product title h1 — inside summary column */
.woocommerce div.product .product_title {
  font-family: var(--eb-font-display) !important;
  font-size: clamp(28px, 3.5vw, 52px) !important;
  font-weight: 300 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.018em !important;
  color: var(--eb-text) !important;
  margin: 0 0 1.5rem !important;
}

/* Two-column grid: gallery (left) | summary (right) */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px,5vw,80px);
  align-items: start;
}

/* ── 3a. Custom Gallery ── */

/* Gallery outer: thumbnails LEFT, main image RIGHT */
.eb-product-gallery {
  position: sticky;
  top: clamp(80px,10vw,100px);
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}

/* Vertical thumb strip */
.eb-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  width: 72px;
  order: -1; /* always first (left) */
}
.eb-thumb {
  padding: 0; border: 2px solid transparent;
  background: var(--eb-bone); cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.eb-thumb img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.eb-thumb.is-active,
.eb-thumb:hover { border-color: var(--eb-gold); }
.eb-thumb.is-active img,
.eb-thumb:hover img { opacity: 1; }

/* Main image takes remaining width */
.eb-gallery-main {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--eb-bone);
}
.eb-gallery-main img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.eb-gallery-main:hover img { transform: scale(1.03); }

.eb-gallery-zoom {
  position: absolute;
  bottom: 0.875rem; right: 0.875rem;
  background: rgba(255,255,255,0.92);
  border: none; padding: 0.5rem; cursor: pointer;
  color: var(--eb-text); line-height: 1;
  transition: background 0.2s;
}
.eb-gallery-zoom:hover { background: var(--eb-white); }

/* ── 3b. Lightbox ── */

.eb-lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.eb-lightbox.is-open { opacity: 1; pointer-events: all; }
.eb-lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.eb-lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--eb-white); padding: 0.5rem; cursor: pointer;
  line-height: 1; transition: background 0.2s;
}
.eb-lightbox-close:hover { background: rgba(255,255,255,0.18); }

/* ── 3c. Summary ── */

.woocommerce div.product div.summary { padding: 0; }

/* WordPress FSE injects block-gap margin on summary children.
   Beat it with higher specificity (.eb-wc-single-page adds one extra class). */
.eb-wc-single-page .woocommerce div.product div.summary > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Re-apply exact spacing per element */
.eb-wc-single-page .woocommerce div.product div.summary .eb-product-brand  { margin-bottom: 0.5rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .product_title     { margin-bottom: 1rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .woocommerce-product-details__short-description { margin-bottom: 1.25rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .eb-availability   { margin-bottom: 1.5rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .eb-wa-cta-primary { margin-bottom: 1.5rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .eb-product-trust  { margin-bottom: 1.5rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .eb-summary-rule   { margin-bottom: 1.25rem !important; }
.eb-wc-single-page .woocommerce div.product div.summary .product_meta      { margin-top: 1rem !important; }

.woocommerce div.product .eb-product-brand {
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--eb-gold); margin: 0 0 0.75rem;
}
.woocommerce div.product .product_title {
  font-family: var(--eb-font-display) !important;
  font-size: clamp(22px, 2.8vw, 38px) !important;
  font-weight: 300 !important; line-height: 1.05 !important;
  letter-spacing: -0.014em !important; color: var(--eb-text) !important;
  margin: 0 0 1.25rem !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Availability */
.woocommerce div.product .eb-availability {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eb-text-muted); margin-bottom: 2rem;
}
.woocommerce div.product .eb-availability .eb-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--eb-gold);
}
.woocommerce div.product .eb-availability.eb-availability--in-stock .eb-dot { background: #5db55d; }

/* ── Primary WhatsApp CTA ── */
.woocommerce div.product .eb-wa-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 1.1rem 2rem;
  background: var(--eb-dark); color: var(--eb-white);
  border: 1.5px solid var(--eb-dark);
  font-family: var(--eb-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  margin-bottom: 1.75rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}
.woocommerce div.product .eb-wa-cta-primary:hover {
  background: var(--eb-gold); border-color: var(--eb-gold); color: var(--eb-dark);
  transform: translateY(-1px);
}
.woocommerce div.product .eb-wa-cta-primary svg { flex-shrink: 0; }
.woocommerce div.product .eb-cta-arrow { margin-left: auto; }

/* ── Trust strip ── */
.eb-product-trust {
  display: flex; gap: 0;
  border: 1px solid var(--eb-border-light);
  margin-bottom: 1.75rem;
}
.eb-trust-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem;
  padding: 1rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--eb-border-light);
  font-family: var(--eb-font-body);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text-dim);
}
.eb-trust-item:last-child { border-right: none; }
.eb-trust-item svg { color: var(--eb-gold); }

/* Divider */
.eb-summary-rule {
  border: none; border-top: 1px solid var(--eb-border-light);
  margin: 0 0 1.5rem;
}

/* Attributes table */
.woocommerce div.product table.woocommerce-product-attributes {
  width: 100%; border-collapse: collapse; margin-bottom: 0;
}
.woocommerce div.product table.woocommerce-product-attributes tr { border-bottom: 1px solid var(--eb-border-light); }
.woocommerce div.product table.woocommerce-product-attributes th {
  font-family: var(--eb-font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0.75rem 0; text-align: left; width: 38%;
}
.woocommerce div.product table.woocommerce-product-attributes td {
  font-family: var(--eb-font-body); font-size: 14px;
  color: var(--eb-text); padding: 0.75rem 0;
}

/* Meta: SKU, category, tags */
.woocommerce div.product .product_meta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--eb-border-light);
  font-family: var(--eb-font-body); font-size: 12px;
  color: var(--eb-text-dim); letter-spacing: 0.04em;
}
.woocommerce div.product .product_meta span { display: block; margin-bottom: 0.3rem; }
.woocommerce div.product .product_meta a { color: var(--eb-text-muted); text-decoration: none; }
.woocommerce div.product .product_meta a:hover { color: var(--eb-gold); }

/* ── 3d. Product Tabs ── */

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: clamp(48px,7vw,96px);
  border-top: 1px solid var(--eb-border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex; gap: 0; list-style: none;
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--eb-border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0; border: none; background: none; border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 1.25rem 2rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--eb-text); border-bottom-color: var(--eb-gold);
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 2.5rem 0;
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.85;
  max-width: 720px; background: none; border: none; box-shadow: none; margin: 0;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: var(--eb-font-display);
  font-size: clamp(22px,2.5vw,32px); font-weight: 400;
  color: var(--eb-text); margin-bottom: 1rem;
}

/* ── 3e. Related / Upsell Products ── */

.woocommerce .related,
.woocommerce .up-sells {
  grid-column: 1 / -1;
  padding: clamp(40px,6vw,80px) 0 0;
  border-top: 1px solid var(--eb-border);
  margin-top: clamp(40px,6vw,80px);
}
.woocommerce .related h2,
.woocommerce .up-sells h2 {
  font-family: var(--eb-font-display);
  font-size: clamp(28px,3.5vw,48px); font-weight: 300;
  color: var(--eb-text); margin-bottom: 2.5rem; letter-spacing: -0.012em;
}
.woocommerce .related ul.products,
.woocommerce .up-sells ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ── 3f. Mobile Sticky WhatsApp Bar ── */

.eb-sticky-wa {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0.5rem clamp(16px,4vw,24px) max(0.5rem, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--eb-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.eb-sticky-wa__btn {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  width: 100%; padding: 0.875rem 1.5rem;
  background: #25D366; color: #fff;
  font-family: var(--eb-font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.eb-sticky-wa__btn:hover { background: #1ebe5d; }

/* ── 3g. Single Product — Responsive ── */

@media (max-width: 900px) {
  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: clamp(24px,5vw,40px);
  }
  .eb-product-gallery {
    position: static;
    flex-direction: column; /* thumbs below main on mobile */
  }
  .eb-gallery-thumbs {
    flex-direction: row;    /* horizontal strip on mobile */
    width: auto;
    order: 0;
  }
  .eb-gallery-thumbs .eb-thumb { width: 64px; flex-shrink: 0; }
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce .related,
  .woocommerce .up-sells { grid-column: 1; }
  .eb-sticky-wa { display: block; }
  .eb-wc-single-page > .woocommerce { padding-bottom: 80px; }

  .eb-product-hero { min-height: 300px; }
}

@media (max-width: 600px) {
  .eb-product-hero { min-height: 240px; background-position: center 15%; }
  .eb-product-hero__title { font-size: clamp(28px, 8vw, 44px) !important; }

  .eb-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 1rem; font-size: 10px;
  }
  .woocommerce .related ul.products,
  .woocommerce .up-sells ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .eb-product-trust { flex-wrap: wrap; }
  .eb-trust-item { flex: 0 0 33.333%; }
}


/* ── 4. CART PAGE ─────────────────────────────────────────── */

.eb-wc-cart-page { padding-top: 80px; }
.eb-wc-cart-page .woocommerce {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px,5vw,64px) clamp(20px,4vw,48px) clamp(64px,8vw,96px);
}

/* Cart table */
.woocommerce-cart-form { overflow-x: auto; }
.woocommerce-cart-form .shop_table {
  width: 100%; border-collapse: collapse;
  font-family: var(--eb-font-body);
}
.woocommerce-cart-form .shop_table thead th {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--eb-border); text-align: left;
}
.woocommerce-cart-form .shop_table tbody td {
  padding: 1.5rem 0.75rem 1.5rem 0;
  border-bottom: 1px solid var(--eb-border-light); vertical-align: middle;
}
.woocommerce-cart-form td.product-thumbnail { width: 90px; }
.woocommerce-cart-form td.product-thumbnail img {
  width: 72px; height: 96px; object-fit: cover; display: block;
}
.woocommerce-cart-form td.product-name a {
  font-family: var(--eb-font-display); font-size: 20px; font-weight: 400;
  color: var(--eb-text); text-decoration: none;
}
.woocommerce-cart-form td.product-name a:hover { color: var(--eb-gold); }
.woocommerce-cart-form td.product-name dl.variation {
  margin-top: 0.5rem; font-size: 12px; color: var(--eb-text-dim);
}
.woocommerce-cart-form td.product-remove a {
  font-size: 20px; color: var(--eb-text-dim); text-decoration: none; line-height: 1;
  transition: color 0.2s;
}
.woocommerce-cart-form td.product-remove a:hover { color: #c9596e; }
.woocommerce-cart-form td.product-price,
.woocommerce-cart-form td.product-subtotal { font-size: 14px; color: var(--eb-text-muted); }
/* Qty input */
.woocommerce-cart-form input.qty {
  width: 60px; padding: 0.5rem 0.5rem; text-align: center;
  border: 1px solid var(--eb-border); border-radius: 0;
  font-family: var(--eb-font-body); font-size: 14px; color: var(--eb-text);
  background: transparent; outline: none; appearance: none;
}
.woocommerce-cart-form input.qty:focus { border-color: var(--eb-gold); }
/* Cart actions */
.woocommerce-cart-form .actions {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0;
}
.woocommerce-cart-form .coupon {
  display: flex; gap: 0.5rem; align-items: center;
}
.woocommerce-cart-form .coupon input#coupon_code {
  font-family: var(--eb-font-body); font-size: 13px;
  padding: 0.6rem 1rem; border: 1px solid var(--eb-border); border-radius: 0;
  color: var(--eb-text); background: transparent; outline: none; min-width: 180px;
}
.woocommerce-cart-form .coupon input#coupon_code:focus { border-color: var(--eb-gold); }

/* Cart totals */
.cart-collaterals { display: flex; justify-content: flex-end; margin-top: 2.5rem; }
.cart-collaterals .cart_totals { width: 100%; max-width: 420px; }
.cart_totals h2 {
  font-family: var(--eb-font-display); font-size: 28px; font-weight: 400;
  color: var(--eb-text); margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.cart_totals table.shop_table { width: 100%; border-collapse: collapse; }
.cart_totals table.shop_table th {
  font-family: var(--eb-font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0.875rem 0;
  border-bottom: 1px solid var(--eb-border-light); text-align: left; width: 50%;
}
.cart_totals table.shop_table td {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text); padding: 0.875rem 0;
  border-bottom: 1px solid var(--eb-border-light); text-align: right;
}
.cart_totals .order-total th,
.cart_totals .order-total td {
  font-size: 17px; font-weight: 600; color: var(--eb-text);
  border-top: 1px solid var(--eb-border); border-bottom: none;
  padding-top: 1.25rem;
}
.cart_totals .wc-proceed-to-checkout { margin-top: 1.5rem; }
.cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: block; width: 100%; text-align: center;
  background: var(--eb-dark); color: var(--eb-white);
  border: 1px solid var(--eb-dark);
  font-family: var(--eb-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.1rem; text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--eb-gold); border-color: var(--eb-gold); color: var(--eb-dark);
}

/* Cross-sells on cart page */
.cross-sells h2 {
  font-family: var(--eb-font-display); font-size: clamp(24px,3vw,38px);
  font-weight: 300; color: var(--eb-text); margin: 3rem 0 1.5rem;
}
.cross-sells ul.products { grid-template-columns: repeat(4,1fr) !important; }


/* ── 5. CHECKOUT PAGE ─────────────────────────────────────── */

.eb-wc-checkout-page { padding-top: 80px; }
.eb-wc-checkout-page .woocommerce {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px,5vw,64px) clamp(20px,4vw,48px) clamp(64px,8vw,96px);
}

/* 2-column checkout layout */
.woocommerce form.checkout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
.woocommerce form.checkout #customer_details { grid-column: 1; }
.woocommerce form.checkout #order_review_heading,
.woocommerce form.checkout #order_review { grid-column: 2; grid-row: 1 / span 3; }
.woocommerce form.checkout #payment { grid-column: 1; }

.woocommerce-checkout h3 {
  font-family: var(--eb-font-display);
  font-size: clamp(22px,2.5vw,34px); font-weight: 400;
  color: var(--eb-text); margin: 0 0 1.75rem; letter-spacing: -0.01em;
}
.woocommerce-checkout #order_review_heading { margin-bottom: 0; }

/* Billing / Shipping column sets */
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
  margin-bottom: 2rem;
}
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 { margin-bottom: 1.5rem; }

/* Two-column field groups */
.woocommerce-billing-fields .form-row-first,
.woocommerce-billing-fields .form-row-last,
.woocommerce-shipping-fields .form-row-first,
.woocommerce-shipping-fields .form-row-last { width: 48%; display: inline-block; }
.woocommerce-billing-fields .form-row-last,
.woocommerce-shipping-fields .form-row-last { float: right; }

/* Order review */
#order_review {
  background: var(--eb-off-white);
  padding: 2rem; position: sticky; top: 100px;
}
.woocommerce-checkout-review-order h3 {
  font-size: clamp(18px,2vw,24px); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--eb-border);
}
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; }
.woocommerce-checkout-review-order-table thead th {
  font-family: var(--eb-font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--eb-text-dim); padding-bottom: 1rem;
  border-bottom: 1px solid var(--eb-border); text-align: left;
}
.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tfoot tr td {
  font-family: var(--eb-font-body); font-size: 14px;
  color: var(--eb-text); padding: 0.875rem 0;
  border-bottom: 1px solid var(--eb-border-light);
}
.woocommerce-checkout-review-order-table tfoot tr th {
  font-family: var(--eb-font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0.875rem 0;
  border-bottom: 1px solid var(--eb-border-light);
}
.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td {
  font-size: 17px; font-weight: 600; color: var(--eb-text);
  border-top: 1px solid var(--eb-border); border-bottom: none;
  padding-top: 1.25rem;
}

/* Payment section */
#payment { margin-top: 1.5rem; background: transparent; padding: 0; border-radius: 0; }
#payment ul.payment_methods {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid var(--eb-border);
  border-radius: 0;
}
#payment ul.payment_methods li { border-bottom: 1px solid var(--eb-border-light); padding: 1rem 1.25rem; }
#payment ul.payment_methods li:last-child { border-bottom: none; }
#payment ul.payment_methods li label {
  font-family: var(--eb-font-body); font-size: 14px; color: var(--eb-text);
  cursor: pointer; display: flex; align-items: center; gap: 0.625rem;
}
#payment .payment_box {
  background: var(--eb-off-white); padding: 0.875rem 1rem; margin-top: 0.625rem;
  font-family: var(--eb-font-body); font-size: 13px; color: var(--eb-text-muted);
}
#payment #place_order {
  display: block; width: 100%;
  background: var(--eb-dark); color: var(--eb-white);
  border: 1px solid var(--eb-dark); border-radius: 0;
  font-family: var(--eb-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.1rem; cursor: pointer; margin-top: 1.5rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
#payment #place_order:hover { background: var(--eb-gold); border-color: var(--eb-gold); color: var(--eb-dark); }


/* ── 6. MY ACCOUNT PAGE ───────────────────────────────────── */

.eb-wc-account-page { padding-top: 80px; }
.eb-wc-account-page .woocommerce {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px,5vw,64px) clamp(20px,4vw,48px) clamp(64px,8vw,96px);
}

/* ── 6a. Login / Register (not logged in) ── */

.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 960px;
}
.woocommerce-account .col2-set {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 { float: none; width: 100%; }
.woocommerce-account .col2-set h2 {
  font-family: var(--eb-font-display);
  font-size: clamp(28px,3vw,42px); font-weight: 300;
  color: var(--eb-text); margin-bottom: 1.75rem; letter-spacing: -0.01em;
}
.woocommerce-form-login,
.woocommerce-form-register {
  padding: 2rem; border: 1px solid var(--eb-border);
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox,
.woocommerce-form-register .woocommerce-form__label-for-checkbox {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 13px; color: var(--eb-text-muted);
}
.woocommerce-LostPassword { margin-top: 0.5rem; }
.woocommerce-LostPassword a {
  font-family: var(--eb-font-body); font-size: 12px;
  color: var(--eb-text-dim); text-decoration: underline;
}
.woocommerce-LostPassword a:hover { color: var(--eb-gold); }

/* ── 6b. Account Navigation (logged in) ── */

.woocommerce-account.logged-in .woocommerce {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 3rem; align-items: start;
}
.woocommerce-MyAccount-navigation {
  position: sticky; top: 96px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none; margin: 0; padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--eb-border-light);
}
.woocommerce-MyAccount-navigation ul li:first-child { border-top: 1px solid var(--eb-border-light); }
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0.875rem 0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--eb-text); padding-left: 0.5rem;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--logout a {
  color: var(--eb-text-dim); opacity: 0.6;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--logout a:hover {
  color: #c9596e; opacity: 1;
}

/* ── 6c. Dashboard ── */

.woocommerce-MyAccount-content {
  min-height: 480px;
}
.woocommerce-MyAccount-content p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.8;
}
.woocommerce-MyAccount-content h2 {
  font-family: var(--eb-font-display);
  font-size: 28px; font-weight: 400; color: var(--eb-text); margin-bottom: 1rem;
}

/* Custom welcome block */
.eb-account-welcome { max-width: 560px; }
.eb-account-welcome__greeting {
  font-family: var(--eb-font-display);
  font-size: clamp(26px,3vw,40px); font-weight: 300;
  color: var(--eb-text); margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.eb-account-welcome__text {
  font-size: 15px; color: var(--eb-text-muted); line-height: 1.8; margin-bottom: 1.5rem;
}
.eb-account-wa-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-family: var(--eb-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-gold); text-decoration: none;
  border-bottom: 1px solid var(--eb-gold-border);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.eb-account-wa-link:hover { color: var(--eb-gold-soft); border-color: var(--eb-gold-soft); }

/* ── 6d. Orders Table ── */

.woocommerce-orders-table,
.shop_table.order_details {
  width: 100%; border-collapse: collapse;
  font-family: var(--eb-font-body);
}
.woocommerce-orders-table__header,
.shop_table.order_details thead th {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--eb-text-dim); padding: 0.75rem 0;
  border-bottom: 1px solid var(--eb-border); text-align: left;
}
.woocommerce-orders-table__cell,
.shop_table.order_details tbody td {
  font-size: 14px; color: var(--eb-text);
  padding: 1rem 0; border-bottom: 1px solid var(--eb-border-light);
}
.woocommerce-orders-table__cell-order-status mark {
  display: inline-block;
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  background: var(--eb-gold-light); color: var(--eb-gold-soft); border-radius: 0;
}
.woocommerce-orders-table__cell-order-actions .button,
.woocommerce-orders-table__cell-order-actions a.button {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text-dim); border: 1px solid var(--eb-border);
  padding: 0.375rem 0.75rem; text-decoration: none;
  background: transparent; display: inline-block;
  transition: all 0.2s;
}
.woocommerce-orders-table__cell-order-actions a.button:hover {
  color: var(--eb-text); border-color: var(--eb-text); background: transparent;
}

/* ── 6e. Address form ── */

.woocommerce-account address {
  font-style: normal; font-family: var(--eb-font-body);
  font-size: 15px; line-height: 1.9; color: var(--eb-text-muted);
}

/* ── 7. WC BLOCKS (Modern WC 8+) ─────────────────────────── */

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px,5vw,64px) clamp(20px,4vw,48px) clamp(64px,8vw,96px);
  font-family: var(--eb-font-body);
}

/* Block inputs */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
  border: 1px solid var(--eb-border) !important;
  border-radius: 0 !important;
  font-family: var(--eb-font-body) !important;
  font-size: 14px !important; color: var(--eb-text) !important;
  padding: 0.8rem 1rem !important;
  outline: none !important; box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus {
  border-color: var(--eb-gold) !important;
  box-shadow: 0 0 0 3px var(--eb-gold-light) !important;
}
.wc-block-components-label {
  font-family: var(--eb-font-body) !important;
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  color: var(--eb-text-dim) !important;
}
/* Block buttons */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wp-block-woocommerce-checkout-order-summary-coupon-form button {
  background: var(--eb-dark) !important;
  color: var(--eb-white) !important;
  border: 1px solid var(--eb-dark) !important;
  border-radius: 0 !important;
  font-family: var(--eb-font-body) !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  padding: 1rem !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover {
  background: var(--eb-gold) !important;
  border-color: var(--eb-gold) !important;
  color: var(--eb-dark) !important;
}
/* Order summary in checkout block */
.wc-block-checkout__order-summary { background: var(--eb-off-white) !important; }
.wc-block-components-order-summary-item__image img {
  width: 72px !important; height: 96px !important; object-fit: cover !important;
}
/* Block headings */
.wc-block-components-title,
.wc-block-checkout__billing-fields h2,
.wc-block-checkout__shipping-fields h2 {
  font-family: var(--eb-font-display) !important;
  font-weight: 300 !important; letter-spacing: -0.01em !important;
}


/* ════════════════════════════════════════════════════════════
   SHOP FILTERS
   ════════════════════════════════════════════════════════════ */

.eb-shop-filters {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--eb-border);
  position: sticky;
  top: 72px;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.eb-shop-filters__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex; align-items: stretch; gap: 0;
  min-height: 52px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.eb-shop-filters__inner::-webkit-scrollbar { display: none; }

/* Category pills */
.eb-filter-cats {
  display: flex; align-items: stretch; gap: 0; flex: 1; min-width: 0;
}
.eb-filter-cats::after {
  content: ''; display: block; width: 1px;
  background: var(--eb-border); margin: 12px 1.25rem; flex-shrink: 0;
}
.eb-filter-cat {
  display: inline-flex; align-items: center;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eb-text-muted); text-decoration: none;
  padding: 0 1rem; white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.eb-filter-cat:hover { color: var(--eb-text); }
.eb-filter-cat.is-active { color: var(--eb-text); border-bottom-color: var(--eb-gold); }

/* Brand dropdown */
.eb-filter-select-wrap {
  position: relative; display: flex; align-items: center; gap: 0.35rem;
  flex-shrink: 0; padding-right: 1.75rem;
  border-right: 1px solid var(--eb-border); margin: 12px 0;
}
.eb-filter-select {
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--eb-text-muted); background: transparent;
  border: none; padding: 0; padding-right: 1rem;
  cursor: pointer; appearance: none; -webkit-appearance: none; outline: none;
}
.eb-filter-select:hover,
.eb-filter-select:focus { color: var(--eb-text); }
.eb-filter-select option { text-transform: none; letter-spacing: 0; font-size: 13px; }
.eb-filter-select-wrap > svg {
  position: absolute; right: 0.875rem; pointer-events: none; color: var(--eb-text-dim);
}

/* Clear button */
.eb-filter-clear {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--eb-text-dim); text-decoration: none;
  margin-left: 1.25rem; align-self: center; flex-shrink: 0;
  padding: 0.3rem 0.625rem; border: 1px solid var(--eb-border);
  transition: color 0.2s, border-color 0.2s;
}
.eb-filter-clear:hover { color: var(--eb-text); border-color: var(--eb-text); }

@media (max-width: 768px) {
  .eb-shop-filters { top: 64px; }

  /* Switch inner wrapper to 2-row layout */
  .eb-shop-filters__inner {
    flex-wrap: wrap;
    overflow-x: visible;
    padding: 0;
    min-height: auto;
  }

  /* Row 1 — category pills, full width, scrollable */
  .eb-filter-cats {
    flex: 0 0 100%;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 clamp(16px, 4vw, 24px);
    min-height: 44px;
    border-bottom: 1px solid var(--eb-border);
  }
  .eb-filter-cats::-webkit-scrollbar { display: none; }
  .eb-filter-cats::after { display: none; } /* no vertical divider on mobile */
  .eb-filter-cat { padding: 0 0.75rem; font-size: 10px; }

  /* Row 2 — brand dropdown + clear */
  .eb-filter-select-wrap {
    border-right: none;
    margin: 0;
    padding: 0 clamp(16px, 4vw, 24px);
    min-height: 40px;
  }
  .eb-filter-clear {
    margin-left: auto;
    margin-right: 0;
    border: none;
    border-left: 1px solid var(--eb-border);
    padding: 0 clamp(16px, 4vw, 24px);
    align-self: stretch;
    font-size: 9px;
  }
}


/* ════════════════════════════════════════════════════════════
   SHOP SEO SECTION
   ════════════════════════════════════════════════════════════ */

.eb-shop-seo {
  background: var(--eb-bone);
  padding: clamp(52px,7vw,88px) 0;
  border-top: 1px solid var(--eb-border);
}
.eb-shop-seo__inner {
  max-width: 760px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px); text-align: center;
}
.eb-shop-seo__heading {
  font-family: var(--eb-font-display);
  font-size: clamp(26px,3.5vw,44px); font-weight: 300;
  letter-spacing: -0.012em; color: var(--eb-text);
  margin: 0 0 0; line-height: 1.05;
}
.eb-shop-seo__heading::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--eb-gold); margin: 1.25rem auto 1.5rem;
}
.eb-shop-seo__body {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.9;
}
.eb-shop-seo__body p { margin: 0 0 1rem; }
.eb-shop-seo__body p:last-child { margin-bottom: 0; }
.eb-shop-seo__body strong { color: var(--eb-text); font-weight: 500; }
.eb-shop-seo__body a { color: var(--eb-gold); }
.eb-shop-seo__body a:hover { color: var(--eb-gold-soft); }


/* ── Page Titles (from render callbacks) ── */
h1.eb-wc-page-title {
  font-family: var(--eb-font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300; letter-spacing: -0.015em; line-height: 0.95;
  color: var(--eb-text); margin: 0 0 2.5rem;
}

/* ── 8. WC RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1100px) {
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; }
  .woocommerce .related ul.products,
  .woocommerce .up-sells ul.products { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 900px) {
  .woocommerce div.product { grid-template-columns: 1fr; }
  .woocommerce div.product div.images { position: relative; top: 0; }
  .woocommerce div.product .product_title { font-size: clamp(32px,6vw,56px) !important; }
  .woocommerce form.checkout { grid-template-columns: 1fr; }
  .woocommerce form.checkout #order_review_heading,
  .woocommerce form.checkout #order_review { grid-column: 1; grid-row: auto; }
  #order_review { position: static; }
  .woocommerce-account.logged-in .woocommerce { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-navigation { position: static; }
  .cross-sells ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .woocommerce .related ul.products,
  .woocommerce .up-sells ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .woocommerce-account .col2-set { grid-template-columns: 1fr; }
  .woocommerce-billing-fields .form-row-first,
  .woocommerce-billing-fields .form-row-last,
  .woocommerce-shipping-fields .form-row-first,
  .woocommerce-shipping-fields .form-row-last { width: 100%; float: none; display: block; }
  .eb-shop-hero__title { font-size: clamp(40px,10vw,80px); }
  .cart-collaterals { justify-content: stretch; }
  .cart-collaterals .cart_totals { max-width: none; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; gap: 1px !important; }
  .woocommerce-product-gallery .flex-control-thumbs { grid-template-columns: repeat(4,1fr); }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 1rem 1rem; }
}


/* ══════════════════════════════════════════════════════════════
   9. STATIC PAGES (About, Contact, FAQ, Shipping)
   ══════════════════════════════════════════════════════════════ */

/* ── Shared container ── */
.eb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ── Page hero (static pages) ── */
.eb-page-hero {
  position: relative;
  background: #0a0a0a;
  min-height: clamp(160px, 20vw, 240px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.eb-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--eb-gold) 30%, var(--eb-gold) 70%, transparent);
}
.eb-page-hero__breadcrumb {
  position: absolute;
  top: 1.25rem;
  left: clamp(20px, 4vw, 48px);
  font-family: var(--eb-font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.eb-page-hero__breadcrumb a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.eb-page-hero__breadcrumb a:hover { color: var(--eb-gold); }
.eb-page-hero__content {
  padding: 0 clamp(20px, 4vw, 48px) clamp(28px, 4vw, 44px);
}
.eb-page-hero__eyebrow {
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--eb-gold); margin: 0 0 0.5rem;
}
.eb-page-hero__title {
  font-family: var(--eb-font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--eb-white);
  margin: 0;
}

/* ── Shared: WhatsApp strip ── */
.eb-wa-strip {
  background: var(--eb-dark);
  padding: clamp(48px, 7vw, 80px) 0;
  margin-top: clamp(64px, 8vw, 96px);
}
.eb-wa-strip__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.eb-wa-strip__heading {
  font-family: var(--eb-font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; color: var(--eb-white);
  letter-spacing: -0.012em; margin: 0 0 0.4rem;
}
.eb-wa-strip__sub {
  font-family: var(--eb-font-body);
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin: 0;
}
.eb-wa-strip__btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: #25D366; color: #fff;
  font-family: var(--eb-font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.eb-wa-strip__btn:hover { background: #1ebe5d; }

/* ── About: Story ── */
.eb-about-story {
  padding: clamp(64px, 9vw, 112px) 0;
}
.eb-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.eb-about-story__text .eb-eyebrow { display: block; margin-bottom: 1rem; }
.eb-about-story__heading {
  font-family: var(--eb-font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--eb-text); margin: 0 0 1.5rem;
  white-space: pre-line;
}
.eb-about-story__text p {
  font-family: var(--eb-font-body);
  font-size: 15px; color: var(--eb-text-muted);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.eb-about-story__text .eb-btn--outline {
  display: inline-block; margin-top: 0.75rem;
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--eb-text); text-decoration: none;
  border-bottom: 1px solid var(--eb-gold);
  padding-bottom: 0.25rem;
  transition: color 0.2s;
}
.eb-about-story__text .eb-btn--outline:hover { color: var(--eb-gold); }
.eb-about-story__deco {
  display: flex; flex-direction: column; gap: 2rem;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--eb-border);
}
.eb-about-story__deco-inner { display: flex; flex-direction: column; gap: 0.25rem; }
.eb-about-story__number {
  font-family: var(--eb-font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300; letter-spacing: -0.02em;
  color: var(--eb-text); line-height: 1;
}
.eb-about-story__number sup { font-size: 0.45em; vertical-align: super; color: var(--eb-gold); }
.eb-about-story__number-label {
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--eb-text-dim);
}

/* ── About: Values ── */
.eb-about-values {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--eb-bone);
}
.eb-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--eb-border);
}
.eb-about-values__item {
  background: var(--eb-bone);
  padding: clamp(32px, 4vw, 48px);
}
.eb-about-values__icon {
  color: var(--eb-gold);
  margin-bottom: 1.25rem; display: block;
  width: 28px; height: 28px;
}
.eb-about-values__item h3 {
  font-family: var(--eb-font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; color: var(--eb-text);
  margin: 0 0 0.75rem;
}
.eb-about-values__item p {
  font-family: var(--eb-font-body);
  font-size: 14px; color: var(--eb-text-muted);
  line-height: 1.8; margin: 0;
}

/* ── Contact ── */
.eb-contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(64px, 9vw, 112px);
}
.eb-contact-wa { display: flex; flex-direction: column; gap: 0; }
.eb-contact-wa .eb-eyebrow { margin-bottom: 0.75rem; }
.eb-contact-wa h2 {
  font-family: var(--eb-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; color: var(--eb-text);
  letter-spacing: -0.015em; margin: 0 0 1rem;
}
.eb-contact-wa p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.8; margin: 0 0 1.75rem;
}
.eb-contact-wa__btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: #fff;
  font-family: var(--eb-font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 1.75rem;
  transition: background 0.2s; align-self: flex-start;
  margin-bottom: 0.875rem;
}
.eb-contact-wa__btn:hover { background: #1ebe5d; color: #fff; }
.eb-contact-wa__note {
  font-family: var(--eb-font-body); font-size: 11px;
  color: var(--eb-text-dim); letter-spacing: 0.06em;
  margin: 0;
}
.eb-contact-info {
  display: flex; flex-direction: column; gap: 2rem;
  border-left: 1px solid var(--eb-border);
  padding-left: clamp(32px, 4vw, 64px);
}
.eb-contact-info__block h3 {
  font-family: var(--eb-font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--eb-text-dim); margin: 0 0 0.5rem;
}
.eb-contact-info__block address,
.eb-contact-info__block p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.7;
  font-style: normal; margin: 0;
}
.eb-contact-info__block a {
  color: var(--eb-text-muted); text-decoration: none;
  transition: color 0.2s;
}
.eb-contact-info__block a:hover { color: var(--eb-gold); }
.eb-contact-info__link {
  display: inline-block; margin-top: 0.5rem;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--eb-gold);
  padding-bottom: 0.2rem;
}

/* ── FAQ ── */
.eb-faq-body {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(64px, 9vw, 112px);
}
.eb-faq-list {
  max-width: 780px; margin: 0 auto 3rem;
  border-top: 1px solid var(--eb-border);
}
.eb-faq-item {
  border-bottom: 1px solid var(--eb-border);
}
.eb-faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--eb-font-body);
  font-size: 15px; font-weight: 500;
  color: var(--eb-text);
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}
.eb-faq-item__q::-webkit-details-marker { display: none; }
.eb-faq-item__q:hover { color: var(--eb-gold); }
.eb-faq-item__icon {
  flex-shrink: 0; color: var(--eb-gold);
  transition: transform 0.25s ease;
}
details[open] .eb-faq-item__icon { transform: rotate(180deg); }
.eb-faq-item__a {
  padding: 0 0 1.5rem;
}
.eb-faq-item__a p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.85; margin: 0;
  max-width: 640px;
}
.eb-faq-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--eb-border-light);
  max-width: 780px; margin: 0 auto;
}
.eb-faq-cta p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); margin: 0 0 1.25rem;
}

/* ── Shipping ── */
.eb-shipping-body {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(64px, 9vw, 112px);
}
.eb-shipping-zones {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--eb-border);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.eb-shipping-zone {
  background: var(--eb-white);
  padding: clamp(28px, 3vw, 40px);
}
.eb-shipping-zone__flag {
  font-size: 28px; margin-bottom: 0.75rem;
}
.eb-shipping-zone h3 {
  font-family: var(--eb-font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; color: var(--eb-text);
  margin: 0 0 0.5rem;
}
.eb-shipping-zone__time {
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--eb-gold); margin: 0 0 0.875rem;
}
.eb-shipping-zone p:last-child {
  font-family: var(--eb-font-body); font-size: 14px;
  color: var(--eb-text-muted); line-height: 1.8; margin: 0;
}
.eb-shipping-policy {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.eb-shipping-policy__section h2 {
  font-family: var(--eb-font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400; color: var(--eb-text);
  margin: 0 0 0.875rem;
}
.eb-shipping-policy__section h2 + h2 { margin-top: 2rem; }
.eb-shipping-policy__section h3 {
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--eb-text-dim); margin: 1.5rem 0 0.5rem;
}
.eb-shipping-policy__section p,
.eb-shipping-policy__section ul {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); line-height: 1.8; margin: 0;
}
.eb-shipping-policy__section ul {
  padding-left: 1.25rem; margin-top: 0.5rem;
}
.eb-shipping-policy__section ul li { margin-bottom: 0.35rem; }
.eb-shipping-cta {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--eb-border-light);
}
.eb-shipping-cta p {
  font-family: var(--eb-font-body); font-size: 15px;
  color: var(--eb-text-muted); margin: 0 0 1.25rem;
}

/* ── Shared button styles used by static pages ── */
.eb-btn--primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--eb-dark); color: var(--eb-white);
  font-family: var(--eb-font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 0.9rem 1.75rem;
  border: 1.5px solid var(--eb-dark);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.eb-btn--primary:hover {
  background: var(--eb-gold); border-color: var(--eb-gold); color: var(--eb-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .eb-about-story__inner { grid-template-columns: 1fr; }
  .eb-about-values__grid { grid-template-columns: 1fr; }
  .eb-contact-body { grid-template-columns: 1fr; }
  .eb-contact-info { border-left: none; padding-left: 0; border-top: 1px solid var(--eb-border); padding-top: 2rem; }
  .eb-shipping-zones { grid-template-columns: 1fr; }
  .eb-shipping-policy { grid-template-columns: 1fr; }
  .eb-wa-strip__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .eb-page-hero__title { font-size: clamp(22px, 7vw, 36px); }
  .eb-faq-item__q { font-size: 14px; }
}