/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f7f4ef;
  --warm-white: #fdfcfa;
  --charcoal: #1a1a18;
  --charcoal-soft: #2e2e2b;
  --mid-gray: #6b6b66;
  --light-gray: #e8e4de;
  --gold: #b8933a;
  --gold-light: #d4a94e;
  --green-confirm: #2d7a4f;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 2px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-sans); font-size: 15px; line-height: 1.65; color: var(--charcoal); background: var(--warm-white); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; touch-action: manipulation; }
a, button { touch-action: manipulation; }
input, select, textarea { font-family: inherit; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
em { font-style: italic; color: var(--gold); }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 640px; }
.section { padding: 100px 0; }
.bg-warm { background: var(--cream); }
.bg-dark { background: var(--charcoal); color: #fff; }

/* ===========================
   BUTTONS
   =========================== */
.btn { display: inline-block; padding: 13px 32px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); transition: all var(--transition); cursor: pointer; }
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-ghost-hero { border: 1px solid rgba(255,255,255,0.5); color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); }
.btn-ghost-hero:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.8); }
.full-width { width: 100%; text-align: center; display: block; }

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar { background: var(--charcoal); color: rgba(255,255,255,0.75); text-align: center; padding: 10px 16px; font-size: 12px; letter-spacing: 0.04em; }
.announcement-bar a { color: var(--gold-light); }

/* ===========================
   HEADER
   =========================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(253,252,250,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--light-gray); }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-left a { font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); transition: color var(--transition); }
.nav-left a:hover { color: var(--gold); }
.logo { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 300; letter-spacing: 0.06em; color: var(--charcoal); }
.icon-btn { color: var(--charcoal-soft); display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: background var(--transition), color var(--transition); position: relative; }
.icon-btn:hover { background: var(--cream); color: var(--gold); }
.cart-count { position: absolute; top: 0; right: 0; background: var(--gold); color: #fff; font-size: 9px; font-weight: 600; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition), transform var(--transition); transform: scale(0.8); }
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ===========================
   HERO
   =========================== */
.hero { position: relative; height: 95vh; min-height: 580px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* ── Slideshow ── */
/* pointer-events: none on all slide elements — they are purely decorative.
   Without this, iOS Safari's GPU compositing layers (will-change: transform/opacity)
   absorb touch events even when visually below hero buttons. */
.hero-slides { position: absolute; inset: 0; pointer-events: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; will-change: opacity; pointer-events: none; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; will-change: transform; pointer-events: none; }

/* Ken Burns motion — 5 variants cycling through slides */
@keyframes kbZoomOut   { from { transform: scale(1.10); } to { transform: scale(1.00); } }
@keyframes kbZoomIn    { from { transform: scale(1.00); } to { transform: scale(1.10); } }
@keyframes kbPanLeft   { from { transform: scale(1.07) translateX( 2.5%); } to { transform: scale(1.07) translateX(-2.5%); } }
@keyframes kbPanRight  { from { transform: scale(1.07) translateX(-2.5%); } to { transform: scale(1.07) translateX( 2.5%); } }
@keyframes kbDriftUp   { from { transform: scale(1.07) translateY( 2%);   } to { transform: scale(1.07) translateY(-2%);   } }
.hero-slide.active .kb-0 { animation: kbZoomOut  9s ease-out forwards; }
.hero-slide.active .kb-1 { animation: kbZoomIn   9s ease-out forwards; }
.hero-slide.active .kb-2 { animation: kbPanLeft  9s ease-out forwards; }
.hero-slide.active .kb-3 { animation: kbPanRight 9s ease-out forwards; }
.hero-slide.active .kb-4 { animation: kbDriftUp  9s ease-out forwards; }

/* Backward compat — single static hero */
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(10,10,8,0.62) 0%, rgba(10,10,8,0.30) 55%, rgba(10,10,8,0.15) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; padding: 0 24px; }
.hero-eyebrow { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; border: 1px solid rgba(212,169,78,0.4); padding: 6px 18px; border-radius: 2px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ── Scroll hint ── */
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar { background: var(--charcoal-soft); color: rgba(255,255,255,0.65); padding: 13px 0; overflow: hidden; }
.trust-ticker { overflow: hidden; }
.ticker-track { display: flex; gap: 56px; width: max-content; animation: ticker 36s linear infinite; font-size: 11.5px; letter-spacing: 0.08em; white-space: nowrap; }
.ticker-track span { flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: #fff; }
.section-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-header.light .section-label { color: var(--gold-light); }

/* ===========================
   COLLECTIONS GRID
   =========================== */
.collections-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; grid-auto-rows: 260px; gap: 14px; }
.collection-card { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.collection-card--large { grid-column: span 2; grid-row: span 2; }
.collection-card--wide  { grid-column: span 2; }
.collection-card--tall  { grid-row: span 2; }
.collection-card img { transition: transform 0.65s ease; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,8,0.68) 0%, rgba(10,10,8,0.1) 55%, transparent 100%); transition: opacity var(--transition); z-index: 1; pointer-events: none; }
.collection-card:hover::after { opacity: 0.85; }
.collection-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.collection-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); background: rgba(184,147,58,0.15); border: 1px solid rgba(184,147,58,0.3); padding: 3px 9px; border-radius: 2px; margin-bottom: 8px; }
.collection-info h3 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.collection-count { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* ===========================
   SHOP FILTERS
   =========================== */
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn { display: flex; align-items: center; gap: 6px; padding: 9px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border: 1px solid var(--light-gray); border-radius: 100px; background: var(--warm-white); color: var(--mid-gray); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* ===========================
   PRODUCTS GRID
   =========================== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--warm-white); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); cursor: pointer; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-featured { box-shadow: 0 0 0 2px var(--gold); }
