/* ===================================================================
   DRAGÓN DEL ORIENTE MÉXICO - LUXURY BLACK & PLATINUM SILVER DESIGN SYSTEM
   Faithfully inspired by the Clase Azul architecture in Obsidian & Silver
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,600&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  /* Obsidian & Platinum Silver Color System */
  --color-obsidian-pure: #000000;
  --color-obsidian-deep: #050608;
  --color-obsidian-card: #0c0e14;
  --color-obsidian-card-hover: #12151e;
  --color-obsidian-trans-80: rgba(5, 6, 8, 0.85);
  --color-obsidian-trans-50: rgba(5, 6, 8, 0.50);
  
  --color-charcoal-light: #181c26;
  --color-charcoal-clay: #131620;
  
  /* Silver & Platinum Metallics */
  --color-silver-white: #ffffff;
  --color-platinum: #e2e8f0;
  --color-silver: #cbd5e1;
  --color-silver-muted: #94a3b8;
  --color-silver-dark: #64748b;
  
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #e2e8f0 35%, #94a3b8 70%, #f1f5f9 100%);
  --silver-gradient-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(203, 213, 225, 0.05) 100%);
  --silver-gradient-border: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(148, 163, 184, 0.15) 100%);

  /* Luxury Gold & Emerald Tokens */
  --color-gold-leaf: #d4af37;
  --color-gold-bright: #f5cf68;
  --color-gold-warm: #eab308;
  --gold-gradient: linear-gradient(135deg, #fef08a 0%, #d4af37 50%, #996515 100%);
  --gold-gradient-border: linear-gradient(135deg, rgba(245, 207, 104, 0.6) 0%, rgba(212, 175, 55, 0.15) 100%);

  /* WhatsApp Official Brand Colors */
  --color-wa-green: #25D366;
  --color-wa-teal: #128C7E;
  --color-wa-deep: #075E54;
  --color-wa-light: #dcf8c6;
  
  /* Text */
  --color-text-primary: #ffffff;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #8e99ac;
  
  /* Borders */
  --border-silver-subtle: rgba(226, 232, 240, 0.15);
  --border-silver-medium: rgba(226, 232, 240, 0.3);
  --border-silver-bright: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-logo: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Easings */
  --ease-luxury: cubic-bezier(0.25, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-obsidian-pure);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--color-obsidian-pure);
  color: var(--color-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.content-wrapper {
  width: 100%;
  position: relative;
}

/* ===================================================================
   BUTTON SYSTEM (PLATINUM & OBSIDIAN)
   =================================================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.c-button--silver {
  background: var(--silver-gradient);
  color: #050608;
  font-weight: 700;
  border: none;
  box-shadow: 0 6px 25px rgba(226, 232, 240, 0.25);
}
.c-button--silver:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.4);
}

.c-button--outline-silver,
.c-button--outline-on-dark,
.c-button--outline-on-light {
  border: 1px solid rgba(226, 232, 240, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.c-button--outline-silver:hover,
.c-button--outline-on-dark:hover,
.c-button--outline-on-light:hover {
  background: #ffffff;
  color: #050608;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.c-button--fill-on-dark {
  background: #ffffff;
  color: #050608;
  font-weight: 600;
  border: 1px solid #ffffff;
}
.c-button--fill-on-dark:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================================================
   1. AGE VERIFICATION GATE (Oaxalisco Inspired Gateway)
   =================================================================== */
.age-gate-premium {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050608;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-luxury), visibility 0.7s var(--ease-luxury);
}

.age-gate-premium.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.age-gate-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gate-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.24) contrast(1.15) saturate(1.1);
}

.gate-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 38, 50, 0.45) 0%, rgba(4, 5, 8, 0.94) 100%),
              radial-gradient(circle at 80% 20%, rgba(226, 232, 240, 0.12) 0%, transparent 60%);
}

.age-gate-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  width: 90%;
  margin: 1.5rem;
  padding: 3rem 2.5rem;
  background: rgba(12, 15, 22, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: none;
  border-radius: 20px;
  text-align: center;
  color: var(--color-silver-white);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95);
}

.age-gate-lang {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
}

.age-gate-lang .lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 30px;
  padding: 4px 10px;
  backdrop-filter: blur(8px);
}

.gate-lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gate-lang-btn.active {
  color: var(--color-silver-white);
  font-weight: 700;
}

