/* ============================================
   MOR-HEMP SPIRITS — Global Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --black: #0A0A08;
  --off-black: #111109;
  --charcoal: #1C1C18;
  --gray: #2A2A24;
  --text-muted: #888878;
  --text-light: #CCCCBC;
  --white: #F5F3EE;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-distributor-btn {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-distributor-btn:hover {
  background: var(--gold-light);
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  right: 10px;
  top: -5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: transform 0.3s;
}

@media (max-width: 700px) {
  .nav-left {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 8, 0.97);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    z-index: 200;
  }
  .nav-left.open { display: flex; }

  .nav-right {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav-toggle { display: block; }

  .nav-distributor-btn {
    width: auto;
    padding: 8px 14px;
    font-size: 9px;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--black);
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  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;
  z-index: 0;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.logo-wrap {
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.logo-wrap img {
  height: 80px;
  width: auto;
}

.tagline-pre {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.divider-wide {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================
   EMAIL FORM
   ============================================ */

.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 16px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.email-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 14px 20px;
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.3s;
  min-width: 0;
}

.email-form input::placeholder { color: var(--text-muted); }
.email-form input:focus { border-color: var(--gold); }

.email-form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.3s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--gold-light); }

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}

.thank-you {
  display: none;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */

.section-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 56px;
}

.gold-top-line {
  position: relative;
}

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

.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  background: var(--black);
}

.page-hero .section-title {
  margin-bottom: 0;
}

/* ============================================
   BOTTLES GRID
   ============================================ */

.products-section {
  padding: 80px 24px;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}

.bottles-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.bottle-item {
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
  transition: transform 0.4s ease;
}

.bottle-item:hover { transform: translateY(-12px); }

.bottle-item img {
  width: 100%;
  max-width: 160px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.bottle-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 4px;
}

.bottle-type {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   RTD SECTION
   ============================================ */

.rtd-section {
  padding: 80px 24px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.rtd-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rtd-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}

.rtd-image-wrap img {
  max-width: 500px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
}

/* ============================================
   PRODUCT DETAIL CARDS
   ============================================ */

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
}

.product-card img {
  max-width: 180px;
  height: 300px;
  object-fit: contain;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.product-card-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.product-card .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.product-card .description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.product-card ul {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  display: inline-block;
}

.product-card ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card ul li .dot {
  color: var(--gold);
  font-size: 8px;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
  padding: 80px 24px;
  background: var(--off-black);
  position: relative;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.story-photos img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%) sepia(10%);
}

.story-photos img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.story-quote span { color: var(--gold-light); }

.story-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.year-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   AWARDS
   ============================================ */

.awards-section {
  padding: 64px 24px;
  background: var(--black);
  position: relative;
}

.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.award-item {
  text-align: center;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.award-item:hover { opacity: 1; }

.award-item img {
  height: 100px;
  width: auto;
  filter: grayscale(30%);
}

.award-caption {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 12px;
}

.award-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   CERTIFICATIONS / BADGES
   ============================================ */

.badges-section {
  padding: 48px 24px;
  background: var(--off-black);
  position: relative;
}

.badges-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-item img {
  height: 52px;
  width: auto;
  opacity: 0.85;
}

.badge-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   WHY MOR-HEMP FEATURES
   ============================================ */

.features-section {
  padding: 80px 24px;
  background: var(--black);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  background: var(--off-black);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section .section-title {
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 40px 24px;
  background: var(--black);
  text-align: center;
  position: relative;
  margin-top: auto;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.6;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.footer-text a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-text a:hover {
  color: var(--gold-light);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail {
  padding: 140px 24px 80px;
  background: var(--black);
}

.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-detail-image {
  text-align: center;
  position: relative;
}

.product-detail-image img {
  max-width: 240px;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  transition: transform 0.5s ease;
}

.product-detail-image:hover img {
  transform: translateY(-8px);
}

.product-detail-image .glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.product-detail-image img {
  position: relative;
  z-index: 1;
}

.product-detail-info .product-category {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}

.product-detail-info .product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.product-detail-info .product-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* Specs list */
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
}

/* Tasting notes */
.tasting-notes {
  margin-bottom: 40px;
}

.tasting-notes h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.tasting-notes p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* Features list */
.product-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.product-features li .dot {
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

/* LC integration zone */
.lc-integration-zone {
  border: 2px dashed rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  background: rgba(201,168,76,0.03);
  margin-bottom: 40px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.lc-integration-zone .lc-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.lc-integration-zone .lc-sublabel {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 300;
}

/* Flavor selector for RTD */
.flavor-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.flavor-btn {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  text-align: center;
}

.flavor-btn:hover,
.flavor-btn.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}

.flavor-panel {
  display: none;
}

.flavor-panel.active {
  display: block;
}

/* Related products */
.related-products {
  padding: 80px 24px;
  background: var(--off-black);
  position: relative;
}

.related-products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.related-grid {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.related-grid .bottle-item {
  cursor: pointer;
}

.related-grid .bottle-item a {
  display: block;
}

/* ============================================
   PRODUCT LISTING GRID
   ============================================ */

.product-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-listing-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
  text-decoration: none;
  display: block;
}

.product-listing-item:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.35);
}

.product-listing-item img {
  max-width: 120px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}

.product-listing-item:hover img {
  transform: translateY(-6px);
}

.product-listing-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.product-listing-item .listing-type {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-listing-item .listing-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 700px) {
  .hero {
    padding: 120px 20px 60px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-photos img:first-child {
    aspect-ratio: 4/3;
  }

  .bottles-grid {
    gap: 8px;
  }

  .bottle-item {
    min-width: 120px;
  }

  .bottle-item img {
    height: 220px;
  }

  .product-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .awards-grid {
    gap: 24px;
  }

  .award-item img {
    height: 72px;
  }

  .badges-grid {
    gap: 32px;
  }

  .email-form {
    flex-direction: column;
    gap: 0;
  }

  .email-form input {
    border-right: 1px solid rgba(201,168,76,0.3);
    border-radius: 2px;
    border-bottom: none;
  }

  .email-form button {
    border-radius: 0 0 2px 2px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-detail {
    padding: 120px 20px 60px;
  }

  .product-detail-image img {
    max-width: 180px;
    height: 320px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-listing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .product-listing-item img {
    max-width: 90px;
    height: 180px;
  }

  .flavor-selector {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .product-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 8, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-box {
  text-align: center;
  max-width: 440px;
  padding: 48px 40px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.age-gate-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-gate-logo {
  height: 56px;
  width: auto;
  margin-bottom: 32px;
  opacity: 0.9;
}

.age-gate-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.age-gate-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate-buttons .btn-gold {
  min-width: 140px;
}

.age-gate-buttons .btn-outline {
  min-width: 140px;
}

.age-gate-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

body.age-locked {
  overflow: hidden;
}

/* ============================================
   CONTACT / DISTRIBUTOR FORM
   ============================================ */

.contact-form-section {
  padding: 0 24px 100px;
  background: var(--black);
}

.contact-form-inner {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 56px 48px;
  position: relative;
}

.contact-form-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header .section-label {
  margin-bottom: 12px;
}

.contact-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-form-header p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 120, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888878' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
  margin: 8px 0;
}

.form-submit-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.form-alt-contact {
  text-align: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.form-alt-contact p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-alt-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.form-alt-contact a:hover {
  color: var(--gold-light);
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-inner {
    padding: 36px 24px;
  }

  .age-gate-box {
    margin: 20px;
    padding: 36px 24px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }
}
