/* ==========================================================================
   LICORES COSTA / LÍNEA EXCLUSIVA (COLECCIÓN PRIVADA)
   Tipografías: Tan Pearl (Display), Cormorant SC (Titulares), Lato (Cuerpo)
   ========================================================================== */

body.theme-exclusiva {
  background-color: #0d0f0e;
  color: var(--excl-text-bone);
  font-family: var(--font-excl-body);
}

/* --------------------------------------------------------------------------
   1. NAVEGACIÓN PRINCIPAL
   -------------------------------------------------------------------------- */
.excl-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 15, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 79, 0.25);
}

.excl-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-excl-heading);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 300;
  color: var(--excl-gold);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: var(--space-md);
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-back-arrow:hover {
  color: var(--excl-text-bone);
  transform: translateX(-4px);
}

.brand-excl-logo img {
  height: 100px;
  width: auto;
}

.excl-nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.excl-nav-menu > li > a {
  font-family: var(--font-excl-heading);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
}

.excl-nav-menu > li > a:hover {
  color: var(--excl-gold);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-chevron {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--excl-gold);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(18, 20, 19, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(196, 168, 79, 0.3);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-card);
  padding: 0.6rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  padding: 0.65rem 1.2rem;
  display: block;
  transition: all 0.25s ease;
}

.dropdown-menu li a:hover {
  background: rgba(196, 168, 79, 0.12);
  color: var(--excl-gold);
  padding-left: 1.4rem;
}

.excl-nav-menu > li > a.btn-excl-gold-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1.6rem !important;
  line-height: 1 !important;
  background: rgba(196, 168, 79, 0.12);
  border: 1px solid var(--excl-gold);
  color: var(--excl-gold) !important;
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs) !important;
  letter-spacing: var(--ls-wider) !important;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.excl-nav-menu > li > a.btn-excl-gold-nav:hover {
  background: var(--excl-gold);
  color: #0C0C0C !important;
  box-shadow: var(--shadow-glow-gold);
}

/* --------------------------------------------------------------------------
   2. HERO EXCLUSIVO
   -------------------------------------------------------------------------- */
.hero-exclusiva {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 150px 0 90px 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(196, 168, 79, 0.14) 0%, rgba(13, 15, 14, 0.98) 75%),
    linear-gradient(180deg, #0d0f0e 0%, #131615 100%);
  border-bottom: 1px solid rgba(196, 168, 79, 0.2);
  text-align: center;
}

.hero-excl-inner {
  max-width: 880px;
  margin: 0 auto;
}

.eyebrow-excl {
  font-family: var(--font-excl-heading);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--excl-gold);
  margin-bottom: var(--space-xs);
  font-weight: var(--fw-semibold);
}

.hero-exclusiva h1 {
  font-family: var(--font-excl-display);
  font-size: var(--text-hero);
  line-height: var(--lh-tight);
  color: var(--excl-text-bone);
  margin-bottom: var(--space-md);
  text-transform: capitalize;
}

.hero-exclusiva p.excl-lead {
  font-family: var(--font-excl-body);
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
  color: rgba(245, 240, 232, 0.85);
  max-width: 720px;
  margin: 0 auto var(--space-lg) auto;
  font-weight: var(--fw-light);
}

.hero-excl-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-excl-gold {
  padding: 0.95rem 2.2rem;
  background: rgba(196, 168, 79, 0.15);
  border: 1px solid var(--excl-gold);
  color: var(--excl-gold);
  font-family: var(--font-excl-heading);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: all 0.35s ease;
}

.btn-excl-gold:hover {
  background: var(--excl-gold);
  color: #0C0C0C;
  box-shadow: var(--shadow-glow-gold);
}

.btn-excl-ghost {
  padding: 0.95rem 2.2rem;
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--excl-text-bone);
  font-family: var(--font-excl-heading);
  font-size: var(--text-sm);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: all 0.35s ease;
}

.btn-excl-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--excl-text-bone);
}

/* --------------------------------------------------------------------------
   3. CATÁLOGO Y BARRA FLOTANTE INTELIGENTE (SMART SUB-NAV)
   -------------------------------------------------------------------------- */
.catalog-tab-system-section {
  padding: var(--space-2xl) 0;
  position: relative;
  background: #0d0f0e;
}

