/** Shopify CDN: Minification failed

Line 48:0 All "@import" rules must come first

**/
/* ============================================================
   GOLDEN EMERALD CO. — "OBSIDIAN ELEGANCE" THEME
   Custom CSS for Shopify Dawn Theme Override
   Version 1.0 | golden-emerald-co.myshopify.com
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Core Palette */
  --ge-jet:        #050505;
  --ge-charcoal:   #121212;
  --ge-charcoal-2: #1A1A1A;
  --ge-charcoal-3: #222222;
  --ge-gold:       #D4AF37;
  --ge-gold-light: #E8C84A;
  --ge-gold-dim:   rgba(212, 175, 55, 0.15);
  --ge-emerald:    #043927;
  --ge-emerald-2:  #0A5C3A;
  --ge-mist:       rgba(255,255,255,0.06);
  --ge-fog:        rgba(255,255,255,0.03);

  /* Typography */
  --ge-font-display: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
  --ge-font-body:    'Jost', 'Montserrat', sans-serif;
  --ge-font-micro:   'Jost', letter-spacing: 0.2em;

  /* Spacing */
  --ge-section-pad:  clamp(60px, 10vw, 140px);
  --ge-card-radius:  2px;
  --ge-border:       1px solid rgba(212, 175, 55, 0.2);

  /* Transitions */
  --ge-ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ge-ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --ge-duration:     0.6s;

  /* Shadows */
  --ge-glow:         0 0 40px rgba(212, 175, 55, 0.12);
  --ge-card-shadow:  0 20px 60px rgba(0,0,0,0.6), 0 1px 0 rgba(212,175,55,0.1);
}

/* ── 2. GOOGLE FONTS IMPORT ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

/* ── 3. GLOBAL RESET & BASE ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--ge-jet);
  color: rgba(255,255,255,0.88);
  font-family: var(--ge-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  cursor: none; /* custom cursor active */
}

/* Dawn theme color overrides */
:root {
  --color-base-background-1: #050505;
  --color-base-background-2: #121212;
  --color-base-solid-button-labels: #050505;
  --color-base-outline-button-labels: #D4AF37;
  --color-base-accent-1: #D4AF37;
  --color-base-accent-2: #043927;
  --color-base-text: rgba(255,255,255,0.88);
  --color-shadow: rgba(0,0,0,0.9);
}

/* ── 4. CUSTOM CURSOR ──────────────────────────────────────── */
.ge-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--ge-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ge-ease), width 0.3s var(--ge-ease), height 0.3s var(--ge-ease), background 0.3s;
  mix-blend-mode: screen;
}

.ge-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ge-ease), width 0.4s var(--ge-ease), height 0.4s var(--ge-ease), border-color 0.3s;
}

.ge-cursor.is-hovering { width: 6px; height: 6px; }
.ge-cursor-ring.is-hovering { width: 60px; height: 60px; border-color: var(--ge-gold); }

/* ── 5. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, .ge-display {
  font-family: var(--ge-font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }

.ge-eyebrow {
  font-family: var(--ge-font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ge-gold);
  display: block;
  margin-bottom: 1.2rem;
}

.ge-body-large {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 60ch;
}

/* Gold text utility */
.ge-gold-text { color: var(--ge-gold); }
.ge-italic { font-style: italic; }

/* ── 6. HEADER / NAVIGATION ────────────────────────────────── */
.shopify-section-header,
header-drawer,
.header-wrapper {
  background: transparent !important;
  border-bottom: none !important;
}

.ge-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ge-ease), padding 0.4s var(--ge-ease), backdrop-filter 0.5s;
}

.ge-header.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 18px 60px;
  border-bottom: var(--ge-border);
}

