/* ==========================================================================
   SALVADOR CRAFT BEER - Premium Craft Brewery Web Application Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --bg-dark: #080706;
  --bg-card: #12100d;
  --bg-card-glass: rgba(18, 16, 13, 0.75);
  --bg-surface: #1a1714;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(229, 169, 60, 0.25);
  
  /* Text Colors */
  --text-main: #f5f2eb;
  --text-muted: #a39c93;
  --text-dim: #6d665e;
  
  /* Style Specific Accent Colors */
  --accent-blonde: #fbc02d;
  --accent-blonde-glow: rgba(251, 192, 45, 0.35);
  
  --accent-red: #e53935;
  --accent-red-glow: rgba(229, 57, 53, 0.35);
  
  --accent-belgian: #c2185b;
  --accent-belgian-glow: rgba(194, 24, 91, 0.35);

  --accent-stout: #00c853;
  --accent-stout-glow: rgba(0, 200, 83, 0.35);

  --accent-imperial: #e0e0e0;
  --accent-imperial-glow: rgba(224, 224, 224, 0.35);

  --accent-grape: #ab47bc;
  --accent-grape-glow: rgba(171, 71, 188, 0.35);

  --accent-hefe: #ffb300;
  --accent-hefe-glow: rgba(255, 179, 0, 0.35);

  --accent-bock: #d84315;
  --accent-bock-glow: rgba(216, 67, 21, 0.35);
  
  --accent-primary: #e5a93c;
  --accent-primary-hover: #f3be56;

  /* Layout Constants */
  --nav-height: 100px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transition & Shadow */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(229, 169, 60, 0.15);
}

/* Reset & Global Standards */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #2a2520;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Typography Headings */
h1, h2, h3, h4, .brand-logo-text {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   AGE VERIFICATION MODAL (+18)
   ========================================================================== */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 4, 3, 0.96);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.age-gate-card {
  max-width: 480px;
  width: 100%;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(229, 169, 60, 0.3);
  box-shadow: 0 0 50px rgba(229, 169, 60, 0.15);
}

.age-gate-logo {
  font-size: 3.5rem;
  color: var(--accent-primary);
  display: inline-block;
  line-height: 0.9;
  margin-bottom: 20px;
}

.age-gate-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.age-gate-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.age-gate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #b88022 100%);
  color: #000;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 169, 60, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  min-height: 100px;
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(8, 7, 6, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  background: rgba(8, 7, 6, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  margin-left: 16px;
  padding: 0;
  border: none;
  max-width: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  max-height: 90px;
  height: 90px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo-img:hover {
  transform: scale(1.05);
}

.age-gate-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(229, 57, 53, 0.35));
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: var(--transition-fast);
}

.cart-btn:hover {
  border-color: var(--accent-primary);
  background: rgba(229, 169, 60, 0.1);
  color: var(--accent-primary);
}

.cart-count {
  background: var(--accent-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(30, 24, 18, 0.8) 0%, var(--bg-dark) 80%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.2);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.4) 0%, rgba(8, 7, 6, 0.95) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid rgba(229, 169, 60, 0.4);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--text-main);
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  color: var(--accent-primary);
  background: linear-gradient(135deg, #fbc02d, #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #c48318 100%);
  color: #080706;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(229, 169, 60, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(229, 169, 60, 0.5);
}

.btn-hero-secondary {
  color: var(--text-main);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-muted);
}

/* Quick Specs Ribbon */
.hero-specs-ribbon {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

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

.spec-value {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--accent-primary);
  line-height: 1;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   PRODUCTS SHOWCASE SECTION
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-main);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

/* Card Themes */
.product-card[data-style="blonde"]:hover {
  border-color: var(--accent-blonde);
  box-shadow: 0 20px 40px var(--accent-blonde-glow);
}

.product-card[data-style="red"]:hover {
  border-color: var(--accent-red);
  box-shadow: 0 20px 40px var(--accent-red-glow);
}

.product-card[data-style="belgian"]:hover {
  border-color: var(--accent-belgian);
  box-shadow: 0 20px 40px var(--accent-belgian-glow);
}