.gate-logo-box {
  margin: 0 auto 1.25rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gate-dragon-svg {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 6px 16px rgba(226, 232, 240, 0.2));
}

.gate-brand-title {
  font-family: var(--font-logo);
  font-size: 1.55rem;
  letter-spacing: 0.3em;
  color: var(--color-silver-white);
  margin-bottom: 6px;
}

.gate-brand-title span {
  font-weight: 300;
  color: var(--color-silver-muted);
  font-size: 1.1rem;
}

.gate-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-platinum);
  display: block;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.gate-question h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-weight: 400;
}

.gate-question p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 300;
}

.gate-choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.gate-btn {
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
  flex: 1;
}

.gate-btn.primary {
  background: var(--silver-gradient);
  color: #050608;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px rgba(226, 232, 240, 0.3);
}

.gate-btn.primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.45);
}

.gate-btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--color-silver-white);
}

.gate-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.gate-footer .disclaimer {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ===================================================================
   2. HEADER & FLOATING NAVIGATION
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 24px 0;
  transition: all 0.4s var(--ease-smooth);
}

.header.header--scrolled {
  padding: 16px 0;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.header__wrapper {
  width: 94%;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Hamburger Left */
.nav__hamburger-button {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-silver-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background 0.3s ease;
}
.nav__hamburger-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav__hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav__hamburger-icon span {
  display: block;
  height: 1.5px;
  background: var(--color-silver-white);
  transition: transform 0.3s ease;
}

/* Center Logo */
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.nav__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.logo-text-title {
  font-family: var(--font-logo);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--color-silver-white);
  text-transform: uppercase;
}

.logo-text-tagline {
  font-family: var(--font-body);
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav__logo-link:hover .logo-text-tagline {
  color: var(--color-gold-bright);
}

/* Right Utilities */
.nav__utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__languages {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 20px;
  padding: 4px 10px;
}

.nav__language-item a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  padding: 2px 4px;
}
.nav__language-item.active a {
  color: var(--color-silver-white);
}

.nav__cta-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #050608;
  background: var(--silver-gradient);
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.nav__cta-link:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(226, 232, 240, 0.4);
}

.nav__cta-link--buy {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16) 0%, rgba(18, 140, 126, 0.28) 100%);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #4ade80;
}

.nav__cta-link--buy:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #25D366;
  color: #050608;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

/* ===================================================================
   3. FLYOUT MEGA DRAWER NAVIGATION
   =================================================================== */
.nav-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #050608;
  z-index: 99999;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
}

.nav-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu__overflow {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  height: 100%;
}

.nav-menu__left {
  padding: 80px 70px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: none;
  overflow-y: auto;
}

.nav-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.nav-menu__close {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-silver-white);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-menu__close:hover {
  color: var(--color-platinum);
}

.nav-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.nav-menu__menu-item--large {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.4s ease, transform 0.4s ease;
  font-weight: 400;
}
.nav-menu__menu-item--large:hover, .nav-menu__menu-item--large.active {
  color: var(--color-silver-white);
  transform: translateX(10px);
}
.nav-menu__menu-item--large::before {
  content: '';
  width: 0px;
  height: 2px;
  background: var(--silver-gradient);
  transition: width 0.4s ease;
}
.nav-menu__menu-item--large:hover::before, .nav-menu__menu-item--large.active::before {
  width: 25px;
}

.nav-menu__submenu {
  list-style: none;
  margin-top: 8px;
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-menu__submenu a {
  font-size: 0.9rem;
  color: var(--color-silver-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-menu__submenu a:hover {
  color: var(--color-silver-white);
}

.nav-menu__footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.nav-menu__media {
  position: relative;
  background: #000000;
  overflow: hidden;
}

.nav-menu__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury), opacity 0.5s ease;
}
.nav-menu__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
}
.nav-menu__media-caption {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-silver-white);
  font-style: italic;
}

/* ===================================================================
   4. SECTION: MEDIA FULL WIDTH (HERO VIDEO / IMAGE BANNER)
   =================================================================== */
.media-full-width {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #000000;
}

.media-full-width__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92);
}

img.media-full-width__element {
  transform: scale(1.02);
  animation: heroSubtleScale 24s infinite alternate ease-in-out;
}

video.media-full-width__element {
  pointer-events: none;
}

