/* ==========================================================================
   MEAT DELI - ULTRA LUXURY B2B DESIGN SYSTEM (DYNAMIC ANIMATED BACKGROUND)
   ========================================================================== */

:root {
  /* Ultra-Luxury Obsidian & Crimson Palette */
  --md-obsidian: #050507;
  --md-charcoal: #0a0a0e;
  --md-surface-1: #101016;
  --md-surface-2: #161620;
  --md-surface-glass: rgba(14, 14, 20, 0.72);
  
  --md-red: #c72429;
  --md-red-hover: #a1161b;
  --md-red-dark: #6e0c10;
  --md-red-glow: rgba(199, 36, 41, 0.4);
  --md-red-subtle: rgba(199, 36, 41, 0.12);
  
  --frost-cyan: #38bdf8;
  --frost-ice: #e0f2fe;
  --frost-glow: rgba(56, 189, 248, 0.35);
  
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(199, 36, 41, 0.5);
  --border-glass: rgba(255, 255, 255, 0.12);
  
  /* Mouse spotlight variables (updated via JS) */
  --mouse-x: 50vw;
  --mouse-y: 50vh;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows & Lighting */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-luxury: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(199, 36, 41, 0.15);
  --shadow-neon-red: 0 0 25px rgba(199, 36, 41, 0.45);
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--md-obsidian);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

::selection {
  background: var(--md-red);
  color: #ffffff;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   DYNAMIC LIVING BACKGROUND SYSTEM (AURORA ORBS + INTERACTIVE SPOTLIGHT)
   ========================================================================== */
.global-animated-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Dynamic Cursor-Following Spotlight */
.bg-cursor-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px circle at var(--mouse-x) var(--mouse-y),
    rgba(199, 36, 41, 0.07) 0%,
    rgba(56, 189, 248, 0.04) 35%,
    rgba(0, 0, 0, 0) 70%
  );
  transition: opacity 0.4s ease;
  will-change: background;
}

/* Floating Cryo & Crimson Aurora Glow Orbs */
.bg-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  mix-blend-mode: screen;
  will-change: transform;
}

.aurora-orb-1 {
  top: -10%;
  left: 15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(199, 36, 41, 0.35) 0%, rgba(110, 12, 16, 0.15) 50%, transparent 70%);
  animation: orbDrift1 18s infinite alternate ease-in-out;
}

.aurora-orb-2 {
  top: 40%;
  right: -5%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(2, 132, 199, 0.1) 50%, transparent 70%);
  animation: orbDrift2 22s infinite alternate-reverse ease-in-out;
}

.aurora-orb-3 {
  bottom: 5%;
  left: 5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(199, 36, 41, 0.25) 0%, rgba(56, 189, 248, 0.12) 40%, transparent 70%);
  animation: orbDrift3 26s infinite alternate ease-in-out;
}

.aurora-orb-4 {
  top: 75%;
  right: 25%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(199, 36, 41, 0.15) 50%, transparent 70%);
  animation: orbDrift1 20s infinite alternate-reverse ease-in-out;
}

@keyframes orbDrift1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.15); }
  100% { transform: translate(-40px, 40px) scale(0.95); }
}

@keyframes orbDrift2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, -60px) scale(1.2); }
  100% { transform: translate(50px, -30px) scale(0.9); }
}

@keyframes orbDrift3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -70px) scale(1.1); }
  100% { transform: translate(-60px, 50px) scale(0.92); }
}

/* Subtle Material Micro-Noise Texture */
.bg-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

/* Make sure all page content sits cleanly above the animated background */
.b2b-top-bar,
.main-header,
.min-order-tracker,
.parallax-hero-section,
.catalog-controls,
.products-section,
.b2b-guarantee-bar,
.main-footer,
.cart-drawer,
.modal-overlay {
  position: relative;
  z-index: 10;
}

/* Top Notification Bar */
.b2b-top-bar {
  background: rgba(3, 3, 4, 0.95);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.03em;
}

.b2b-top-bar .highlights {
  display: flex;
  gap: 20px;
  align-items: center;
}