.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-img-wrap img { transition: transform 0.55s ease; user-select: none; -webkit-user-drag: none; pointer-events: none; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
/* Transparent shield over every image — catches right-click / drag at the DOM level.
   pointer-events: none ensures it never blocks taps on mobile. */
.product-img-wrap::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.product-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(10,10,8,0.22); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; opacity: 0; transition: opacity var(--transition); pointer-events: none; }
.product-card:hover .product-overlay { opacity: 1; pointer-events: all; }
/* Lightbox image protection */
.lightbox-img-wrap img { user-select: none; -webkit-user-drag: none; pointer-events: none; }
.lightbox-img-wrap::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.lightbox-watermark { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; pointer-events: none; user-select: none; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(18px, 3vw, 40px); font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.28); text-shadow: 0 1px 6px rgba(0,0,0,0.55); transform: rotate(-25deg); white-space: nowrap; }
.product-overlay-btn { background: rgba(255,255,255,0.92); color: var(--charcoal); border: none; padding: 9px 22px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background var(--transition); }
.product-overlay-btn:hover { background: #fff; }
.badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; z-index: 2; }
.badge-bestseller { background: var(--gold); color: #fff; }
.badge-new { background: #1a7a5e; color: #fff; }
.badge-low { background: #c0392b; color: #fff; }
.product-info { padding: 14px 16px 18px; }
.product-location { font-size: 10.5px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.product-info h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 4px; line-height: 1.3; }
.product-edition { font-size: 11px; color: var(--mid-gray); margin-bottom: 10px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); }
.add-to-cart-btn { background: transparent; border: 1px solid var(--light-gray); color: var(--mid-gray); padding: 6px 14px; font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.add-to-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Product card fade animation */
.product-card { animation: fadeIn 0.3s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   FEATURES
   =========================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.feature { text-align: center; }
.feature-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.feature h4 { margin-bottom: 10px; }
.feature p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { border: 1px solid rgba(255,255,255,0.1); padding: 32px; border-radius: var(--radius); background: rgba(255,255,255,0.04); }
.stars { color: var(--gold-light); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 18px; }
.testimonial cite { font-size: 12px; letter-spacing: 0.1em; color: var(--gold-light); font-style: normal; }

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter-section { padding: 96px 24px; text-align: center; background: var(--cream); border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); }
.newsletter-section h2 { margin: 10px 0 16px; }
.newsletter-section > .container > p { color: var(--mid-gray); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 16px; border: 1px solid var(--light-gray); border-radius: var(--radius); font-size: 14px; background: var(--warm-white); outline: none; transition: border-color var(--transition); }
.newsletter-form input:focus { border-color: var(--gold); }
.form-note { font-size: 12px; color: var(--mid-gray); margin-top: 12px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; margin-bottom: 56px; }
.footer-brand .logo { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all var(--transition); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-col h5 { font-family: var(--font-sans); font-size: 10.5px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 9px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; }
.payment-icons { display: flex; gap: 8px; }
.payment-icons span { border: 1px solid rgba(255,255,255,0.14); padding: 3px 10px; border-radius: 3px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); }

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-sidebar { position: fixed; top: 0; right: 0; width: 400px; height: 100vh; background: var(--warm-white); z-index: 300; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); box-shadow: -8px 0 48px rgba(0,0,0,0.14); }
.cart-sidebar.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; background: rgba(10,10,8,0.42); z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.cart-overlay.visible { opacity: 1; pointer-events: all; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--light-gray); }
.cart-header h3 { font-family: var(--font-serif); font-size: 1.4rem; }
.cart-header h3 span { font-size: 0.9rem; color: var(--mid-gray); font-family: var(--font-sans); font-weight: 400; }
.close-cart { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--charcoal-soft); transition: background var(--transition); }
.close-cart:hover { background: var(--cream); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--mid-gray); margin-top: 48px; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--light-gray); align-items: start; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius); overflow: hidden; background: var(--cream); flex-shrink: 0; }
.cart-item-name { font-weight: 500; font-size: 14px; margin-bottom: 3px; }
.cart-item-location { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.cart-item-size { font-size: 11px; color: var(--mid-gray); margin-bottom: 5px; }
.cart-item-price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--charcoal); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--light-gray); font-size: 20px; line-height: 1; padding: 2px; transition: color var(--transition); }
.cart-item-remove:hover { color: var(--charcoal); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--light-gray); }
.cart-total { display: flex; justify-content: space-between; font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 6px; }
.cart-shipping-note { font-size: 12px; color: var(--green-confirm); margin-bottom: 16px; }
.cart-note { font-size: 12px; color: var(--mid-gray); text-align: center; margin-top: 10px; }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-overlay { position: fixed; inset: 0; background: rgba(10,10,8,0.85); z-index: 399; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox-overlay.visible { opacity: 1; pointer-events: all; }
/* Mobile close bar — hidden on desktop, shown inside full-screen lightbox on phones */
.lightbox-mobile-bar { display: none; }

.lightbox-close { position: fixed; top: 24px; right: 28px; z-index: 401; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-inner { position: relative; z-index: 401; display: grid; grid-template-columns: 1fr 380px; gap: 0; background: var(--warm-white); border-radius: 4px; overflow: hidden; max-width: 1060px; width: 100%; max-height: 88vh; box-shadow: var(--shadow-lg); }
.lightbox-img-wrap { position: relative; overflow: hidden; min-height: 480px; }
.lightbox-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity 0.25s ease; }
.lightbox-img-wrap.loading::after { content: ''; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.lightbox-img-wrap.loading::before { content: ''; position: absolute; top: 50%; left: 50%; width: 36px; height: 36px; margin: -18px 0 0 -18px; border: 2px solid var(--light-gray); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; z-index: 2; }
@keyframes spin { to { transform: rotate(360deg); } }
.lightbox-details { padding: 40px 32px; overflow-y: auto; display: flex; flex-direction: column; }
.lightbox-collection { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.lightbox-details h2 { font-size: 2rem; margin-bottom: 6px; line-height: 1.1; }
.lightbox-location { font-size: 13px; color: var(--mid-gray); margin-bottom: 20px; }
.lightbox-edition { font-size: 12px; color: var(--mid-gray); margin-bottom: 24px; padding: 10px 14px; background: var(--cream); border-radius: 2px; }
.lightbox-format { font-size:11px; color:var(--mid-gray); letter-spacing:.03em; margin-bottom:14px; }
.product-format  { font-size:11px; color:var(--mid-gray); margin-top:2px; }
.lightbox-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.lightbox-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--charcoal); }
.lightbox-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size-pill { padding: 7px 14px; border: 1px solid var(--light-gray); border-radius: 6px; font-size: 12px; color: var(--mid-gray); cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.size-pill.active, .size-pill:hover { border-color: var(--charcoal); color: var(--charcoal); background: var(--cream); }
.lightbox-meta { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lightbox-meta span { font-size: 12px; color: var(--mid-gray); }

/* ===========================
   CHECKOUT MODAL
   =========================== */
.checkout-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.checkout-modal.open { opacity: 1; pointer-events: all; }
.checkout-overlay { position: fixed; inset: 0; background: rgba(10,10,8,0.7); z-index: 499; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.checkout-overlay.visible { opacity: 1; pointer-events: all; }
.checkout-panel { position: relative; z-index: 501; background: var(--warm-white); border-radius: 6px; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; padding: 40px; box-shadow: var(--shadow-lg); }
.checkout-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--mid-gray); transition: background var(--transition); }
.checkout-close:hover { background: var(--cream); }

/* STEP INDICATOR */
.checkout-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 32px; gap: 0; }
.step { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid-gray); }
.step span { width: 26px; height: 26px; border-radius: 50%; background: var(--light-gray); color: var(--mid-gray); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; transition: all var(--transition); }
.step.active { color: var(--charcoal); }
.step.active span { background: var(--gold); color: #fff; }
.step.done span { background: var(--green-confirm); color: #fff; }
.step-divider { flex: 1; height: 1px; background: var(--light-gray); margin: 0 12px; max-width: 48px; }

/* STEP CONTENT */
.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 24px; }

/* FORMS */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 6px; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--light-gray); border-radius: var(--radius); font-size: 14px; background: var(--warm-white); outline: none; transition: border-color var(--transition); color: var(--charcoal); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,58,0.1); }
.form-group input.error, .form-group select.error { border-color: #c0392b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-row { align-items: center; margin-top: 20px; }
.btn-row .btn { flex: 1; text-align: center; }
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 48px; }
.card-brand-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 600; color: var(--mid-gray); letter-spacing: 0.05em; }
.cvv-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--mid-gray); pointer-events: none; }
.payment-trust { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--green-confirm); margin-bottom: 22px; }