.ge-logo {
  font-family: var(--ge-font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}

.ge-logo span { color: var(--ge-gold); }

.ge-nav {
  display: flex;
  gap: 48px;
  list-style: none;
}

.ge-nav a {
  font-family: var(--ge-font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.ge-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--ge-gold);
  transition: width 0.4s var(--ge-ease);
}

.ge-nav a:hover { color: #fff; }
.ge-nav a:hover::after { width: 100%; }

.ge-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ge-header-icon {
  color: rgba(255,255,255,0.7);
  width: 20px; height: 20px;
  transition: color 0.3s;
  cursor: pointer;
}

.ge-header-icon:hover { color: var(--ge-gold); }

/* ── 7. CINEMATIC HERO ─────────────────────────────────────── */
.ge-hero {
  position: relative;
  height: 100dvh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ge-hero__media {
  position: absolute;
  inset: -10%;
  z-index: 0;
  will-change: transform;
}

.ge-hero__media video,
.ge-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.ge-hero__media .ge-placeholder-wrap--hero {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
}

/* Cinematic gradient overlay */
.ge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5,5,5,0.75) 0%, rgba(5,5,5,0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.0) 50%);
}

/* Noise grain texture */
.ge-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.ge-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 40px;
}

.ge-hero__content .ge-eyebrow { color: var(--ge-gold); }

.ge-hero__title {
  font-family: var(--ge-font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 2rem;
}

.ge-hero__title em {
  font-style: italic;
  color: var(--ge-gold);
}

.ge-hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  max-width: 50ch;
}

/* Scroll indicator */
.ge-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.ge-hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.ge-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── 8. BUTTONS ────────────────────────────────────────────── */
.ge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ge-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 42px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  transition: color 0.4s var(--ge-ease), transform 0.3s var(--ge-ease);
  -webkit-tap-highlight-color: transparent;
}

/* Magnetic button wrapper */
.ge-btn-wrap {
  display: inline-block;
  position: relative;
}

.ge-btn--primary {
  background: var(--ge-gold);
  color: var(--ge-jet);
}

.ge-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ge-gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ge-ease);
}

.ge-btn--primary:hover::before { transform: scaleX(1); }
.ge-btn--primary:hover { color: var(--ge-jet); }

.ge-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.ge-btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ge-ease);
}

.ge-btn--ghost:hover::before { transform: scaleX(1); }
.ge-btn--ghost:hover { border-color: rgba(255,255,255,0.5); }

.ge-btn span { position: relative; z-index: 1; }

.ge-btn-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 0.3s var(--ge-ease);
}

.ge-btn:hover .ge-btn-arrow { transform: translateX(5px); }

/* ── 9. SECTION LAYOUT ─────────────────────────────────────── */
.ge-section {
  padding: var(--ge-section-pad) clamp(20px, 6vw, 100px);
}

.ge-container {
  max-width: 1440px;
  margin: 0 auto;
}

.ge-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--ge-gold), transparent);
  margin: 2rem 0;
}

.ge-divider--center { margin: 2rem auto; }

/* ── 10. FEATURED COLLECTIONS — "THE CURATION" ─────────────── */
.ge-curation {
  background: var(--ge-charcoal);
  position: relative;
}

.ge-curation::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ge-gold), transparent);
}

.ge-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.ge-collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.ge-collection-card {
  position: relative;
  overflow: hidden;
  background: var(--ge-charcoal-2);
  cursor: none;
}

.ge-collection-card:first-child {
  grid-row: 1 / 3;
}

.ge-collection-card__media {
  position: relative;
  padding-top: 130%;
  overflow: hidden;
}

.ge-collection-card:first-child .ge-collection-card__media {
  padding-top: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  padding-top: 0;
}

.ge-collection-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.9s var(--ge-ease);
  will-change: transform;
}

.ge-collection-card:hover .ge-collection-card__media img {
  transform: scale(1.12);
}

/* Dark overlay on cards */
.ge-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: background 0.5s;
}

.ge-collection-card:hover .ge-collection-card__overlay {
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 60%, rgba(5,5,5,0.1) 100%);
}

.ge-collection-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px;
}

.ge-collection-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ge-gold);
  margin-bottom: 8px;
}