@keyframes heroSubtleScale {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08) translateY(-10px); }
}

.media-full-width__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ===================================================================
   5. COMPONENT: HERO TEXT STICKY BLOCK (BLACK & PLATINUM SILVER)
   =================================================================== */
.hero-text {
  background: var(--color-charcoal-clay);
  color: var(--color-silver-white);
  padding: 100px 0;
  position: relative;
  z-index: 10;
  border: none;
}

.hero-text__inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-text__subheader {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-silver-muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-text__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-silver-white);
  margin-bottom: 24px;
}
.hero-text__title em {
  font-style: italic;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text__description {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-text__controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ===================================================================
   6. SECTION: PRODUCTS SHOWROOM (Editorial 3-Tier Grid - Oaxalisco Inspired)
   =================================================================== */
.collection-section {
  background: #000000;
  padding: 120px 0 140px 0;
  position: relative;
  border: none;
}

.collection-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 4.5rem auto;
  padding: 0 20px;
}

.collection-header .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 5px 16px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  border: none;
}

.collection-header .section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 400;
  color: var(--color-silver-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.collection-header .section-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
}

.products-grid {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.product-card {
  background: rgba(14, 17, 24, 0.85);
  border-radius: 22px;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Specific luminous aura per expression */
.product-card:nth-child(1):hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.9), 0 0 45px rgba(226, 232, 240, 0.22);
}

.product-card:nth-child(2):hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.9), 0 0 50px rgba(235, 170, 60, 0.26);
}

.product-card:nth-child(3):hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.9), 0 0 50px rgba(180, 85, 35, 0.26);
}

.product-badge-origin {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: var(--color-silver-white);
  backdrop-filter: blur(8px);
}

.product-image-box {
  padding: 2.75rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.04) 0%, rgba(10, 12, 18, 0.95) 100%);
  border-bottom: none;
}

.product-image-box::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.product-card:hover .product-image-box::after {
  transform: translateX(-50%) scale(0.9);
  opacity: 0.5;
}

.product-image-box--blanco .product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(226, 232, 240, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-image-box--reposado .product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(235, 170, 60, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-image-box--anejo .product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(190, 95, 40, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-bottle-img {
  max-height: 330px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.75));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.product-card:hover .product-bottle-img {
  transform: scale(1.07) translateY(-6px);
}

.product-info-box {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-number {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.product-card:nth-child(1) .product-number { color: var(--color-silver); }
.product-card:nth-child(2) .product-number { color: #f59e0b; }
.product-card:nth-child(3) .product-number { color: #ea580c; }

.product-name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--color-silver-white);
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.product-specs-inline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.product-specs-inline .dot {
  color: var(--color-silver-muted);
}

.product-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 300;
}

.tasting-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.t-pill {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--color-platinum);
  padding: 0.35rem 0.75rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.t-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Product Pricing Showcase */
.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0 1rem 0;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  border: none;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1;
}

.product-card:nth-child(1) .price-amount {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 60%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card:nth-child(2) .price-amount {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card:nth-child(3) .price-amount {
  background: linear-gradient(135deg, #ffedd5 0%, #ea580c 60%, #9a3412 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-currency {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.price-tax-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

/* Actions Group (WhatsApp Primary + Tech Spec Secondary) */
.product-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.btn-buy-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16) 0%, rgba(18, 140, 126, 0.3) 50%, rgba(7, 94, 84, 0.4) 100%);
  border: 1px solid rgba(37, 211, 102, 0.5);
  padding: 0.95rem 1.4rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: all 0.35s var(--ease-luxury);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-buy-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.6s ease;
}

.btn-buy-whatsapp:hover::before {
  left: 100%;
}

.btn-buy-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #25D366;
  color: #050608;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-buy-whatsapp svg {
  color: #25D366;
  transition: color 0.35s ease;
  flex-shrink: 0;
}

.btn-buy-whatsapp:hover svg {
  color: #050608;
}

.minimal-cta {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 0.85rem 1.3rem;
  border-radius: 40px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s var(--ease-luxury);
  width: 100%;
  cursor: pointer;
}

.minimal-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.minimal-cta svg {
  transition: transform 0.3s ease;
}

.minimal-cta:hover svg {
  transform: translateX(4px);
}

/* ===================================================================
   7. SECTION: HERO CARD HOVER (Expanding Destination Cards)
   =================================================================== */
.hero-card-hover {
  background: #000000;
  padding: 0 0 100px 0;
  position: relative;
}

.hero-card-hover__inner-center {
  width: 94%;
  max-width: 1560px;
  margin: 0 auto;
}

.hero-card-hover__inner {
  display: flex;
  gap: 20px;
  height: 620px;
}

.hero-card-hover__card {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: flex 0.7s var(--ease-luxury), transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card-hover__card.active, .hero-card-hover__card:hover {
  flex: 1.7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.hero-card-hover__card-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
  filter: contrast(1.05) brightness(0.85);
}

.hero-card-hover__card:hover .hero-card-hover__card-bg-image {
  transform: scale(1.06);
}

.hero-card-hover__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-card-hover__card-content {
  position: absolute;
  inset: 0;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.hero-card-hover__card-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-silver-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-card-hover__card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--color-silver-white);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-card-hover__card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
  font-weight: 300;
}

/* ===================================================================
   8. SECTION: HERO MEDIA SPLIT (2 Tall Media Panels)
   =================================================================== */
.hero-media-split {
  background: #050608;
  padding: 0;
  width: 100%;
}

.hero-media-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.hero-media-split__panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
  min-height: 540px;
  border-right: none;
}

.hero-media-split__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
  filter: contrast(1.05) brightness(0.85);
}

.hero-media-split__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-media-split__panel:hover .hero-media-split__media-img {
  transform: scale(1.06);
}

.hero-media-split__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-media-split__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-silver-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-media-split__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--color-silver-white);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-media-split__description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-weight: 300;
}

