/* ==========================================================================
   Het Genietschap — Main Stylesheet
   ========================================================================== */

/* ─── VARIABLES ─── */
:root {
  --gold: #B8943E;
  --gold-light: #A3832F;
  --gold-dark: #8B7434;
  --cream: #F7F3ED;
  --cream-dark: #EDE6DA;
  --noir: #FAFAF8;
  --noir-soft: #F2F0EC;
  --noir-card: #FFFFFF;
  --text-light: #2A2520;
  --text-muted: #7A756F;
  --text-dark: #2A2520;
  --wine: #6B2D3E;
  --wine-soft: #8B3D4E;
  --green: #4A7C59;
  --red: #C9534E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans); background: var(--noir); color: var(--text-light);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 400;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
}
.section-intro {
  font-size: 1rem; color: var(--text-muted); max-width: 560px;
  line-height: 1.75; font-weight: 300;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.5rem; font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-family: var(--sans); font-weight: 500;
  text-decoration: none; transition: all 0.4s var(--transition);
  cursor: pointer; border: none; line-height: 1;
}
.btn-primary { background: var(--gold); color: #FFFFFF; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(184,148,62,0.35); }
.btn-outline:hover { border-color: var(--gold); background: rgba(184,148,62,0.06); }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem; display: flex; align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--transition), padding 0.4s var(--transition);
}
nav.scrolled, nav.nav--solid {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  padding: 1rem 3rem; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  text-decoration: none;
}
.nav-logo span { font-weight: 600; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links .nav-link, .nav-links a:not(.nav-cart) {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-weight: 400;
  transition: color 0.3s; position: relative;
}
.nav-links .nav-link::after, .nav-links a:not(.nav-cart)::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--gold); transition: width 0.3s var(--transition);
}
.nav-links .nav-link:hover, .nav-links a:not(.nav-cart):hover { color: var(--gold); }
.nav-links .nav-link:hover::after, .nav-links a:not(.nav-cart):hover::after { width: 100%; }
.nav-links .current-menu-item .nav-link, .nav-links .current-menu-item a { color: var(--gold); }
.nav-cart {
  display: flex; align-items: center; gap: 0.5rem; color: var(--gold);
  font-size: 0.8rem; letter-spacing: 0.1em; text-decoration: none;
  text-transform: uppercase;
}
.nav-cart-count {
  background: var(--gold); color: #FFFFFF; width: 20px; height: 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 600;
}
.nav-mobile {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-mobile span {
  display: block; width: 24px; height: 1.5px; background: var(--gold);
  margin: 5px 0; transition: 0.3s;
}

/* ─── CHECKOUT NAV ─── */
.checkout-nav {
  padding: 1.2rem 3rem; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.checkout-nav-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.checkout-nav-logo span { font-weight: 600; }
.checkout-nav-back { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.checkout-nav-back:hover { color: var(--gold); }
.checkout-nav-secure { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }

/* ─── HERO ─── */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #F7F3ED 0%, #EDE6DA 40%, #F0EBE3 100%);
}
.hero-bg::before {
  content: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,148,62,0.06) 0%, transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)'/%3E%3C/svg%3E");
}
.hero-content {
  text-align: center; position: relative; z-index: 2;
  animation: fadeUp 1.2s var(--transition) both;
}
.hero-tag {
  font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem; font-weight: 400;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300; line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 480px;
  margin: 0 auto 3rem; line-height: 1.7; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; animation: pulse 2s infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ─── STATS ─── */
.stats {
  display: flex; justify-content: center; gap: 6rem; padding: 5rem 3rem;
  border-top: 1px solid rgba(184,148,62,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; }

/* ─── PRODUCT GRID ─── */
section.products { padding: 8rem 3rem; }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.products-filters { display: flex; gap: 1rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.6rem 1.5rem; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; background: transparent; text-decoration: none;
  border: 1px solid rgba(184,148,62,0.25); color: var(--text-muted);
  cursor: pointer; transition: all 0.3s; font-family: var(--sans);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(184,148,62,0.08);
}

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem;
}
.product-card {
  background: var(--noir-card); border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden; transition: all 0.5s var(--transition);
}
.product-card:hover { border-color: rgba(184,148,62,0.3); transform: translateY(-4px); }
.product-card-link { text-decoration: none; color: inherit; display: block; }
.product-img {
  aspect-ratio: 3/4; background: linear-gradient(160deg, #F0EBE3 0%, #E8E2D8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img::after {
  content: none; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--noir-card) 0%, transparent 30%);
  pointer-events: none;
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.8rem; font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; background: var(--wine); color: var(--cream);
}
.product-info { padding: 1.5rem; }
.product-region { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.product-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.25rem; line-height: 1.3; }
.product-type { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.product-bottom { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--gold); }
.product-price .woocommerce-Price-amount { color: var(--gold); }
.product-add {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3); background: transparent;
  color: var(--gold); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; text-decoration: none;
}
.product-add:hover { background: var(--gold); color: #FFFFFF; }

/* ─── SINGLE PRODUCT ─── */
.breadcrumb {
  padding: 6rem 3rem 1rem; font-size: 0.75rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.product-page { padding: 1rem 3rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.gallery { position: sticky; top: 6rem; }
.gallery-main {
  aspect-ratio: 3/4; background: linear-gradient(160deg, #F0EBE3 0%, #E8E2D8 100%);
  border: 1px solid rgba(184,148,62,0.15); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden; margin-bottom: 1rem;
}
.gallery-main img, .gallery-main-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumb {
  width: 80px; height: 100px; background: var(--noir-card); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08); cursor: pointer; transition: border-color 0.3s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.pd-region { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem; }
.pd-house { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; line-height: 1.1; margin-bottom: 0.25rem; }
.pd-cuvee { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--gold); font-style: italic; margin-bottom: 2rem; }
.pd-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.pd-price { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--gold); }
.pd-price .woocommerce-Price-amount { color: var(--gold); }
.pd-price-vat { font-size: 0.75rem; color: var(--text-muted); }
.pd-stock { font-size: 0.8rem; color: var(--green); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.5rem; }
.pd-stock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.pd-stock--out { color: var(--red); }
.pd-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.pd-qty { display: flex; align-items: center; border: 1px solid rgba(184,148,62,0.25); background: var(--noir-card); }
.pd-qty button {
  width: 48px; height: 52px; background: transparent; border: none;
  color: var(--gold); font-size: 1.1rem; cursor: pointer; font-family: var(--sans);
}
.pd-qty button:hover { background: rgba(184,148,62,0.06); }
.pd-qty-val, .pd-qty input {
  width: 48px; text-align: center; font-size: 1rem; font-weight: 500;
  color: var(--text-light); border: none; background: transparent;
  border-left: 1px solid rgba(184,148,62,0.15);
  border-right: 1px solid rgba(184,148,62,0.15);
  font-family: var(--sans); height: 52px; -moz-appearance: textfield;
}
.pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pd-add {
  flex: 1; height: 52px; background: var(--gold); color: #FFFFFF;
  border: none; font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s var(--transition);
}
.pd-add:hover { background: var(--gold-light); transform: translateY(-1px); }
.pd-desc { margin-bottom: 2.5rem; }
.pd-desc p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.pd-specs { margin-bottom: 2.5rem; }
.pd-specs-title, .pd-tasting-title {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pd-spec { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.85rem; }
.pd-spec-label { color: var(--text-muted); }
.pd-spec-value { color: var(--text-light); }
.pd-tasting { margin-bottom: 2.5rem; }
.pd-tasting-notes { display: flex; gap: 2rem; flex-wrap: wrap; }
.pd-tasting-note { text-align: center; }
.pd-tasting-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.pd-tasting-label { font-size: 0.7rem; color: var(--text-muted); }
.pd-pairing { background: var(--noir-card); border: 1px solid rgba(184,148,62,0.15); padding: 1.5rem; margin-bottom: 2.5rem; }
.pd-pairing-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.pd-pairing-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.pd-delivery { display: flex; gap: 2rem; flex-wrap: wrap; }
.pd-delivery-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.section-sep { margin: 0 3rem; height: 1px; background: rgba(184,148,62,0.06); }
.related { padding: 5rem 3rem; }
.related-title { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 2.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.rc { background: var(--noir-card); border: 1px solid rgba(0,0,0,0.08); overflow: hidden; text-decoration: none; color: inherit; transition: all 0.4s var(--transition); }
.rc:hover { border-color: rgba(184,148,62,0.3); transform: translateY(-3px); }
.rc-img { aspect-ratio: 3/4; background: linear-gradient(160deg, #F0EBE3 0%, #E8E2D8 100%); overflow: hidden; position: relative; }
.rc-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-img::after { content: none; position: absolute; inset: 0; background: linear-gradient(to top, var(--noir-card) 0%, transparent 30%); }
.rc-info { padding: 1.25rem; }
.rc-region { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.rc-name { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.15rem; }
.rc-type { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.rc-price { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }

/* ─── EXPERIENCES ─── */
.experiences { background: var(--cream); color: var(--text-dark); padding: 8rem 3rem; }
.experiences .section-tag { color: var(--wine); }
.experiences .section-title { color: var(--text-dark); }
.experiences .section-intro { color: #6B6560; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.exp-card { background: white; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: all 0.5s var(--transition); }
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.exp-img { height: 280px; position: relative; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-img::after { content: none; position: absolute; inset: 0; background: linear-gradient(to top, white 0%, transparent 50%); }
.exp-body { padding: 2rem; }
.exp-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); margin-bottom: 0.75rem; }
.exp-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3; }
.exp-desc { font-size: 0.9rem; color: #6B6560; line-height: 1.7; margin-bottom: 1.5rem; }
.exp-link { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--wine); text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.exp-link:hover { gap: 0.8rem; }

/* ─── STORY ─── */
.story { padding: 8rem 3rem; position: relative; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-visual { aspect-ratio: 4/5; background: linear-gradient(135deg, #F0EBE3 0%, #E8E2D8 100%); position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(184,148,62,0.15); overflow: hidden; }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-visual-inner { text-align: center; padding: 3rem; }
.story-year { font-family: var(--serif); font-size: 6rem; font-weight: 300; color: var(--gold); opacity: 0.3; line-height: 1; }
.story-place { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; }
.story-text { max-width: 500px; }
.story-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

/* ─── CTA / NEWSLETTER ─── */
.cta-section { background: var(--cream); color: var(--text-dark); text-align: center; padding: 8rem 3rem; }
.cta-section .section-tag { color: var(--wine); }
.cta-section .section-title { color: var(--text-dark); }
.cta-form { display: flex; gap: 0; max-width: 500px; margin: 2.5rem auto 0; }
.cta-input { flex: 1; padding: 1rem 1.5rem; border: 1px solid rgba(0,0,0,0.15); border-right: none; font-family: var(--sans); font-size: 0.85rem; background: white; outline: none; color: var(--text-dark); }
.cta-input::placeholder { color: #aaa; }
.cta-input:focus { border-color: var(--wine); }
.cta-submit { padding: 1rem 2rem; background: var(--text-dark); color: #FFFFFF; border: none; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; font-weight: 500; transition: background 0.3s; }
.cta-submit:hover { background: #1A1510; }

/* ─── FOOTER ─── */
.footer { padding: 5rem 3rem 2rem; border-top: 1px solid rgba(184,148,62,0.15); }
.footer--minimal { padding: 2rem 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 320px; }
.footer-heading { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.75rem; color: var(--text-muted); }
.footer-payment { display: flex; gap: 1rem; }
.footer-payment span { padding: 0.3rem 0.8rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; font-size: 0.7rem; }
.footer-age { display: inline-flex; margin-top: 0.5rem; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border: 1px solid var(--wine); color: var(--wine-soft); font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 1.5rem; }

/* ─── AGE GATE ─── */
.age-gate { position: fixed; inset: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(30px); display: flex; align-items: center; justify-content: center; }
.age-gate.hidden { display: none; }
.age-gate-box { text-align: center; max-width: 400px; padding: 2rem; }
.age-gate-logo { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 2rem; }
.age-gate-title { font-family: var(--serif); font-size: 2rem; margin-bottom: 0.75rem; }
.age-gate-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.6; }
.age-gate-buttons { display: flex; gap: 1rem; justify-content: center; }
.age-gate-buttons .btn { min-width: 140px; justify-content: center; }
.age-gate-fine { margin-top: 1.5rem; font-size: 0.7rem; color: var(--text-muted); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(30px); display: flex; flex-direction: column;
  padding: 2rem; transform: translateX(100%); transition: transform 0.4s var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-menu-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); letter-spacing: 0.15em; }
.mobile-menu-logo span { font-weight: 600; }
.mobile-menu-close { background: none; border: none; color: var(--gold); font-size: 2rem; cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.mobile-menu-links .nav-link { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.mobile-menu-links .nav-link:hover { color: var(--gold); }
.mobile-menu-cart { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; border-top: 1px solid rgba(184,148,62,0.15); font-size: 1rem; color: var(--gold); text-decoration: none; }

/* ─── MINI CART ─── */
.mini-cart-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mini-cart-overlay.open { opacity: 1; pointer-events: auto; }
.mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 90vw;
  z-index: 160; background: var(--noir-soft); border-left: 1px solid rgba(184,148,62,0.15);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}
.mini-cart.open { transform: translateX(0); }
.mini-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mini-cart-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; }
.mini-cart-close { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.mini-cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.mini-cart-item { display: grid; grid-template-columns: 50px 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); align-items: center; }
.mini-cart-item-img { width: 50px; height: 65px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
.mini-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-item-name { font-size: 0.85rem; line-height: 1.3; }
.mini-cart-item-qty { font-size: 0.75rem; color: var(--text-muted); }
.mini-cart-item-price { font-family: var(--serif); color: var(--gold); }
.mini-cart-empty { text-align: center; padding: 3rem 1rem; }
.mini-cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.mini-cart-empty p { color: var(--text-muted); margin-bottom: 1.5rem; }
.mini-cart-footer { padding: 1.5rem; border-top: 1px solid rgba(184,148,62,0.15); display: flex; flex-direction: column; gap: 0.75rem; }
.mini-cart-total { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.5rem; }
.mini-cart-total-price { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }

/* ─── PAGE TEMPLATES ─── */
.gnts-page { padding: 8rem 3rem 5rem; max-width: 900px; margin: 0 auto; }
.page-header { margin-bottom: 3rem; }
.page-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; }

/* ─── 404 ─── */
.error-404 { height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-404-num { font-family: var(--serif); font-size: 8rem; font-weight: 300; color: var(--gold); opacity: 0.2; line-height: 1; }
.error-404-title { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; margin: 1rem 0; }
.error-404-desc { color: var(--text-muted); margin-bottom: 2.5rem; }
.error-404-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FORM ELEMENTS ─── */
.form-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }
.form-input {
  width: 100%; padding: 0.85rem 1rem; background: var(--noir-card); 
  border: 1px solid rgba(0,0,0,0.08); color: var(--text-light);
  font-family: var(--sans); font-size: 0.9rem; outline: none; transition: border-color 0.3s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: #555; }
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9590' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}

/* WooCommerce form field overrides */
.woocommerce-checkout .form-row { margin-bottom: 1rem; }
.woocommerce-checkout .form-row label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.woocommerce-checkout .form-row input, .woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea { width: 100%; padding: 0.85rem 1rem; background: var(--noir-card); border: 1px solid rgba(0,0,0,0.08); color: var(--text-light); font-family: var(--sans); font-size: 0.9rem; }

/* ─── SHOP PAGINATION ─── */
.shop-pagination { text-align: center; margin-top: 3rem; }
.shop-pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.shop-pagination a, .shop-pagination span {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184,148,62,0.25); color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; transition: all 0.3s;
}
.shop-pagination .current, .shop-pagination a:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,148,62,0.08); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.fade-in { animation: fadeIn 0.8s var(--transition) both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

.footer-instagram { display: block; font-size: 0.85rem; color: var(--gold); text-decoration: none; margin: 1.25rem 0; transition: opacity 0.3s; }
.footer-instagram:hover { opacity: 0.7; }