.ge-collection-card__title {
  font-family: var(--ge-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ge-collection-card__count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.4s var(--ge-ease), opacity 0.4s;
}

.ge-collection-card:hover .ge-collection-card__count {
  transform: translateY(0);
  opacity: 1;
}

/* Gold border draw-on-hover */
.ge-collection-card::before,
.ge-collection-card::after {
  content: '';
  position: absolute;
  z-index: 3;
  background: var(--ge-gold);
  transition: transform 0.5s var(--ge-ease);
}

.ge-collection-card::before {
  top: 0; left: 0;
  width: 100%; height: 1px;
  transform: scaleX(0);
  transform-origin: left;
}

.ge-collection-card::after {
  top: 0; right: 0;
  width: 1px; height: 100%;
  transform: scaleY(0);
  transform-origin: top;
}

.ge-collection-card:hover::before { transform: scaleX(1); }
.ge-collection-card:hover::after { transform: scaleY(1); }

/* ── 11. PRODUCT GRID — "THE ATELIER" ──────────────────────── */
.ge-atelier {
  background: var(--ge-jet);
}

/* Filter Bar */
.ge-filter-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border: var(--ge-border);
  margin-bottom: 60px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ge-filter-bar::-webkit-scrollbar { display: none; }

.ge-filter-btn {
  font-family: var(--ge-font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: none;
  border-right: var(--ge-border);
  padding: 18px 32px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.ge-filter-btn:last-child { border-right: none; }
.ge-filter-btn:hover { color: #fff; background: var(--ge-mist); }
.ge-filter-btn.active { color: var(--ge-gold); background: var(--ge-gold-dim); }

.ge-filter-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  padding: 18px 24px;
  border-right: var(--ge-border);
  flex-shrink: 0;
  text-transform: uppercase;
}

/* Product Grid */
.ge-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Product Card */
.ge-product-card {
  position: relative;
  background: var(--ge-charcoal-2);
  overflow: hidden;
  cursor: none;
  group: true;
}

.ge-product-card__media {
  position: relative;
  padding-top: 125%;
  overflow: hidden;
}

.ge-product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ge-ease);
  will-change: transform;
}

.ge-product-card:hover .ge-product-card__media img {
  transform: scale(1.05);
}

/* Quick View overlay */
.ge-quick-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s var(--ge-ease);
  background: rgba(5,5,5,0.3);
}

.ge-product-card:hover .ge-quick-view { opacity: 1; }

.ge-quick-view__btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 12px 24px;
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, color 0.3s;
}

.ge-quick-view__btn:hover {
  border-color: var(--ge-gold);
  color: var(--ge-gold);
}

/* Gold border draw on product card hover */
.ge-product-card .ge-border-draw {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ge-product-card .ge-border-draw::before,
.ge-product-card .ge-border-draw::after {
  content: '';
  position: absolute;
  background: var(--ge-gold);
  transition: transform 0.45s var(--ge-ease);
}

.ge-product-card .ge-border-draw::before {
  top: 0; left: 0;
  width: 100%; height: 1px;
  transform: scaleX(0);
  transform-origin: left;
}

.ge-product-card .ge-border-draw::after {
  bottom: 0; right: 0;
  width: 1px; height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
}

.ge-product-card:hover .ge-border-draw::before { transform: scaleX(1); }
.ge-product-card:hover .ge-border-draw::after { transform: scaleY(1); }

/* Product Card Info */
.ge-product-card__info {
  padding: 24px 24px 28px;
  background: var(--ge-charcoal-2);
  border-top: var(--ge-border);
}

.ge-product-card__material {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ge-gold);
  margin-bottom: 6px;
}