/* ORDER SUMMARY IN CHECKOUT */
.checkout-order-summary { background: var(--cream); border-radius: var(--radius); padding: 16px; margin: 20px 0; }
.checkout-order-summary .summary-item { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; border-bottom: 1px solid var(--light-gray); }
.checkout-order-summary .summary-item:last-child { border-bottom: none; font-weight: 600; margin-top: 4px; font-family: var(--font-serif); font-size: 1.1rem; }

/* SUCCESS SCREEN */
.success-screen { text-align: center; padding: 20px 0 10px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(45,122,79,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--green-confirm); }
.success-screen h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 12px; }
.success-screen p { color: var(--mid-gray); margin-bottom: 20px; line-height: 1.7; }
.success-order-id { font-size: 12px; color: var(--mid-gray); letter-spacing: 0.08em; margin-bottom: 28px; padding: 8px 16px; background: var(--cream); border-radius: 2px; display: inline-block; }

/* Processing state */
.btn-processing { pointer-events: none; opacity: 0.75; }

/* ===========================
   HAMBURGER BUTTON
   =========================== */
.hamburger-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; width: 36px; height: 36px; justify-content: center; align-items: center; border-radius: 50%; transition: background var(--transition); color: var(--charcoal-soft); }
.hamburger-btn:hover, .hamburger-btn:active { background: var(--cream); color: var(--gold); }
.hamburger-btn span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: all 0.3s ease; transform-origin: center; border-radius: 2px; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================
   MOBILE NAV DRAWER
   =========================== */