.product-card[data-style="stout"]:hover {
  border-color: var(--accent-stout);
  box-shadow: 0 20px 40px var(--accent-stout-glow);
}

.product-card[data-style="imperial"]:hover {
  border-color: var(--accent-imperial);
  box-shadow: 0 20px 40px var(--accent-imperial-glow);
}

.product-card[data-style="grape"]:hover,
.product-card[data-style="grape_750"]:hover {
  border-color: var(--accent-grape);
  box-shadow: 0 20px 40px var(--accent-grape-glow);
}

.product-card[data-style="hefeweizen"]:hover {
  border-color: var(--accent-hefe);
  box-shadow: 0 20px 40px var(--accent-hefe-glow);
}

.product-card[data-style="doppelbock"]:hover {
  border-color: var(--accent-bock);
  box-shadow: 0 20px 40px var(--accent-bock-glow);
}

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.badge-blonde {
  background: var(--accent-blonde);
  color: #000;
}

.badge-red {
  background: var(--accent-red);
  color: #fff;
}

.badge-belgian {
  background: var(--accent-belgian);
  color: #fff;
}

.badge-stout {
  background: var(--accent-stout);
  color: #000;
}

.badge-imperial {
  background: var(--accent-imperial);
  color: #000;
}

.badge-grape {
  background: var(--accent-grape);
  color: #fff;
}

.badge-hefe {
  background: var(--accent-hefe);
  color: #000;
}

.badge-bock {
  background: var(--accent-bock);
  color: #fff;
}

.product-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Technical Metrics Gauge Bars */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Amargor Level Badges */
.amargor-badge {
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.amargor-bajo {
  background: rgba(235, 180, 50, 0.15);
  color: #fbc02d;
  border: 1px solid rgba(251, 192, 45, 0.4);
}

.amargor-medio {
  background: rgba(229, 115, 35, 0.15);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.4);
}

.gauge-bar-fill.amargor-fill-bajo {
  background: linear-gradient(90deg, #fbc02d, #f57f17);
}

.gauge-bar-fill.amargor-fill-medio {
  background: linear-gradient(90deg, #ff9800, #e65100);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.metric-name {
  color: var(--text-muted);
  text-transform: uppercase;
}

.metric-num {
  color: var(--text-main);
  font-weight: 700;
}

.gauge-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.gauge-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease-out;
}

.product-card[data-style="blonde"] .gauge-bar-fill {
  background: var(--accent-blonde);
}

.product-card[data-style="red"] .gauge-bar-fill {
  background: var(--accent-red);
}

.product-card[data-style="belgian"] .gauge-bar-fill {
  background: var(--accent-belgian);
}

.product-card[data-style="stout"] .gauge-bar-fill {
  background: var(--accent-stout);
}

.product-card[data-style="imperial"] .gauge-bar-fill {
  background: var(--accent-imperial);
}

.product-card[data-style="grape"] .gauge-bar-fill,
.product-card[data-style="grape_750"] .gauge-bar-fill {
  background: var(--accent-grape);
}

.product-card[data-style="hefeweizen"] .gauge-bar-fill {
  background: var(--accent-hefe);
}

.product-card[data-style="doppelbock"] .gauge-bar-fill {
  background: var(--accent-bock);
}

/* Product Card Actions */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-val {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--text-main);
  line-height: 1;
}

.price-unit {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.btn-add-cart {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--accent-primary);
  color: #000;
  border-color: var(--accent-primary);
}

/* ==========================================================================
   INTERACTIVE BEER FINDER / FILTER SECTION
   ========================================================================== */
.finder-card {
  padding: 48px;
  background: radial-gradient(circle at top right, #241d15 0%, #0d0b09 100%);
  border: 1px solid rgba(229, 169, 60, 0.2);
  position: relative;
  overflow: hidden;
}

.finder-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: #28231c;
  border-radius: 4px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(229, 169, 60, 0.5);
  transition: transform 0.2s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.finder-result {
  margin-top: 36px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 24px;
}

.finder-result-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.finder-result-info h4 {
  font-size: 1.6rem;
  color: var(--accent-primary);
}

.finder-result-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   CRAFT PHILOSOPHY / ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.about-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ==========================================================================
   SOMMELIER IA CHAT WIDGET
   ========================================================================== */
.sommelier-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #b88022 100%);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(229, 169, 60, 0.4);
  z-index: 9999;
  border: none;
  transition: transform 0.3s ease;
}