.ge-product-card__title {
  font-family: var(--ge-font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ge-product-card__price {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.ge-product-card__price strong {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* Wishlist icon */
.ge-wishlist-btn {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  width: 36px; height: 36px;
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.3s;
  cursor: pointer;
}

.ge-product-card:hover .ge-wishlist-btn { opacity: 1; }
.ge-wishlist-btn:hover { border-color: var(--ge-gold); }
.ge-wishlist-btn svg { width: 14px; color: rgba(255,255,255,0.7); }

/* ── 12. HERITAGE SECTION ──────────────────────────────────── */
.ge-heritage {
  background: var(--ge-charcoal);
  position: relative;
  overflow: hidden;
}

.ge-heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.ge-heritage__visual {
  position: relative;
}

.ge-heritage__visual-frame {
  position: relative;
  padding-top: 130%;
  overflow: hidden;
}

.ge-heritage__visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Decorative gold frame accent */
.ge-heritage__visual::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%; height: 60%;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 0;
  pointer-events: none;
}

.ge-heritage__visual::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid rgba(212,175,55,0.15);
  z-index: 0;
  pointer-events: none;
}

.ge-heritage__visual-frame { position: relative; z-index: 1; }

.ge-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 48px;
  border: var(--ge-border);
}

.ge-stat {
  padding: 28px 24px;
  background: var(--ge-charcoal-2);
}

.ge-stat__number {
  font-family: var(--ge-font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ge-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.ge-stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── 13. PRODUCT (GALLERY) PAGE ────────────────────────────── */
.ge-product-page {
  padding-top: 120px;
}

.ge-product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* Gallery */
.ge-product-gallery {
  position: sticky;
  top: 100px;
}

.ge-gallery-main {
  position: relative;
  padding-top: 125%;
  min-height: 200px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--ge-charcoal-2);
}

.ge-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ge-ease);
}

.ge-gallery-main:hover img { transform: scale(1.03); }

.ge-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ge-gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ge-charcoal-2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.ge-gallery-thumb.active { border-color: var(--ge-gold); }
.ge-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Details */
.ge-product-details {
  padding-top: 20px;
}

.ge-product-details .ge-eyebrow { margin-bottom: 0.5rem; }

.ge-product-name {
  font-family: var(--ge-font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.ge-product-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: var(--ge-border);
}

.ge-product-price {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

.ge-product-price-note {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* The Story */
.ge-product-story {
  margin-bottom: 2.5rem;
}

.ge-product-story__title {
  font-family: var(--ge-font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ge-gold);
  margin-bottom: 1rem;
}

.ge-product-story__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

/* Accordion — Specs */
.ge-accordion {
  margin-bottom: 2.5rem;
}

.ge-accordion__item {
  border-top: var(--ge-border);
}

.ge-accordion__item:last-child { border-bottom: var(--ge-border); }

.ge-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ge-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}

.ge-accordion__trigger:hover { color: var(--ge-gold); }

.ge-accordion__icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}

.ge-accordion__icon::before,
.ge-accordion__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ge-ease), opacity 0.3s;
}

.ge-accordion__icon::before { width: 12px; height: 1px; }
.ge-accordion__icon::after { width: 1px; height: 12px; }

.ge-accordion__item.open .ge-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.ge-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ge-ease);
}

.ge-accordion__item.open .ge-accordion__body {
  grid-template-rows: 1fr;
}

.ge-accordion__inner {
  overflow: hidden;
  padding-bottom: 20px;
}

.ge-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.ge-spec-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ge-spec-table td {
  padding: 10px 0;
  font-size: 0.88rem;
}

.ge-spec-table td:first-child {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  width: 40%;
}

.ge-spec-table td:last-child {
  color: rgba(255,255,255,0.75);
}

/* Add to Cart */
.ge-atc-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2rem;
}

.ge-atc-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── 14. "STYLE WITH" RECOMMENDATIONS ──────────────────────── */
.ge-style-with {
  background: var(--ge-charcoal);
  padding: var(--ge-section-pad) clamp(20px, 6vw, 100px);
}

.ge-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ── 15. ABOUT PAGE — STORYTELLING ─────────────────────────── */
.ge-about-hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 100px);
}

.ge-manifesto {
  background: var(--ge-emerald);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.ge-manifesto::before {
  content: '"';
  position: absolute;
  top: -0.2em; left: 0.1em;
  font-family: var(--ge-font-display);
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.ge-manifesto__text {
  font-family: var(--ge-font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  max-width: 16ch;
}

.ge-craftsmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.ge-craftsman-card {
  text-align: center;
}

.ge-craftsman-card__avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 1px solid var(--ge-gold-dim);
}

.ge-craftsman-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.ge-craftsman-card__name {
  font-family: var(--ge-font-display);
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.9);
}

.ge-craftsman-card__role {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ge-gold);
  margin-bottom: 12px;
}