/* ===================================================================
   9. SECTION: MEDIA FEATURED TEXT (The Invitation / Community Card)
   =================================================================== */
.media-featured-text {
  background: #090b10;
  color: var(--color-silver-white);
  padding: 100px 0;
  border: none;
}

.media-featured-text__container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.media-featured-text__card-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #10131c;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.media-featured-text__media-col {
  position: relative;
  min-height: 520px;
}

.media-featured-text__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
}

.media-featured-text__content-col {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-featured-text__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-silver-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.media-featured-text__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--color-silver-white);
  margin-bottom: 18px;
  font-weight: 400;
}

.media-featured-text__description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-weight: 300;
}

.invitation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.invitation-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-silver-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}
.invitation-input:focus {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* ===================================================================
   10. SECTION: MIXOLOGY & RITUALS
   =================================================================== */
.mixology-rituals {
  background: #000000;
  padding: 100px 0;
}

.mixology-grid {
  width: 90%;
  max-width: 1280px;
  margin: 50px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mixology-card {
  background: #090b10;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: all 0.4s var(--ease-luxury);
}
.mixology-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.mixology-card__img-wrap {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.mixology-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
  filter: contrast(1.05);
}
.mixology-card:hover .mixology-card__img {
  transform: scale(1.06);
}

.mixology-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.82);
  border: none;
  color: var(--color-silver-white);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.mixology-card__body {
  padding: 35px 30px;
}

.mixology-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-silver-white);
  margin-bottom: 12px;
  font-weight: 400;
}

.mixology-card__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-weight: 300;
}


/* ===================================================================
   12. FOOTER (Clase Azul Exact Minimalist Layout in Black & Silver)
   =================================================================== */
.footer {
  background: #000000;
  padding: 80px 0 40px 0;
  border-top: none;
  text-align: center;
}

.footer__container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__logo {
  margin-bottom: 35px;
}

.footer__logo-title {
  font-family: var(--font-logo);
  font-size: 1.45rem;
  letter-spacing: 0.38em;
  color: var(--color-silver-white);
  text-transform: uppercase;
}
.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--color-silver-muted);
  margin-top: 4px;
}

.footer__nav {
  margin-bottom: 40px;
}

.footer__nav-inner {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__nav-link {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: var(--color-silver-white);
}

.footer__social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-silver-white);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(226, 232, 240, 0.2);
}