.sommelier-trigger:hover {
  transform: scale(1.1) rotate(5deg);
}

.sommelier-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

.sommelier-widget {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 130px);
  background: var(--bg-card);
  border: 1px solid rgba(229, 169, 60, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition-normal);
}

.sommelier-widget.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sommelier-header {
  background: linear-gradient(135deg, #1f1a14 0%, #12100d 100%);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sommelier-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sommelier-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.sommelier-info h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1;
}

.sommelier-info span {
  font-size: 0.75rem;
  color: #25d366;
  font-weight: 600;
}

.close-sommelier-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.sommelier-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0a0908;
}

.msg-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.msg-bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: var(--accent-primary);
  color: #000;
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.sommelier-quick-tags {
  padding: 10px 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.quick-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.quick-tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.sommelier-input-wrap {
  padding: 12px 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.sommelier-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.btn-send-msg {
  background: var(--accent-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   FLOATING CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  font-size: 1.8rem;
  color: var(--text-main);
}

.close-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-msg {
  text-align: center;
  color: var(--text-dim);
  margin: auto 0;
  font-size: 1.05rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.cart-item-img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--accent-primary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent-primary);
  color: #000;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-dark);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cart-total-price {
  color: var(--accent-primary);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
}

.btn-whatsapp-checkout {
  width: 100%;
  background: #25d366;
  color: #000;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-whatsapp-checkout:hover {
  background: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   FOOTER & LEGAL WARNING
   ========================================================================== */
.footer {
  background: #040303;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

.legal-warning-bar {
  background: #110e0c;
  border-top: 1px solid rgba(229, 169, 60, 0.2);
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Sold Out / Agotado Styles */
.badge-soldout {
  background: rgba(229, 57, 53, 0.25) !important;
  color: #ff5252 !important;
  border: 1px solid #ff5252 !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.btn-sold-out,
.btn-add-cart:disabled {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #888888 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none !important;
}

.product-card.sold-out-card {
  opacity: 0.75;
}

/* ==========================================================================
   MEDALS & AWARDS CAROUSEL SECTION
   ========================================================================== */
.awards-section {
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.95) 0%, rgba(20, 16, 12, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.carousel-track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  opacity: 0.4;
  transition: opacity 0.45s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.award-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(22, 18, 14, 0.85);
  border: 1px solid rgba(229, 169, 60, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.award-badge-top {
  position: absolute;
  top: -14px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.gold-medal-badge {
  background: linear-gradient(135deg, #e5a93c 0%, #ffc107 50%, #b8860b 100%);
  color: #000;
}

.silver-medal-badge {
  background: linear-gradient(135deg, #cfd8dc 0%, #eceff1 50%, #90a4ae 100%);
  color: #000;
}

.award-img-wrap {
  width: 100%;
  max-width: 420px;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  margin: 16px 0 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.gold-frame {
  border: 3px solid #e5a93c;
  box-shadow: 0 0 25px rgba(229, 169, 60, 0.35);
}

.silver-frame {
  border: 3px solid #b0bec5;
  box-shadow: 0 0 25px rgba(176, 190, 197, 0.35);
}

.award-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.award-card:hover .award-img {
  transform: scale(1.03);
}

.award-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.award-title {
  font-size: 1.4rem;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 2px;
}

.award-beer {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.award-category {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.award-date {
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-top: 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 14, 11, 0.9);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--accent-primary);
  color: #000;
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.5);
}

.prev-btn { left: -24px; }
.next-btn { right: -24px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--accent-primary);
  width: 28px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .carousel-container { max-width: 100%; }
  .prev-btn { left: -6px; width: 40px; height: 40px; }
  .next-btn { right: -6px; width: 40px; height: 40px; }
  .award-img-wrap { height: 380px; }
  .award-card { padding: 20px 14px; }
  .award-title { font-size: 1.15rem; }
  .award-beer { font-size: 1.05rem; }
}