/* ── 16. FOOTER ────────────────────────────────────────────── */
.ge-footer {
  background: var(--ge-jet);
  border-top: var(--ge-border);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 100px) 40px;
}

.ge-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ge-footer__brand-name {
  font-family: var(--ge-font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}

.ge-footer__tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ge-footer__heading {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ge-gold);
  margin-bottom: 20px;
}

.ge-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ge-footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.ge-footer__links a:hover { color: rgba(255,255,255,0.85); }

.ge-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ge-footer__copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.ge-social-links {
  display: flex;
  gap: 20px;
}

.ge-social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.ge-social-links a:hover {
  border-color: var(--ge-gold);
  color: var(--ge-gold);
}

/* ── 17. MOBILE STICKY BOTTOM NAV ──────────────────────────── */
.ge-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.ge-mobile-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.ge-mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding: 6px 16px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.ge-mobile-nav__item.active,
.ge-mobile-nav__item:active {
  color: var(--ge-gold);
}

.ge-mobile-nav__icon {
  width: 22px; height: 22px;
}

.ge-mobile-nav__label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.ge-mobile-nav__cart-badge {
  position: absolute;
  top: 4px; right: 10px;
  width: 16px; height: 16px;
  background: var(--ge-gold);
  border-radius: 50%;
  font-size: 0.6rem;
  color: var(--ge-jet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.ge-mobile-nav__item { position: relative; }

/* ── 18. PARALLAX UTILITY ──────────────────────────────────── */
.ge-parallax {
  will-change: transform;
}

/* ── 19. SCROLL ANIMATIONS ─────────────────────────────────── */
/* Visible by default so product/collection imagery is never "missing" if JS is slow,
   blocked, or IntersectionObserver misses. Optional motion: enhance when .visible is toggled. */
.ge-fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ge-ease), transform 0.8s var(--ge-ease);
}

.ge-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.ge-fade-in {
  opacity: 1;
  transition: opacity 1s var(--ge-ease);
}

.ge-fade-in.visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .ge-fade-up,
  .ge-fade-in {
    transition: none;
  }
}

/* Stagger children */
.ge-stagger > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* ── 20. FORM ELEMENTS ─────────────────────────────────────── */
.ge-input {
  width: 100%;
  background: var(--ge-charcoal-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 16px 20px;
  font-family: var(--ge-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.ge-input:focus { border-color: var(--ge-gold); }
.ge-input::placeholder { color: rgba(255,255,255,0.25); }

.ge-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── 21. BADGE / PILL ──────────────────────────────────────── */
.ge-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--ge-gold);
  color: var(--ge-gold);
}

.ge-badge--emerald {
  border-color: var(--ge-emerald-2);
  color: var(--ge-emerald-2);
  background: rgba(4,57,39,0.2);
}

/* ── 22. MARQUEE ───────────────────────────────────────────── */
.ge-marquee-wrap {
  overflow: hidden;
  background: var(--ge-gold);
  padding: 18px 0;
}

.ge-marquee {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.ge-marquee__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ge-jet);
  white-space: nowrap;
}

.ge-marquee__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(5,5,5,0.3);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 23. NEWSLETTER SECTION ────────────────────────────────── */
.ge-newsletter {
  background: var(--ge-charcoal-2);
  text-align: center;
  padding: var(--ge-section-pad) clamp(20px, 6vw, 100px);
}

.ge-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 2.5rem auto 0;
  border: var(--ge-border);
}

.ge-newsletter-form .ge-input {
  border: none;
  background: transparent;
  flex: 1;
}

.ge-newsletter-form .ge-btn {
  flex-shrink: 0;
  padding: 16px 28px;
}

/* ── 24. PAGE TRANSITION OVERLAY ───────────────────────────── */
.ge-page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ge-jet);
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ── 25. LOADING SCREEN ────────────────────────────────────── */
.ge-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ge-jet);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ge-ease), visibility 0.8s;
  /* If window "load" never fires (hung third-party asset), do not trap the storefront */
  animation: geLoaderForceDismiss 0.45s ease 3.2s forwards;
}