.mobile-nav { position: fixed; top: 0; left: 0; width: 280px; height: 100vh; height: 100dvh; background: var(--warm-white); z-index: 350; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: 8px 0 48px rgba(0,0,0,0.14); display: flex; flex-direction: column; padding: 80px 32px 48px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(10,10,8,0.45); z-index: 349; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.mobile-nav-overlay.visible { opacity: 1; pointer-events: all; }
.mobile-nav-link { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300; color: var(--charcoal); padding: 16px 0; border-bottom: 1px solid var(--light-gray); display: block; transition: color var(--transition); letter-spacing: 0.02em; }
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover, .mobile-nav-link:active { color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid { grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 240px; }
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-inner { grid-template-columns: 1fr; }
  .lightbox-img-wrap { min-height: 280px; max-height: 320px; }
}
@media (max-width: 768px) {
  .nav-left { display: none; }
  .hamburger-btn { display: flex; }

  /* Filter bar — horizontal scroll strip instead of wrapping */
  .shop-filters { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none; gap: 6px; }
  .shop-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 7px 14px; font-size: 11px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .collection-card { height: auto; }
  /* On small screens collapse large cards to wide-only to keep layout clean */
  .collection-card--large { grid-column: span 2; grid-row: span 1; }
  .collection-card--tall  { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .cart-sidebar { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .checkout-panel { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Lightbox — true full-screen on mobile, nothing left uncovered */
  .lightbox { padding: 0; align-items: stretch; justify-content: stretch; }
  .lightbox-inner {
    grid-template-columns: 1fr;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lightbox-img-wrap { min-height: 220px; max-height: 42vh; flex-shrink: 0; }
  .lightbox-details { padding: 22px 20px 48px; overflow-y: visible; }
  /* Hide the floating ✕ button on mobile — replaced by the in-content close bar */
  .lightbox-close { display: none; }
  /* Mobile close bar — sticky strip at the top of the full-screen lightbox */
  .lightbox-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8px;
    background: var(--charcoal);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    height: 48px;
  }
  .lightbox-mobile-close {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 2px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .lightbox-mobile-close:active { color: #fff; opacity: 0.7; }

  /* Larger touch targets */
  .close-cart { width: 40px; height: 40px; }
  .checkout-close { width: 40px; height: 40px; }
  .size-pill { padding: 10px 16px; font-size: 13px; }

  /* Active states for touch feedback */
  .btn-primary:active { background: var(--gold-light); border-color: var(--gold-light); }
  .btn-ghost-hero:active { background: rgba(255,255,255,0.25); }
  .add-to-cart-btn:active { background: var(--gold); border-color: var(--gold); color: #fff; }
  .filter-btn:active { border-color: var(--gold); color: var(--gold); }
  .filter-btn.active:active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
  .product-card:active { box-shadow: var(--shadow); }
  .collection-card:active::after { opacity: 0.85; }
}
@media (max-width: 500px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ===========================
   OUR STORY SECTION
   =========================== */
.story-section { background: var(--warm-white); }
.story-body { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; margin-top: 16px; }
.story-text p { font-size: 15px; line-height: 1.85; color: var(--charcoal); margin-bottom: 18px; }
.story-lead { font-family: var(--font-serif); font-size: 1.25rem !important; line-height: 1.7 !important; color: var(--charcoal) !important; font-style: italic; }
.story-text blockquote { border-left: 3px solid var(--gold); margin: 28px 0; padding: 10px 0 10px 24px; font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--charcoal); line-height: 1.6; }
.story-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: sticky; top: 100px; }
.story-pillar { background: var(--cream); padding: 32px 20px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.pillar-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; color: var(--charcoal); line-height: 1; }
.pillar-number small { font-size: 1.4rem; vertical-align: super; line-height: 0; }
.pillar-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); }

/* ===========================
   HELP & FAQ SECTION
   =========================== */
.help-section { }
.narrow-md { max-width: 820px; }
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--light-gray); }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 15px; font-weight: 500; color: var(--charcoal); cursor: pointer; list-style: none; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--mid-gray); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 20px; font-size: 14px; line-height: 1.8; color: #555; margin: 0; }
.faq-item summary:hover { color: var(--gold); }

/* ===========================
   RESPONSIVE — STORY & HELP
   =========================== */
@media (max-width: 900px) {
  .story-body { grid-template-columns: 1fr; gap: 40px; }
  .story-pillars { position: static; grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .story-pillars { grid-template-columns: repeat(2, 1fr); }
}