.b2b-top-bar .highlight-badge {
  background: var(--md-red-subtle);
  color: #ff8e92;
  border: 1px solid rgba(199, 36, 41, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-xs);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.b2b-top-bar .contact-info {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
}

/* Main Luxury Header */
.main-header {
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img-wrapper {
  transform: scale(1.08) rotate(-2deg);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-typography {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.06em;
  display: flex;
  gap: 4px;
}

.logo-meat {
  color: #ffffff;
}

.logo-deli {
  color: var(--md-red);
  text-shadow: 0 0 15px rgba(199, 36, 41, 0.5);
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ==========================================================================
   SUB-BARRA DE BÚSQUEDA DEDICADA (DEBAJO DEL MENÚ)
   ========================================================================== */
.search-sub-bar {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 24px;
  position: sticky;
  top: 73px;
  z-index: 48;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.search-sub-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.search-wrapper-prominent {
  flex: 1;
  max-width: 680px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  color: #ffffff;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--md-red);
  box-shadow: 0 0 0 3px rgba(199, 36, 41, 0.25), 0 0 25px rgba(199, 36, 41, 0.35);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 1.05rem;
}

.search-kbd {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 700;
  pointer-events: none;
}

/* ==========================================================================
   BOTONES DE SUGERENCIAS FLOTANTES Y TRANSPARENTES
   ========================================================================== */
.search-quick-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-tag-label {
  font-size: 0.76rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
}

.search-tag-chip {
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f1f5f9;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  animation: floatChip 3.6s ease-in-out infinite alternate;
}

.search-tag-chip:nth-child(2) { animation-delay: 0s; }
.search-tag-chip:nth-child(3) { animation-delay: 0.6s; }
.search-tag-chip:nth-child(4) { animation-delay: 1.2s; }
.search-tag-chip:nth-child(5) { animation-delay: 1.8s; }

.search-tag-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #F5C842;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3), 0 0 12px rgba(245, 200, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-tag-chip:active {
  transform: translateY(-1px) scale(0.98) !important;
}

@keyframes floatChip {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(1px);
  }
}

@media (max-width: 900px) {
  .search-sub-bar {
    top: 60px;
    padding: 8px 16px;
  }
  .search-sub-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .search-wrapper-prominent {
    max-width: 100%;
  }
  .search-quick-tags {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .search-quick-tags::-webkit-scrollbar {
    display: none;
  }
}

/* Hero Trust Metrics Bar */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  width: fit-content;
}

.metric-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.metric-star {
  color: #f59e0b;
  font-weight: 800;
}

.metric-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.invoice-badge-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-fast);
}

.invoice-badge-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.cart-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--md-red);
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-neon-red);
  transition: var(--transition-fast);
}

.cart-toggle-btn:hover {
  background: var(--md-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(199, 36, 41, 0.6);
}

.cart-badge-count {
  background: #ffffff;
  color: var(--md-black);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 2px 8px;
}

/* Minimum Order Global Progress Tracker */
.min-order-tracker {
  background: rgba(8, 8, 10, 0.9);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 24px;
}

.tracker-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tracker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}

.tracker-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.tracker-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d97706 0%, #16a34a 100%);
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
}

.tracker-status {
  font-size: 0.825rem;
  font-weight: 800;
  white-space: nowrap;
}

.tracker-status.pending {
  color: #fbbf24;
}

.tracker-status.completed {
  color: #F5C842;
}

/* ==========================================================================
   HYPER-FLUID CANVAS SEQUENCE HERO
   ========================================================================== */
.parallax-hero-section {
  position: relative;
  width: 100%;
  height: 195vh;
  background: transparent;
}

.parallax-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #040406;
}

.cooler-canvas-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.viewport-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 4, 6, 0) 0%, rgba(4, 4, 6, 0.55) 75%, rgba(4, 4, 6, 0.92) 100%),
              linear-gradient(180deg, rgba(4, 4, 6, 0.75) 0%, rgba(4, 4, 6, 0) 25%, rgba(4, 4, 6, 0.85) 100%);
  pointer-events: none;
  z-index: 3;
}

.frost-lens-flare {
  position: absolute;
  top: 18%;
  right: 22%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(199, 36, 41, 0.08) 45%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 4;
}