@keyframes geLoaderForceDismiss {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.ge-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ge-loader__logo {
  font-family: var(--ge-font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
}

.ge-loader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.ge-loader__progress {
  height: 100%;
  background: linear-gradient(to right, var(--ge-gold), var(--ge-emerald-2));
  animation: loaderFill 1.8s var(--ge-ease) forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ── 26. RESPONSIVE — TABLET ───────────────────────────────── */
@media (max-width: 1024px) {
  .ge-collections-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ge-collection-card:first-child { grid-row: auto; }

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

  .ge-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .ge-product-layout { grid-template-columns: 1fr; gap: 48px; }
  .ge-product-gallery { position: static; }

  .ge-heritage__grid { grid-template-columns: 1fr; }

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

  .ge-header { padding: 24px 32px; }
  .ge-header.scrolled { padding: 16px 32px; }
  .ge-nav { gap: 32px; }
}

/* ── 27. RESPONSIVE — MOBILE ───────────────────────────────── */
@media (max-width: 768px) {
  .ge-mobile-nav { display: block; }

  /* Add bottom padding so content doesn't hide behind sticky nav */
  body { padding-bottom: 70px; }

  .ge-header {
    padding: 20px 20px;
  }

  .ge-header.scrolled { padding: 14px 20px; }

  .ge-nav { display: none; }

  .ge-hero__title { font-size: clamp(2.5rem, 12vw, 4.5rem); }

  .ge-collections-grid { grid-template-columns: 1fr; gap: 2px; }
  .ge-product-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  .ge-filter-bar { flex-wrap: nowrap; overflow-x: auto; }

  .ge-footer__grid { grid-template-columns: 1fr; gap: 32px; }

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

  .ge-stat-grid { grid-template-columns: 1fr 1fr; }

  .ge-craftsmen-grid { grid-template-columns: 1fr; }

  .ge-newsletter-form {
    flex-direction: column;
    border: none;
    gap: 8px;
  }

  .ge-newsletter-form .ge-input { border: var(--ge-border); }
  .ge-newsletter-form .ge-btn { width: 100%; justify-content: center; }

  .ge-hero__subtitle { display: none; }
}

@media (max-width: 480px) {
  .ge-product-grid { grid-template-columns: 1fr; }
  .ge-hero__content { padding: 0 20px; }
}

/* ── 28. DAWN THEME OVERRIDES ──────────────────────────────── */
/* Ensure Dawn elements inherit our dark theme */
.shopify-section { background: transparent; }
.page-width { max-width: 100%; padding: 0; }

/* Cart drawer */
cart-drawer,
.cart-drawer {
  background: var(--ge-charcoal) !important;
  border-left: var(--ge-border) !important;
}

.cart-drawer__header {
  border-bottom: var(--ge-border) !important;
  background: var(--ge-charcoal-2) !important;
}

/* Search modal */
predictive-search,
.search-modal {
  background: var(--ge-charcoal) !important;
}

/* Links globally */
a { color: inherit; }

/* Selection */
::selection {
  background: var(--ge-gold);
  color: var(--ge-jet);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ge-jet); }
::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ge-gold); }