.footer__legal {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 820px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.footer__info {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================================================================
/* ===================================================================
   13. MODALS (Technical Sheet & Confirmation Notice)
   =================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 90%;
  max-width: 540px;
  background: #0d0f15;
  border: none;
  border-radius: 20px;
  padding: 45px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 35px 90px rgba(0,0,0,0.9);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: var(--color-silver-white);
}

/* Oaxalisco-Inspired Technical Sheet Modal */
.tech-modal-overlay .tech-modal-content {
  background: #090c12;
  border: none;
  border-radius: 22px;
  padding: 2.75rem 2.5rem 2rem 2.5rem;
  max-width: 980px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95);
  color: var(--color-silver-white);
}

.close-tech-modal {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
}
.close-tech-modal:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-sheet-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: none;
}

.sheet-top-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-silver-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.sheet-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 400;
  color: var(--color-silver-white);
  letter-spacing: 0.05em;
}

.modal-sheet-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.sheet-bottle-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sheet-bottle-frame {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, rgba(12, 16, 24, 0.9) 100%);
  border: none;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  min-height: 380px;
  overflow: hidden;
}

.sheet-bottle-frame::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.sheet-bottle-frame img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  position: relative;
  z-index: 2;
}

.modal-bottle-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.modal-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--color-platinum);
}

/* Modal Direct Purchase Box */
.modal-purchase-box {
  margin-top: 1.4rem;
  padding: 1.25rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(10, 14, 22, 0.95) 100%);
  border: none;
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-price-caption {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.modal-price-number {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-price-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 0.2rem;
}

.btn-buy-whatsapp--modal {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}

.sheet-details-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sheet-section {
  background: rgba(255, 255, 255, 0.035);
  border: none;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.sheet-sec-title {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-platinum);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sheet-sec-title .sheet-icon {
  color: var(--color-silver-muted);
  font-size: 0.85rem;
}

.sheet-sec-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

.tasting-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tasting-item {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.tasting-item strong {
  font-weight: 600;
  color: var(--color-platinum);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-right: 0.35rem;
}

.specs-grid-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

.detail-cell {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.detail-cell.full {
  grid-column: span 2;
}

.detail-cell strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-platinum);
  font-weight: 600;
}

.modal-footer-brand {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: none;
  text-align: center;
}

.sheet-bottom-note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-silver-muted);
}

/* ===================================================================
   14. RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    gap: 3rem;
  }
  .modal-sheet-grid {
    grid-template-columns: 1fr;
  }
  .sheet-bottle-col {
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-card-hover__inner {
    flex-direction: column;
    height: auto;
  }
  .hero-card-hover__card {
    height: 380px;
    flex: none !important;
  }
  .hero-media-split__grid {
    grid-template-columns: 1fr;
  }
  .media-featured-text__card-wrap {
    grid-template-columns: 1fr;
  }
  .mixology-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu__overflow {
    grid-template-columns: 1fr;
  }
  .nav-menu__media {
    display: none;
  }
  .nav-menu__left {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .hero-text {
    padding: 70px 0;
  }
  .invitation-form-grid {
    grid-template-columns: 1fr;
  }
  .nav__cta-link {
    display: none;
  }
  .tech-modal-overlay .tech-modal-content {
    padding: 2rem 1.25rem;
  }
  .specs-grid-details {
    grid-template-columns: 1fr;
  }
  .detail-cell.full {
    grid-column: span 1;
  }
  .gate-choices {
    flex-direction: column;
  }
}

/* ===================================================================
   14. FLOATING LUXURY VIP CONCIERGE WHATSAPP
   =================================================================== */
.vip-concierge-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 14, 20, 0.92);
  border: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.55rem 1.15rem 0.55rem 0.6rem;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.75), 0 0 25px rgba(37, 211, 102, 0.15);
  transition: all 0.35s var(--ease-luxury);
  cursor: pointer;
}

.vip-concierge-float:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(12, 17, 25, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85), 0 0 32px rgba(37, 211, 102, 0.35);
}

.vip-concierge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

.vip-concierge-pulse {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50px;
  border: 1.5px solid #25D366;
  animation: conciergePulse 2.8s infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes conciergePulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0; }
  100% { transform: scale(1); opacity: 0.7; }
}

.vip-concierge-label {
  display: flex;
  flex-direction: column;
}

.concierge-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #4ade80;
  text-transform: uppercase;
  line-height: 1.2;
}

.concierge-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .vip-concierge-label {
    display: none;
  }
  .vip-concierge-float {
    padding: 0.45rem;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
  }
  .vip-concierge-pulse {
    border-radius: 50%;
  }
}