/* Parallax Overlay UI Content */
.parallax-overlay-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  max-width: 1360px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.parallax-title-card {
  max-width: 580px;
  background: rgba(10, 10, 14, 0.84);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-luxury);
  pointer-events: auto;
  transform-origin: left top;
}

.hero-luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 16px;
}

.hero-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--md-red);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px var(--md-red);
}

.hero-luxury-title {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #ffffff;
}

.hero-luxury-title .text-red {
  color: var(--md-red);
  text-shadow: 0 0 35px rgba(199, 36, 41, 0.6);
}

.hero-luxury-subtitle {
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-hero-primary {
  background: var(--md-red);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-neon-red);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn-hero-primary:hover {
  background: var(--md-red-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Digital Cryo Sensor Top Right */
.cooler-digital-gauge {
  position: absolute;
  top: 36px;
  right: 36px;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  pointer-events: auto;
}

.gauge-header {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.gauge-dot {
  width: 6px;
  height: 6px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 8px #38bdf8;
}

.gauge-temp-val {
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.gauge-temp-val small {
  font-size: 0.7rem;
  color: #34d399;
  font-family: var(--font-sans);
}

/* Fast Scrubber Bar */
.sequence-scrubber-bar {
  align-self: center;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.scroll-mouse-icon {
  width: 18px;
  height: 28px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--md-red);
  border-radius: 2px;
  animation: scrollWheelAnim 1.2s infinite;
}

@keyframes scrollWheelAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.scrub-steps {
  display: flex;
  gap: 8px;
}

.scrub-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.scrub-dot.active {
  background: var(--md-red);
  border-color: var(--md-red);
  transform: scale(1.18);
  box-shadow: 0 0 14px var(--md-red);
}

.scrub-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   CATEGORY CONTROLS & LUXURY CATALOG SECTION
   ========================================================================== */
.catalog-controls {
  max-width: 1360px;
  margin: 48px auto 26px auto;
  padding: 0 24px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.tab-btn {
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.tab-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
}

.tab-btn.active {
  background: #C72429;
  color: #ffffff;
  border-color: #C72429;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(199, 36, 41, 0.35);
}

/* ==========================================================================
   PRODUCTS GRID & LUXURY MINIMALIST GOURMET CARDS
   ========================================================================== */
.products-section {
  max-width: 1360px;
  margin: 0 auto 80px auto;
  padding: 0 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

/* Product Card - Dark Luxury Minimalist Gourmet */
.product-card {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 36, 41, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(199, 36, 41, 0.2);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 270px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0f172a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-left: 3px solid var(--md-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-sku {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f5f9;
  color: #475569;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: monospace;
  border: 1px solid #cbd5e1;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-presentation-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: #C72429;
  letter-spacing: 0.03em;
}

.product-temp-tag {
  font-size: 0.7rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.product-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  margin-bottom: 18px;
  line-height: 1.5;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  position: relative;
}

.product-desc:hover {
  color: #e2e8f0;
}

.product-desc.expanded {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  color: #ffffff;
}

.desc-toggle-btn {
  color: var(--md-red);
  font-weight: 800;
  font-size: 0.78rem;
  margin-left: 4px;
  cursor: pointer;
}

.desc-toggle-btn:hover {
  text-decoration: underline;
}

/* Pricing Box */
.product-pricing-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price-neto-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.price-main {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.neto-badge {
  font-size: 0.72rem;
  color: #C72429;
  font-weight: 800;
}

.price-unit-ref {
  font-size: 0.74rem;
  color: #94a3b8;
  display: block;
  margin-top: 1px;
}

.price-right-badge {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.margin-chip-pill {
  background: rgba(212, 175, 55, 0.15);
  color: #F5C842;
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

.margin-sub {
  font-size: 0.68rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Unit Quantity Picker */
.unit-picker-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.unit-picker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.unit-picker-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
}

.unit-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stepper-btn {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stepper-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.unit-input-field {
  width: 50px;
  height: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  outline: none;
}

.unit-input-field:focus {
  border-color: var(--md-red);
}

.unit-quick-chips {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: rgba(199, 36, 41, 0.2);
  border-color: rgba(199, 36, 41, 0.5);
  color: #ffffff;
}

/* Action Buttons */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-add-cart {
  background: var(--md-red);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(199, 36, 41, 0.35);
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  background: var(--md-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(199, 36, 41, 0.5);
}

.btn-view-spec {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view-spec:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-add-cart:hover {
  background: var(--md-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 36, 41, 0.5);
}

.btn-view-spec {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-view-spec:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #C72429;
  transform: translateY(-1px);
}

/* ==========================================================================
   SLIDE-OVER CART DRAWER & CHECKOUT
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: rgba(12, 12, 16, 0.95);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-glass);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
  z-index: 61;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 6, 8, 0.9);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.cart-min-warning {
  padding: 12px 24px;
  background: rgba(217, 119, 6, 0.15);
  border-bottom: 1px solid rgba(217, 119, 6, 0.3);
  font-size: 0.84rem;
  color: #fde68a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-min-warning.satisfied {
  background: rgba(22, 163, 74, 0.15);
  border-bottom-color: rgba(22, 163, 74, 0.3);
  color: #86efac;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #181820;
}

.cart-item-info h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.cart-item-pres {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: #ffffff;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.qty-number {
  font-size: 0.88rem;
  font-weight: 800;
  min-width: 32px;
  text-align: center;
  color: #ffffff;
}

.cart-footer {
  padding: 24px;
  background: rgba(6, 6, 8, 0.95);
  border-top: 1px solid var(--border-light);
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.btn-proceed-checkout {
  width: 100%;
  background: var(--md-red);
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-neon-red);
  transition: var(--transition-fast);
}

.btn-proceed-checkout:disabled {
  background: #27272a;
  color: var(--text-dim);
  box-shadow: none;
  cursor: not-allowed;
}

.btn-proceed-checkout:not(:disabled):hover {
  background: var(--md-red-hover);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.modal-container {
  background: rgba(12, 12, 18, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 6, 8, 0.9);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.modal-body {
  padding: 28px;
  font-size: 0.95rem;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-control {
  padding: 11px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: #ffffff;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--md-red);
  box-shadow: 0 0 0 3px var(--md-red-subtle);
  background: rgba(255, 255, 255, 0.08);
}

.proforma-preview {
  background: #040406;
  border: 1px dashed var(--border-light);
  padding: 18px;
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 0.8rem;
  color: #cbd5e1;
  white-space: pre-wrap;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 20px;
}

/* Trust Badges */
.b2b-guarantee-bar {
  background: rgba(8, 8, 11, 0.8);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 24px;
}

.guarantee-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.guarantee-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.guarantee-icon {
  background: var(--md-red-subtle);
  color: var(--md-red);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(199, 36, 41, 0.3);
}

.guarantee-info h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.guarantee-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Footer */
.main-footer {
  background: #020203;
  color: var(--text-muted);
  padding: 60px 24px 30px 24px;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
  .parallax-hero-section {
    height: 180vh;
  }
  .parallax-overlay-content {
    padding: 20px;
  }
  .parallax-title-card {
    max-width: 480px;
    padding: 24px 28px;
  }
  .hero-luxury-title {
    font-size: 2.3rem;
  }
  .cooler-digital-gauge {
    top: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  .guarantee-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .parallax-hero-section {
    height: 160vh;
  }
  .b2b-top-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .parallax-title-card {
    max-width: 100%;
    padding: 20px;
  }
  .hero-luxury-title {
    font-size: 1.9rem;
  }
  .cooler-digital-gauge {
    display: none;
  }
  .sequence-scrubber-bar {
    width: 90%;
    justify-content: space-between;
    padding: 8px 16px;
  }
  .guarantee-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   PROMOTIONAL SANTIAGO BANNER & 10% DISCOUNT
   ========================================================================== */
.santiago-promo-banner {
  background: linear-gradient(90deg, rgba(199, 36, 41, 0.25) 0%, rgba(6, 6, 8, 0.95) 50%, rgba(37, 211, 102, 0.2) 100%);
  border-top: 1px solid rgba(199, 36, 41, 0.4);
  border-bottom: 1px solid rgba(74, 222, 128, 0.3);
  padding: 10px 24px;
}

.promo-banner-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.promo-badge-tag {
  background: rgba(199, 36, 41, 0.2);
  color: #f87171;
  border: 1px solid rgba(199, 36, 41, 0.4);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.promo-badge-tag.discount {
  background: rgba(74, 222, 128, 0.2);
  color: #F5C842;
  border-color: rgba(74, 222, 128, 0.4);
}

/* ==========================================================================
   CART DRAWER DISCOUNT TRACKER BOX
   ========================================================================== */
.cart-discount-box {
  margin: 10px 16px 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  line-height: 1.45;
  transition: var(--transition-fast);
}

.cart-discount-box.pending {
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: #fb923c;
}

.cart-discount-box.active {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #F5C842;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (+56920322226) - ALWAYS VISIBLE EVERYWHERE
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  width: 64px !important;
  height: 64px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.75), 0 0 0 0 rgba(37, 211, 102, 0.4) !important;
  z-index: 2147483647 !important; /* Max 32-bit int z-index */
  text-decoration: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
  animation: whatsappPulse 2.5s infinite !important;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(6, 6, 8, 0.92);
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* ==========================================================================
   HERO DYNAMIC 3D RED TYPOGRAPHY MESSAGES (ZOOM APPROACH EFFECT)
   ========================================================================== */
.hero-3d-text-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9;
  overflow: hidden;
}

.hero-3d-msg {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 5px);
  text-align: center;
  width: 92%;
  max-width: 1100px;
  line-height: 1.08;
  opacity: 0;
  transform: scale(0.3) translateZ(0);
  will-change: transform, opacity;
  color: #C72429;
  text-shadow: 0 3px 0 #3b0305, 0 6px 25px rgba(0, 0, 0, 0.95), 0 0 40px rgba(199, 36, 41, 0.3);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #C72429;
  filter: none;
}

/* ==========================================================================
   RESPONSIVE & MOBILE OPTIMIZATIONS (PERFECT SMARTPHONE & TABLET UX)
   ========================================================================== */

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 16px;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .header-actions::-webkit-scrollbar {
    display: none;
  }

  .search-box-container {
    max-width: 100%;
    flex: 1;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .santiago-promo-banner {
    padding: 8px 14px;
  }

  .promo-banner-container {
    justify-content: center;
    gap: 8px 16px;
  }

  .promo-item {
    font-size: 0.78rem;
  }

  .min-order-tracker {
    padding: 8px 14px;
  }

  .tracker-container {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .tracker-status {
    text-align: center;
    font-size: 0.76rem;
  }

  .hero-luxury-title {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem);
  }

  .hero-luxury-subtitle {
    font-size: 0.9rem;
  }

  .hero-3d-msg {
    font-size: clamp(1.3rem, 6.5vw, 3.0rem) !important;
    width: 95% !important;
    letter-spacing: 0.5px !important;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .product-image-container {
    height: 220px !important;
  }

  .product-body {
    padding: 18px !important;
  }

  .product-title {
    font-size: 1.1rem !important;
  }

  .stepper-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }

  .unit-input-field {
    height: 38px !important;
    font-size: 1rem !important;
  }

  .chip-btn {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
  }

  .btn-add-cart {
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
  }

  .guarantee-container {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .guarantee-card {
    padding: 16px !important;
  }

  .chilean-testimonials-section {
    padding: 40px 16px !important;
  }

  .testimonials-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .testimonial-card-item {
    padding: 20px !important;
  }

  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
  }

  .modal-container {
    width: 94% !important;
    max-height: 90vh !important;
    padding: 16px !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .whatsapp-float-btn {
    width: 56px !important;
    height: 56px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  .whatsapp-float-icon {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 480px) {
  .brand-logo img {
    height: 36px !important;
  }

  .brand-text h1 {
    font-size: 1.05rem !important;
  }

  .invoice-badge-btn {
    padding: 6px 10px !important;
    font-size: 0.72rem !important;
  }

  .cart-toggle-btn {
    padding: 8px 12px !important;
    font-size: 0.78rem !important;
  }

  .hero-3d-msg {
    font-size: clamp(1.2rem, 6.2vw, 2.4rem) !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 2px 0 #3b0305, 0 4px 16px rgba(0,0,0,0.95) !important;
  }
}

/* ==========================================================================
   MODAL: SELECTOR TIPO DE CLIENTE (EMPRESA / PARTICULAR)
   ========================================================================== */
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.client-type-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px 20px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1);
  text-align: center;
  color: #ffffff;
  animation: slideUpFadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.client-type-card:hover {
  background: rgba(199,36,41,0.12);
  border-color: rgba(199,36,41,0.6);
  transform: translateY(-5px);
}
.client-type-card.particular:hover {
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.5);
}
.client-type-card:nth-child(2) { animation-delay: 0.08s; }

/* Mobile: stack vertically */
@media (max-width: 500px) {
  #modal-client-type-overlay > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
  .client-type-card {
    padding: 22px 16px;
  }
  #group-metodoPago-particular > div {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   SELECTOR MÉTODO DE PAGO (PARTICULAR)
   ========================================================================== */
.payment-method-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}
.payment-method-card.active {
  background: rgba(212, 175, 55, 0.14) !important;
  border-color: #F5C842 !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   BOTÓN Y ECUALIZADOR DE MÚSICA AMBIENTAL BOUTIQUE
   ========================================================================== */
.music-anim-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
  width: 14px;
}

.music-anim-equalizer .eq-bar {
  width: 3px;
  background: #F5C842;
  border-radius: 2px;
  display: block;
}

.music-playing .music-anim-equalizer .bar-1 {
  animation: eqBounce1 0.8s ease-in-out infinite alternate;
}
.music-playing .music-anim-equalizer .bar-2 {
  animation: eqBounce2 0.6s ease-in-out infinite alternate 0.2s;
}
.music-playing .music-anim-equalizer .bar-3 {
  animation: eqBounce3 0.9s ease-in-out infinite alternate 0.4s;
}

.music-muted .music-anim-equalizer .eq-bar {
  height: 3px !important;
  opacity: 0.5;
  animation: none !important;
}

@keyframes eqBounce1 {
  0%   { height: 3px; }
  100% { height: 14px; }
}
@keyframes eqBounce2 {
  0%   { height: 5px; }
  100% { height: 12px; }
}
@keyframes eqBounce3 {
  0%   { height: 4px; }
  100% { height: 13px; }
}

/* ==========================================================================
   IMAGE AUTO-SLIDER (INFINITE SCROLL) & LIGHTBOX FOR SPEC MODAL
   ========================================================================== */
@keyframes autoScrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.spec-slider-wrapper {
  margin: 18px 0 22px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  position: relative;
  overflow: hidden;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.infinite-scroll-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: autoScrollSlider 22s linear infinite;
}

.infinite-scroll-track:hover {
  animation-play-state: paused;
}

.spec-image-card {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, filter 0.3s ease;
}

.spec-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spec-image-card:hover {
  transform: scale(1.08) translateY(-3px);
  border-color: var(--md-red);
  filter: brightness(1.15);
  box-shadow: 0 12px 30px rgba(199, 36, 41, 0.4);
}

.spec-image-card-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.spec-image-card:hover .spec-image-card-zoom-hint {
  opacity: 1;
}

/* Lightbox Modal Animation */
#modal-lightbox-overlay.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#lightbox-img {
  animation: lightboxZoomIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   BLOG GASTRONÓMICO & GUÍAS B2B (MINIMALISMO GOURMET)
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 36, 41, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(199, 36, 41, 0.2);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000000;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.08);
}

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #F5C842;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.blog-card-summary {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-read-link {
  font-size: 0.84rem;
  font-weight: 800;
  color: #C72429;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover .blog-read-link {
  color: #ff4d4f;
  transform: translateX(4px);
}

.blog-article-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 24px 0 10px 0;
  font-family: var(--font-sans);
}

.blog-article-content p {
  margin-bottom: 16px;
}

.blog-article-content ul, .blog-article-content ol {
  margin: 16px 0 20px 24px;
  padding: 0;
}

.blog-article-content li {
  margin-bottom: 10px;
}

.blog-article-content blockquote {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #D4AF37;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 24px 0;
  color: #fef08a;
  font-size: 0.95rem;
}

/* ==========================================================================
   OPTIMIZACIÓN MÓVIL TOTAL (MOBILE-FIRST GOURMET)
   ========================================================================== */

/* Barra Inferior Fija de Navegación Tipo App Móvil */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(8, 8, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 990;
  padding: 0 8px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.7);
}

.mobile-bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: none;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav-item.active,
.mobile-nav-item:active {
  color: #ffffff;
}

.mobile-nav-item svg,
.mobile-nav-item .nav-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: #C72429;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 999px;
  min-width: 16px;
  text-align: center;
  border: 1px solid #000;
}

/* Reglas Responsive para Tablets y Celulares (< 768px) */
@media (max-width: 768px) {
  /* Mostrar Barra Inferior */
  .mobile-bottom-nav {
    display: block;
  }

  /* Padding extra en body para que el footer no quede tapado por la barra inferior */
  body {
    padding-bottom: 70px;
  }

  /* WhatsApp Flotante reposicionado sobre la barra inferior */
  .whatsapp-float-btn {
    bottom: 76px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
  }

  /* Header Móvil Ultra Despejado */
  .header-container {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand-logo-text .logo-subtitle {
    display: none;
  }

  .logo-typography {
    font-size: 1.25rem;
  }

  .brand-logo-img-wrapper {
    width: 38px;
    height: 38px;
  }

  /* Ocultar botones no esenciales del header superior en móvil (se mueven a la barra inferior) */
  #btn-music-toggle,
  #btn-order-history,
  #btn-download-pdf-catalog,
  .header-actions a[href*="instagram.com"] {
    display: none !important;
  }

  .header-actions {
    gap: 8px;
  }

  .client-mode-badge-btn {
    padding: 5px 8px;
    font-size: 0.75rem;
  }

  /* Sub-Barra de Búsqueda Móvil */
  .search-sub-bar {
    top: 59px;
    padding: 8px 14px;
  }

  .search-quick-tags {
    display: none;
  }

  .search-input {
    font-size: 0.88rem;
    padding: 10px 14px 10px 38px;
  }

  /* Hero Parallax Móvil: Altura compacta y directa */
  .parallax-hero-section {
    height: auto !important;
    min-height: auto;
    padding: 40px 16px 30px 16px;
  }

  .parallax-title-card {
    max-width: 100%;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .hero-luxury-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .hero-subtitle-b2b {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .hero-b2b-action-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-b2b-action-row button,
  .hero-b2b-action-row a {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 18px;
  }

  .cooler-digital-gauge {
    position: static;
    margin-top: 16px;
    display: inline-flex;
  }

  /* Tarjetas de Producto en Móvil: Espaciados generosos y legibles */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 14px !important;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-image-container {
    height: 240px !important;
  }

  .product-card-body {
    padding: 18px 16px;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-price-primary {
    font-size: 1.5rem;
  }

  .product-qty-stepper {
    height: 44px;
  }

  .btn-stepper {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .btn-add-cart-main {
    height: 46px;
    font-size: 0.92rem;
  }

  /* Carrito Lateral: 100% de Ancho en Celular */
  .cart-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .cart-footer {
    padding-bottom: 24px;
  }

  /* Modales en Móvil */
  .modal-container {
    width: 95% !important;
    max-height: 90vh !important;
    border-radius: 18px !important;
  }

  .modal-body {
    padding: 16px !important;
  }

  .spec-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .spec-gallery-slider {
    height: 250px !important;
  }

  /* Blog & Testimonios en Móvil */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .blog-card-img-wrap {
    height: 180px;
  }

  /* Footer en Móvil */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* Pantallas Extra Pequeñas (< 400px) */
@media (max-width: 400px) {
  .hero-luxury-title {
    font-size: 1.45rem;
  }
  .product-image-container {
    height: 200px !important;
  }
  .logo-typography {
    font-size: 1.1rem;
  }
}