/* ── PLACEHOLDER WRAPS (missing images) ───────────────────── */
.ge-placeholder-wrap {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.ge-placeholder-wrap--card {
  min-height: 320px;
  aspect-ratio: 4 / 5;
}
.ge-placeholder-wrap--square {
  min-height: 360px;
}
.ge-placeholder-wrap--gallery {
  min-height: 480px;
  aspect-ratio: 4 / 5;
}
.ge-placeholder-wrap svg {
  width: 60px;
  height: 60px;
  opacity: 0.2;
  color: var(--ge-gold, #D4AF37);
}

/* Placeholders must fill the same absolute box as product/collection images */
.ge-product-card__media > .ge-placeholder-wrap,
.ge-collection-card__media > .ge-placeholder-wrap,
.ge-gallery-main > .ge-placeholder-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* ── PRODUCT STARS (decorative) ───────────────────────────── */
.ge-product-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ge-product-stars__star {
  color: var(--ge-gold);
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.85;
}
.ge-product-stars__note {
  font-family: var(--ge-font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-left: 8px;
}

/* ── PAGINATION ───────────────────────────────────────────── */
.ge-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 4rem 0 2rem;
  flex-wrap: wrap;
}
.ge-pagination__status {
  font-family: var(--ge-font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── HEADER WISHLIST BADGE ────────────────────────────────── */
.ge-header-wishlist {
  position: relative;
}
.ge-wishlist-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ge-gold);
  color: var(--ge-jet);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ge-font-body);
}
.ge-wishlist-btn.is-in-wishlist {
  border-color: var(--ge-gold) !important;
  color: var(--ge-gold) !important;
  opacity: 1 !important;
}

/* ── WISHLIST DRAWER ──────────────────────────────────────── */
.ge-wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ge-ease);
}
.ge-wishlist-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
.ge-wishlist-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(6px);
}
.ge-wishlist-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--ge-charcoal);
  border-left: var(--ge-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ge-ease);
  box-shadow: -12px 0 48px rgba(0,0,0,0.5);
}
.ge-wishlist-drawer.is-open .ge-wishlist-drawer__panel {
  transform: translateX(0);
}
.ge-wishlist-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.ge-wishlist-drawer__title {
  font-family: var(--ge-font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}
.ge-wishlist-drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,0.45);
  background: transparent;
  color: var(--ge-gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.ge-wishlist-drawer__close:hover {
  background: var(--ge-gold);
  color: var(--ge-jet);
}
.ge-wishlist-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.ge-wishlist-drawer__empty,
.ge-wishlist-drawer__err,
.ge-wishlist-drawer__loading {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  padding: 12px 0;
}
.ge-wishlist-drawer__row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ge-wishlist-drawer__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 90px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
.ge-wishlist-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ge-wishlist-drawer__meta {
  flex: 1;
  min-width: 0;
}
.ge-wishlist-drawer__name {
  font-family: var(--ge-font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
}
.ge-wishlist-drawer__view {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ge-gold);
  text-decoration: none;
  margin-right: 12px;
}
.ge-wishlist-drawer__view:hover {
  text-decoration: underline;
}
.ge-wishlist-drawer__remove {
  background: none;
  border: none;
  font-family: var(--ge-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.ge-wishlist-drawer__remove:hover {
  color: rgba(255,255,255,0.7);
}
body.ge-wishlist-drawer-open {
  overflow: hidden;
}

/* ── MOBILE DRAWER ─────────────────────────────────────────── */
.ge-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9400;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ge-ease);
}
.ge-mobile-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}
.ge-mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.7);
  backdrop-filter: blur(4px);
}
.ge-mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #121212;
  border-left: var(--ge-border);
  transform: translateX(100%);
  transition: transform 0.4s var(--ge-ease);
  padding: 72px 28px 32px;
  overflow-y: auto;
}
.ge-mobile-drawer.is-open .ge-mobile-drawer__panel {
  transform: translateX(0);
}
.ge-mobile-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212,175,55,0.45);
  background: transparent;
  color: var(--ge-gold);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.ge-mobile-drawer__close:hover {
  background: var(--ge-gold);
  color: var(--ge-jet);
}
.ge-mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ge-mobile-drawer__nav a {
  font-family: var(--ge-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s;
}
.ge-mobile-drawer__nav a:hover {
  color: var(--ge-gold);
}
body.ge-mobile-drawer-open {
  overflow: hidden;
}

.ge-mobile-nav__item--menu {
  appearance: none;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  margin: 0;
}

/* ── SEARCH PAGE ─────────────────────────────────────────── */
.ge-search-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 70vh;
  background: var(--ge-jet);
}
.ge-search-page__title {
  margin-top: 0.5rem;
}
.ge-search-page__form {
  margin: 2.5rem 0 3rem;
}
.ge-search-page__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
  align-items: stretch;
}
.ge-search-page__input {
  flex: 1 1 240px;
  min-width: 0;
}
.ge-search-page__submit {
  flex: 0 0 auto;
}
.ge-search-page__count {
  font-family: var(--ge-font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}
.ge-search-page__grid {
  margin-top: 0;
}
.ge-search-empty {
  text-align: left;
  padding: 40px 0 80px;
  max-width: 520px;
}
.ge-search-empty__lead {
  font-family: var(--ge-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.ge-page-contact__hero {
  padding: 140px clamp(20px,6vw,100px) 48px;
  background: linear-gradient(165deg, #121212 0%, #050505 100%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.ge-page-contact__title {
  font-family: var(--ge-font-display);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 300;
  margin-top: 1rem;
}
.ge-page-contact__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px,6vw,80px);
  padding: 72px clamp(20px,6vw,100px) 100px;
  align-items: start;
}
@media (max-width: 900px) {
  .ge-page-contact__grid {
    grid-template-columns: 1fr;
  }
}
.ge-field {
  margin-bottom: 1.35rem;
}
.ge-field__label {
  display: block;
  font-family: var(--ge-font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.ge-textarea {
  min-height: 140px;
  resize: vertical;
}
.ge-select {
  cursor: pointer;
}
.ge-form-success {
  padding: 16px;
  border: 1px solid rgba(212,175,55,0.35);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.ge-form-errors {
  padding: 16px;
  border: 1px solid rgba(180,60,60,0.5);
  color: rgba(255,200,200,0.9);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.ge-page-contact__aside-title {
  font-family: var(--ge-font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.ge-page-contact__detail {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.ge-page-contact__detail a {
  color: var(--ge-gold);
  text-decoration: none;
}
.ge-page-contact__detail a:hover {
  text-decoration: underline;
}
.ge-page-contact__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 2rem;
}

/* ── BESPOKE PAGE ─────────────────────────────────────────── */
.ge-page-bespoke__hero {
  padding: 140px clamp(20px,6vw,100px) 48px;
  background: linear-gradient(165deg, #043927 0%, #050505 55%);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.ge-page-bespoke__title {
  font-family: var(--ge-font-display);
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 300;
  margin-top: 1rem;
}
.ge-bespoke-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 72px clamp(20px,6vw,100px);
  padding: 0;
  background: rgba(212,175,55,0.12);
}
@media (max-width: 768px) {
  .ge-bespoke-steps {
    grid-template-columns: 1fr;
    margin-left: clamp(20px,6vw,48px);
    margin-right: clamp(20px,6vw,48px);
  }
}
.ge-bespoke-step {
  background: var(--ge-charcoal-2);
  padding: 40px 36px;
}
.ge-bespoke-step__num {
  font-family: var(--ge-font-display);
  font-size: 2.5rem;
  color: var(--ge-gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}
.ge-bespoke-step__title {
  font-family: var(--ge-font-display);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.ge-bespoke-step__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}
.ge-page-bespoke__form-block {
  max-width: 640px;
  margin: 0 auto 100px;
  padding: 0 clamp(20px,6vw,48px);
}
.ge-page-bespoke__form-title {
  font-family: var(--ge-font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

/* ── POLICIES PAGE ────────────────────────────────────────── */
.ge-page-policies__title {
  font-family: var(--ge-font-display);
  font-size: clamp(2.5rem,5vw,3.5rem);
  font-weight: 300;
  margin-top: 1rem;
}
.ge-policies__tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 8px;
}
.ge-policies__tab {
  font-family: var(--ge-font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.ge-policies__tab.is-active,
.ge-policies__tab:hover {
  border-color: rgba(212,175,55,0.45);
  color: var(--ge-gold);
}
.ge-policies__panel {
  display: none;
  padding-bottom: 80px;
}
.ge-policies__panel.is-active {
  display: block;
}
.ge-policies__body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}
.ge-policies__body a {
  color: var(--ge-gold);
  text-decoration: none;
}
.ge-policies__body a:hover {
  text-decoration: underline;
}
.ge-policies__body h1,
.ge-policies__body h2,
.ge-policies__body h3 {
  font-family: var(--ge-font-display);
  font-weight: 300;
  margin: 2rem 0 1rem;
  color: rgba(255,255,255,0.9);
}