.catalog-section-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Barra Flotante Oculta por defecto (Aparece fijada solo con JS al scrollear) */
.category-smart-subnav {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  z-index: 950;
  background: rgba(13, 15, 14, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 79, 0.25);
  padding: 0.75rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  
  /* Oculto inicialmente */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Clase activa que inyecta JavaScript */
.category-smart-subnav.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.smart-subnav-container {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.cat-tab-btn {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cat-tab-btn:hover {
  color: var(--excl-gold);
  border-color: rgba(196, 168, 79, 0.4);
  background: rgba(196, 168, 79, 0.1);
}

.cat-tab-btn.active {
  color: #0C0C0C;
  background: var(--excl-gold);
  border-color: var(--excl-gold);
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-glow-gold);
}

/* Paneles de Contenido con sus colores exactos de fondo */
.category-pane {
  display: none;
  opacity: 0;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-sm);
  animation: fadeInPane 0.4s var(--ease-smooth) forwards;
}

.category-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PALETA CROMÁTICA EXACTA POR CATEGORÍA */
.cat-theme-anis {
  background-color: var(--excl-bg-anis) !important; /* #19201D Verde Oscuro */
  border: 1px solid rgba(184, 190, 199, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.cat-theme-quebranto {
  background-color: var(--excl-bg-quebranto) !important; /* #191A20 Azul Noche */
  border: 1px solid rgba(184, 190, 199, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.cat-theme-ron {
  background-color: var(--excl-bg-ron) !important; /* #1F1A19 Tostado Cálido */
  border: 1px solid rgba(196, 168, 79, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.cat-theme-vinos-tranq {
  background-color: var(--excl-bg-vinos-tranq) !important; /* #20181A Borgoña Oscuro */
  border: 1px solid rgba(196, 168, 79, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.cat-theme-vinos-gas {
  background-color: var(--excl-bg-vinos-gas) !important; /* #1D201A Oliva Oscuro */
  border: 1px solid rgba(196, 168, 79, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.category-header {
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.category-title {
  font-family: var(--font-excl-heading);
  font-size: var(--text-2xl);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.cat-accent-gold .category-title { color: var(--excl-gold); }
.cat-accent-silver .category-title { color: var(--excl-silver); }

.category-badge-meta {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xs);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(245, 240, 232, 0.85);
}

/* Grid de Productos */
.products-excl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.product-card-excl {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s var(--ease-smooth);
}

.product-card-excl:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.75);
}

.cat-accent-gold .product-card-excl:hover {
  border-color: rgba(196, 168, 79, 0.5);
  box-shadow: 0 12px 30px rgba(196, 168, 79, 0.15);
}

.cat-accent-silver .product-card-excl:hover {
  border-color: rgba(184, 190, 199, 0.5);
  box-shadow: 0 12px 30px rgba(184, 190, 199, 0.15);
}

.product-bottle-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.product-bottle-visual .bottle-placeholder-text {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  text-align: center;
  padding: 0 1rem;
}

.product-cat-tag {
  font-family: var(--font-excl-heading);
  font-size: 0.72rem;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 0.3rem;
  display: block;
}

.product-card-excl h3.product-name {
  font-family: var(--font-excl-display);
  font-size: 1.4rem;
  line-height: var(--lh-snug);
  color: var(--excl-text-bone);
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-light);
}

.product-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
}

.product-tasting-badge {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.cat-accent-gold .product-tasting-badge { color: var(--excl-gold); }
.cat-accent-silver .product-tasting-badge { color: var(--excl-silver); }

/* --------------------------------------------------------------------------
   4. DÓNDE COMPRAR & CONTACTO CORREGIDOS
   -------------------------------------------------------------------------- */

/* Estilos tipográficos y visuales de Puntos de Venta para Línea Exclusiva */
.excl-locator-section .store-locator-box {
  background: rgba(18, 22, 20, 0.75);
  border: 1px solid rgba(196, 168, 79, 0.35);
  border-radius: var(--radius-xs);
  padding: var(--space-xl) var(--space-lg);
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.excl-locator-section .store-search-bar input {
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(196, 168, 79, 0.35);
  color: var(--excl-text-bone);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-xs);
}

.excl-locator-section .store-search-bar input:focus {
  outline: none;
  border-color: var(--excl-gold);
  background: rgba(0, 0, 0, 0.85);
}

.excl-locator-section .store-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(196, 168, 79, 0.2);
  border-radius: var(--radius-xs);
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.excl-locator-section .store-card:hover {
  border-color: var(--excl-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 168, 79, 0.15);
  background: rgba(0, 0, 0, 0.75);
}

/* Título con Cormorant SC */
.excl-locator-section .store-card h4 {
  font-family: var(--font-excl-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--excl-gold);
  margin-bottom: 0.4rem;
}

/* Dirección con Lato */
.excl-locator-section .store-card p {
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.75);
  font-weight: var(--fw-light);
  margin-bottom: var(--space-sm);
}

/* Insignia / Badge con Cormorant SC */
.excl-locator-section .store-badge {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  background: rgba(196, 168, 79, 0.12);
  border: 1px solid var(--excl-gold);
  color: var(--excl-gold);
  border-radius: var(--radius-xs);
  font-weight: var(--fw-bold);
}

.text-center-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto; /* Separación generosa entre el encabezado y el buscador/formulario */
}

.text-center-wrap .eyebrow-excl {
  display: block;
  margin-bottom: 0.8rem; /* Separación entre la etiqueta dorada y el título */
}

.section-heading-excl {
  font-family: var(--font-excl-heading);
  font-size: var(--text-2xl);
  color: var(--excl-gold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  line-height: var(--lh-tight);
  margin-bottom: 0.8rem;
}

.sub-lead-excl {
  color: rgba(245, 240, 232, 0.75);
  font-weight: var(--fw-light);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
}

.excl-locator-section {
  background: #0b0d0c;
  border-top: 1px solid rgba(196, 168, 79, 0.25);
  padding: 6.5rem 0; /* Relleno amplio arriba y abajo para que respire */
}

.excl-contact-section {
  background: #080a09;
  border-top: 1px solid rgba(196, 168, 79, 0.25);
  padding: 6.5rem 0; /* Relleno amplio arriba y abajo */
}

.excl-form-container {
  background: rgba(18, 22, 20, 0.85);
  border: 1px solid rgba(196, 168, 79, 0.35);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xs);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-field-group label {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--excl-gold);
  font-weight: var(--fw-bold);
}

.input-field-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(196, 168, 79, 0.35);
  color: var(--excl-text-bone);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
}

/* Personalización del Dropdown (Select) */
.input-field-group select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(0, 0, 0, 0.6);
  /* Flecha dorada SVG personalizada */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%23C4A84F'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 14px;
  border: 1px solid rgba(196, 168, 79, 0.35);
  color: var(--excl-text-bone);
  padding: 0.85rem 2.8rem 0.85rem 1rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  cursor: pointer;
}

.input-field-group input:focus,
.input-field-group select:focus {
  outline: none;
  border-color: var(--excl-gold);
  background-color: rgba(0, 0, 0, 0.85);
}

/* Opciones desplegadas con fondo oscuro de la línea */
.input-field-group select option {
  background-color: #121614;
  color: var(--excl-text-bone);
  padding: 0.8rem;
  font-family: var(--font-excl-body);
}

.submit-btn-excl {
  width: 100%;
  padding: 1rem;
  margin-top: var(--space-sm);
  cursor: pointer;
}

.confirm-msg-excl {
  display: none;
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid var(--excl-gold);
  background: rgba(196, 168, 79, 0.15);
  color: var(--excl-gold);
  text-align: center;
  font-family: var(--font-excl-heading);
}

/* --------------------------------------------------------------------------
   5. FOOTER EXCLUSIVA (EN 3 COLUMNAS Y SIN VIÑETAS)
   -------------------------------------------------------------------------- */
.excl-footer {
  background: #050605;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(196, 168, 79, 0.2);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-excl-brand .footer-logo-img {
  height: 150px;
  width: auto;
  margin-bottom: .1rem;
}

.footer-excl-brand p {
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
  color: rgba(245, 240, 232, 0.65);
  font-weight: var(--fw-light);
  max-width: 320px;
}

.footer-nav-col h4 {
  font-family: var(--font-excl-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--excl-gold);
  margin-bottom: 1.2rem;
  font-weight: var(--fw-bold);
}

.footer-nav-col ul {
  list-style: none; /* Elimina los puntos/viñetas */
  padding: 0;
  margin: 0;
}

.footer-nav-col li {
  margin-bottom: 0.6rem;
}

.footer-nav-col a {
  font-family: var(--font-excl-body);
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.7);
  font-weight: var(--fw-light);
  transition: color 0.3s ease;
}

.footer-nav-col a:hover {
  color: var(--excl-gold);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.45);
  font-family: var(--font-excl-body);
}

@media (max-width: 900px) {
  .category-smart-subnav {
    top: 86px;
    padding: 0.5rem 0;
  }
  .smart-subnav-container {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--space-sm);
    flex-wrap: nowrap;
  }
  .smart-subnav-container::-webkit-scrollbar {
    display: none;
  }
  .form-row-2, .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .excl-nav-menu {
    display: none;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Corrección de centrado y encuadre para Android / Móviles en Línea Exclusiva */
@media (max-width: 768px) {
  .catalog-tab-system-section .container {
    padding: 0 0.5rem;
  }

  .category-pane {
    padding: 1.5rem 0.8rem !important;
    width: 100%;
    box-sizing: border-box;
  }

  .products-excl-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 1.2rem;
  }

  .product-card-excl {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .category-header {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}