@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* ========================================
   BREADCRUMB - SEO (Oculto visualmente)
   ======================================== */
.breadcrumb {
  display: none;
}

/* ========================================
   ANIMACIONES GLOBALES
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* --- MENÚ LATERAL MODERNO Y BRUTAL --- */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 320px;
  max-width: 95vw;
  background: rgba(255,255,255,0.97);
  box-shadow: 2px 0 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 2000;
  transform: translateX(-100%) !important;
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  animation: fadeIn 0.3s ease-out;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.side-menu.open {
  transform: translateX(0) !important;
}
.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #f3e7c2;
  flex-shrink: 0;
}
.side-menu-logo img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.side-menu-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: #000000;
  margin-left: 0.4rem;
  flex: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.close-menu {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.15em 0.4em;
  transition: color 0.2s;
}
.close-menu:hover {
  color: #000000;
}
.side-menu-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: min-content;
}
.side-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  padding: 0.55rem 1.2rem 0.55rem 1.2rem;
  border-radius: 1.8rem 0.5rem 0.5rem 1.8rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.side-menu-list a i {
  font-size: 1.1em;
  color: #000000;
  min-width: 1.3em;
  text-align: center;
}
.side-menu-list a:hover, .side-menu-list a:focus {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transform: translateX(5px);
}
.side-menu-list a:hover i,
.side-menu-list a:focus i {
  color: #ffffff !important;
}

/* Estilos para submenu dropdown */
.side-menu-list .has-submenu {
  position: relative;
}
.side-menu-list .submenu-toggle {
  cursor: pointer;
}
.side-menu-list .submenu-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.side-menu-list .has-submenu.active .submenu-arrow {
  transform: rotate(180deg);
}
.side-menu-list .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.side-menu-list .has-submenu.active .submenu {
  max-height: 300px;
}
.side-menu-list .submenu li {
  padding-left: 3rem;
}
.side-menu-list .submenu a {
  font-size: 0.9rem;
  padding: 0.45rem 1.2rem;
  border-radius: 0.5rem;
}
.side-menu-list .submenu a:hover {
  transform: translateX(5px);
}

.side-menu-social-section {
  padding: 1rem 0 1.2rem 0;
  border-top: 1px solid #f3e7c2;
  text-align: center;
  flex-shrink: 0;
  margin-top: auto;
}
.side-menu-social-title {
  font-size: 0.88rem;
  color: #000000;
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.side-menu-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}
.side-menu-social-icons .social-icon {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, box-shadow 0.2s, transform 0.18s, border-color 0.2s, background 0.2s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}
.side-menu-social-icons .social-icon i {
  color: #000000 !important;
}
.side-menu-social-icons .social-icon:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px) scale(1.08);
  border-color: #000000;
}
.side-menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100dvh;
  background: rgba(0,0,0,0.18);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.side-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 700px) {
  .side-menu {
    width: 90vw;
    max-width: 98vw;
    padding: 0;
  }
  .side-menu-header {
    padding: 0.4rem 0.8rem 0.3rem 0.8rem;
  }
  .side-menu-logo img {
    height: 28px;
  }
  .side-menu-title {
    font-size: 0.82rem;
    margin-left: 0.35rem;
  }
  .close-menu {
    font-size: 1.15rem;
    padding: 0.1em 0.25em;
  }
  .side-menu-list {
    padding: 0.6rem 0;
    gap: 0.25rem;
  }
  .side-menu-list a {
    font-size: 1.05rem;
    padding: 0.75rem 1rem 0.75rem 1rem;
    gap: 0.7rem;
  }
  .side-menu-list a i {
    font-size: 1.05em;
    min-width: 1.25em;
  }
  .side-menu-social-section {
    padding: 0.5rem 0 0.5rem 0;
  }
  .side-menu-social-title {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .side-menu-social-icons {
    gap: 0.65rem;
  }
  .side-menu-social-icons .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1.08rem;
  }
}
@media (max-width: 480px) {
  .side-menu {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
  }
  .side-menu-header {
    padding: 0.35rem 0.6rem 0.25rem 0.6rem;
  }
  .side-menu-logo img {
    height: 26px;
  }
  .side-menu-title {
    font-size: 0.78rem;
    margin-left: 0.3rem;
  }
  .close-menu {
    font-size: 1.1rem;
    padding: 0.08em 0.2em;
  }
  .side-menu-list {
    padding: 0.5rem 0;
    gap: 0.2rem;
  }
  .side-menu-list a {
    font-size: 1rem;
    padding: 0.7rem 0.9rem 0.7rem 0.9rem;
    gap: 0.6rem;
    border-radius: 1.5rem 0.45rem 0.45rem 1.5rem;
  }
  .side-menu-list a i {
    font-size: 1em;
    min-width: 1.2em;
  }
  .side-menu-social-section {
    padding: 0.4rem 0 0.4rem 0;
  }
  .side-menu-social-title {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  .side-menu-social-icons {
    gap: 0.6rem;
  }
  .side-menu-social-icons .social-icon {
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }
}
/* --- HEADER Y NAVBAR MODERNOS Y BRUTALES --- */
.main-header {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 24px #00000022, 0 1.5px 0 #00000011;
  border-radius: 1.2rem 1.2rem 0 0;
  padding: 0.1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2.2rem;
  gap: 1.2rem;
  min-height: 58px;
}
.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}
.nav-left {
  flex: 0 0 auto;
}
.nav-center {
  flex: 1 1 auto;
  justify-content: center;
}
.nav-right {
  flex: 0 0 auto;
  gap: 0.5em;
}
.logo img {
  height: 42px;
  max-height: 48px;
  filter: drop-shadow(0 2px 8px #00000022);
  transition: height 0.2s;
}
.menu-btn, .search-btn, .cart-btn {
  background: rgba(255,255,255,0.7);
  border: none;
  color: #000000;
  font-size: 1.15rem;
  margin: 0 0.1rem;
  padding: 0.35em 0.45em;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  box-shadow: 0 1px 6px #00000011;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.menu-btn:hover, .search-btn:hover, .cart-btn:hover {
  background: #f2f2f2;
  color: #000000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: scale(1.08);
}
.menu-btn:active, .search-btn:active, .cart-btn:active {
  background: #e5e5e5;
  color: #000000;
  transform: scale(0.97);
}
.menu-btn:focus-visible, .search-btn:focus-visible, .cart-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}
.menu-btn .modern-icon, .menu-btn i.fa-bars {
  font-size: 1.1em !important;
}
.search-btn .modern-icon, .cart-btn .modern-icon {
  font-size: 1.1em !important;
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.3rem 0.5rem;
    gap: 0.3rem;
  }
  .logo img {
    height: 32px;
    max-height: 36px;
    padding: 0.1rem 0.3rem;
  }
}
@media (min-width: 1200px) {
  /* Mantener tamaño de botones y header sin cambios */
  .menu-btn, .search-btn, .cart-btn {
    font-size: 1.1rem;
    padding: 0.35em 0.45em;
  }
  
  /* Iconos en pantallas grandes */
  .menu-btn .modern-icon, .menu-btn i.fa-bars {
    font-size: 1.2em !important;
    line-height: 1;
  }
  
  .search-btn .modern-icon, .cart-btn .modern-icon {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.8 !important;
  }
}
.logo img, .side-menu-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.modern-icon, .search-thin, .cart-outline, .close-icon-small {
  color: #000000 !important;
  stroke: #000000 !important;
  font-size: 1.7em;
  vertical-align: middle;
  transition: color 0.2s, stroke 0.2s;
}
.modern-icon:hover, .search-thin:hover, .cart-outline:hover {
  color: #000000 !important;
  stroke: #000000 !important;
}
.side-menu-list a i {
  color: #000000 !important;
  font-size: 1.25em;
  min-width: 1.5em;
  text-align: center;
}
.side-menu-social-icons .social-icon i {
  color: #000000 !important;
}
/* --- MENÚ DE NAVEGACIÓN MODERNO Y COMPACTO --- */
.main-header {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px #00000022, 0 1.5px 0 #00000011;
  border-radius: 1.2rem 1.2rem 0 0;
  padding: 0.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2.2rem;
  gap: 1.2rem;
  min-height: 64px;
}
.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}
.nav-left {
  flex: 0 0 auto;
}
.nav-center {
  flex: 1 1 auto;
  justify-content: center;
}
.nav-right {
  flex: 0 0 auto;
  gap: 0.7em;
}

.logo img {
  height: 48px;
  max-height: 54px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: height 0.2s;
}
.menu-btn, .search-btn, .cart-btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.3rem;
  margin: 0 0.2rem;
  padding: 0.45em 0.55em;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn:hover, .search-btn:hover, .cart-btn:hover {
  background: #f2f2f2;
  color: #000000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: scale(1.08);
}
.menu-btn:active, .search-btn:active, .cart-btn:active {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}
.menu-btn .modern-icon, .menu-btn i.fa-bars {
  font-size: 1.15em !important;
}
.search-btn .modern-icon, .cart-btn .modern-icon {
  font-size: 1.15em !important;
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 0.7rem;
    gap: 0.5rem;
  }
  .logo img {
    height: 38px;
    max-height: 42px;
  }
}

/* --- CORRECCIÓN DE VISIBILIDAD EN PANTALLAS GRANDES Y PEQUEÑAS --- */
@media (min-width: 1200px) {
  /* Títulos y textos principales con fuente Poppins para consistencia */
  h1, h2, h3, h4, h5, h6,
  .producto-nombre,
  .destacados-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: capitalize;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
    display: block;
  }
  .logo img, .side-menu-logo img {
    height: 80px;
    max-height: 90px;
  }
  .side-menu-list a i {
    font-size: 1.5em;
  }
  .side-menu-social-icons .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* Banner: títulos y textos en blanco, con sombra para contraste */
@media (max-width: 700px) {
  .logo img, .side-menu-logo img {
    height: 44px;
    max-height: 48px;
  }
  .side-menu-list a i {
    font-size: 1.2em;
  }
  .side-menu-social-icons .social-icon {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
}
@media (max-width: 400px) {
  .logo img, .side-menu-logo img {
    height: 32px;
    max-height: 34px;
  }
  .side-menu-list a i {
    font-size: 1em;
  }
  .side-menu-social-icons .social-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
/* --- MEJORAS PARA PANTALLAS GRANDES --- */
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
  body, main {
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .main-header {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }
  .navbar {
    padding: 1rem 3rem;
    font-size: 1.05rem;
  }
  .logo img {
    height: 55px;
    max-height: 60px;
  }
  .banner {
    max-width: 100%;
    width: 100%;
  }
  .banner-content {
    padding: 2.5rem 3.5rem;
    border-radius: 2rem;
    max-width: 700px;
    font-size: 1.15rem;
  }
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner-content p {
    font-size: 1.2rem;
  }
  .home-links {
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
  }
  .home-link {
    font-size: 1.15rem;
    padding: 1.1rem 2.5rem;
    border-radius: 2rem;
  }
  .productos-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .producto-img {
    width: 140px;
    height: 140px;
    border-radius: 1.3rem;
  }
  .side-menu {
    width: 380px;
    max-width: 95vw;
    border-radius: 0;
    box-shadow: 2px 0 32px 0 rgba(0, 0, 0, 0.1);
    padding: 0;
  }
  .side-menu-header {
    padding: 2rem 2rem 1rem 2rem;
  }
  .side-menu-list {
    padding: 0 2.5rem;
  }
  .side-menu-list a {
    font-size: 1.25rem;
    padding: 1.2rem 1.5rem;
    border-radius: 2.5rem 0.7rem 0.7rem 2.5rem;
  }
  .side-menu-social-section {
    padding: 2.2rem 0 2.2rem 0;
  }
  .side-menu-social-title {
    font-size: 1.2rem;
  }
  .side-menu-social-icons .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* Pantallas extra grandes - limitar tamaño */
@media (min-width: 1600px) {
  html {
    font-size: 17px;
  }
  .productos-container {
    max-width: 1600px;
    margin: 0 auto;
  }
  .banner-content {
    max-width: 800px;
  }
  .destacados-section, .decants-list {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Carrusel horizontal para productos en mobile */
@media (max-width: 700px) {
  .side-menu {
    max-height: 90vh;
    overflow-y: auto;
    min-height: unset;
  }
  .side-menu-list {
    max-height: 60vh;
    overflow-y: auto;
  }
}
/* --- RESPONSIVE PANTALLAS PEQUEÑAS Y MEDIANAS --- */
@media (max-width: 600px) {
  * {
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    height: 100% !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    position: relative !important;
  }
  
  body {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #fff !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
    height: 100% !important;
    min-height: 100vh !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  main {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    height: auto !important;
    min-height: auto !important;
    position: relative !important;
    overflow: visible !important;
    padding-bottom: 3rem !important;
  }
  
  .main-footer {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 2rem !important;
  }
  
  /* Header y navegación */
  .main-header {
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    margin: 0 !important;
  }
  
  .navbar {
    padding: 0.5rem 0.5rem !important;
    min-height: 48px !important;
    gap: 0.3rem !important;
    font-size: 1rem !important;
  }
  
  .nav-right {
    gap: 0.3em !important;
  }
  
  .logo img {
    height: 40px !important;
    max-height: 44px !important;
    padding: 0.1rem 0.3rem !important;
  }
  
  .menu-btn, .search-btn, .cart-btn {
    font-size: 1.1rem !important;
    padding: 0.3em 0.35em !important;
    margin: 0 0.1rem !important;
  }
  
  .main-header .modern-icon,
  .main-header .search-thin,
  .main-header .cart-outline {
    font-size: 1.1em !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
  }
  
  /* Banner */
  .banner {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 2000 / 900 !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
  }
  
  .banner-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: url('/img/imagen%20banner.png') center center/cover no-repeat !important;
    z-index: 1 !important;
  }
  
  .banner-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 1.5rem 1rem !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 1.2rem !important;
  }
  
  .banner-content h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.8rem !important;
    color: #000000 !important;
  }
  
  .banner-content p {
    font-size: 1.1rem !important;
    color: #111 !important;
  }
  
  /* Sección destacados */
  .destacados-section {
    display: block !important;
    padding: 1.5rem 1rem !important;
    margin: 1.5rem 0 !important;
    background: transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .destacados-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
    color: #000000 !important;
    display: block !important;
  }
  
  /* Productos */
  .productos-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  

  
  .producto-img {
    width: 100px !important;
    height: 100px !important;
    display: block !important;
  }
  
  .producto-nombre {
    font-size: 1.1rem !important;
    color: #111 !important;
    display: block !important;
  }
  
  .producto-precio {
    font-size: 1rem !important;
    color: #000000 !important;
    display: block !important;
  }
  
  /* Enlaces principales */
  .home-links {
    flex-direction: column !important;
    gap: 1rem !important;
    margin: 2rem 0 !important;
    padding: 0 1rem !important;
    display: flex !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .home-link {
    font-size: 1.1rem !important;
    padding: 0.9rem 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    text-decoration: none !important;
  }
  
  /* Redes sociales */
  .social-section {
    margin: 2rem 0 !important;
    padding: 0 1rem !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .social-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    color: #000000 !important;
    display: block !important;
  }
  
  .social-icons {
    gap: 1.5rem !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .social-icon {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.8rem !important;
    display: flex !important;
    background: #fff !important;
    border: 2px solid #f5f5f5 !important;
  }
  
  .social-icon i {
    color: #000000 !important;
  }
  
  /* Menú lateral */
  .side-menu {
    width: 85vw !important;
    max-width: 85vw !important;
  }
  
  .side-menu-list a {
    font-size: 1.25rem !important;
    padding: 1.35rem 1.3rem !important;
  }
  
  /* Footer */
  .main-footer {
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 2rem 0 3rem 0 !important;
    position: relative !important;
    display: block !important;
  }
  
  /* Decants y Contacto */
  .decants-list {
    padding: 1.5rem 1rem !important;
    margin: 1.5rem 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .decants-list h2 {
    font-size: 1.8rem !important;
    color: #000000 !important;
    display: block !important;
  }
  
  .contact-section {
    padding: 1.5rem 1rem !important;
    margin: 1.5rem auto 2rem auto !important;
    width: 90% !important;
    max-width: 420px !important;
    box-sizing: border-box !important;
    background: #fff !important;
    border-radius: 2rem !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07) !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .contact-section h2 {
    font-size: 1.5rem !important;
    color: #000000 !important;
    display: block !important;
    margin-bottom: 1rem !important;
  }
  
  .alert {
    padding: 1rem 1.2rem !important;
    border-radius: 0.8rem !important;
    margin-bottom: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    animation: slideDown 0.3s ease-out !important;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .alert-success {
    background-color: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    color: #155724 !important;
  }
  
  .alert-error {
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    color: #721c24 !important;
  }
  
  .alert i {
    font-size: 1.1rem !important;
  }
  
  .contact-form {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem !important;
    padding: 0.8rem 1rem !important;
    border-radius: 1rem !important;
    border: 1.5px solid #e5e5e5 !important;
    background: #faf9f6 !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0.8rem !important;
  }
  
  .contact-form button {
    font-size: 1rem !important;
    padding: 1rem 0 !important;
    background: #000000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 2rem !important;
    display: block !important;
    width: 100% !important;
  }
  
  .home-link {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .social-section {
    margin: 1.2rem 0 1.2rem 0;
  }
  .social-title {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .social-icons {
    gap: 1.1rem;
    flex-direction: row;
  }
  .side-menu {
    width: 100vw;
    min-width: 60px;
    max-width: 100vw;
    padding: 0.7rem 0.2rem;
  }
  .side-menu-list {
    padding: 0 0.2rem;
  }
  .side-menu-list a {
    font-size: 0.95rem;
    padding: 0.6rem 0.3rem;
  }
}
.close-icon-small {
  font-size: 1.2em !important;
}

/* ========================================
   UNIFIED PRODUCT CARD STYLING - AESTHETIC & BEAUTIFUL
   All cards same size, same appearance everywhere
   ======================================== */

.producto-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 360px !important;
  max-height: none !important;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem !important;
  background: #ffffff !important;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  animation: slideIn 0.5s ease-out !important;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.producto-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
}

.producto-img {
  width: 160px !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px !important;
  margin: 0 auto 0.8rem auto !important;
  display: block !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.35s ease !important;
  border: 2px solid rgba(0, 0, 0, 0.08) !important;
}

.producto-card:hover .producto-img {
  transform: scale(1.08) rotate(2deg) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.producto-nombre {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  text-align: center !important;
  margin-bottom: 0.6rem !important;
  line-height: 1.5 !important;
  min-height: 2.8rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0.01em !important;
}

.producto-precio {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #000000 !important;
  text-align: center !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.02em !important;
}

.producto-botones {
  display: flex !important;
  gap: 0.8rem !important;
  width: 100% !important;
  margin-top: auto !important;
  justify-content: center !important;
}

.producto-botones button,
.producto-botones a {
  flex: 1 !important;
  padding: 0.7rem 0.8rem !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border: 2px solid #000000 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  letter-spacing: 0.02em !important;
  text-transform: capitalize !important;
}

.producto-botones button:first-child {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.producto-botones button:first-child:hover {
  background: #f2f2f2 !important;
  color: #000000 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(-2px) !important;
}

.producto-botones button:last-child,
.producto-botones a {
  background: #ffffff !important;
  color: #000000 !important;
}

.producto-botones button:last-child:hover,
.producto-botones a:hover {
  background: #f2f2f2 !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Grid layout for regular product containers - DESKTOP */
.productos-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 3rem !important;
  width: 100% !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* Decants page specific - 2 columns on mobile, 3 on desktop (mobile first) */
.productos-container.decants-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.2rem !important;
  overflow: visible !important;
  padding: 0 0.8rem !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* Destacados en escritorio con botones */
.destacados-slider {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  width: 100% !important;
}

.destacados-viewport {
  width: 100% !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.destacados-track {
  display: flex !important;
  gap: 1.6rem !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-behavior: smooth !important;
  padding: 0.2rem 0.2rem 0.8rem 0.2rem !important;
  scrollbar-width: none !important;
}

.destacados-track::-webkit-scrollbar {
  display: none !important;
}

.destacados-nav {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 2px solid #000000 !important;
  background: #fff !important;
  color: #000000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.destacados-nav:hover {
  background: #000000 !important;
  color: #fff !important;
}

@media (min-width: 1025px) {
  .destacados-nav {
    display: flex !important;
  }

  .destacados-track .producto-card {
    flex: 0 0 calc(33.333% - 1.1rem) !important;
    min-width: calc(33.333% - 1.1rem) !important;
    width: calc(33.333% - 1.1rem) !important;
  }
}

@media (min-width: 1025px) {
  .decants-grid .producto-card {
    min-height: 420px !important;
    max-height: none !important;
    padding: 1.2rem 1rem 1rem 1rem !important;
  }

  .decants-grid .producto-img {
    width: 150px !important;
    height: 150px !important;
  }

  .producto-acciones {
    gap: 0.6rem;
    margin-top: 0.7rem;
  }

  .btn-carrito-tarjeta,
  .btn-comprar-tarjeta {
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    line-height: 1.1;
    min-height: 36px;
  }
}

@media (min-width: 1025px) {
  .productos-container.decants-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.8rem !important;
    padding: 0 1rem !important;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .productos-container.decants-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.8rem !important;
    padding: 0 1rem !important;
  }
}

@media (max-width: 768px) {
  .productos-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 1.4rem !important;
    padding: 0 !important;
  }
  
  .productos-container.decants-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
}

@media (max-width: 700px) {
  .productos-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    gap: 0.8rem !important;
    padding: 0 0.8rem 1rem 0.8rem !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
  }
  
  .productos-container .producto-card {
    flex: 0 0 calc(65vw - 0.4rem) !important;
    min-width: calc(65vw - 0.4rem) !important;
    width: calc(65vw - 0.4rem) !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    height: auto !important;
  }
  
  .productos-container.decants-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    padding: 0 0.6rem !important;
    overflow: visible !important;
  }
  
  .decants-grid .producto-card {
    flex: unset !important;
    min-width: unset !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
    scroll-snap-stop: unset !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0.8rem 0.8rem 0.8rem 0.8rem !important;
  }
  
  .producto-img {
    width: 180px !important;
    height: 180px !important;
    margin-bottom: 0.4rem !important;
  }
  
  .producto-nombre {
    font-size: 0.95rem !important;
    min-height: 2.4rem !important;
  }
  
  .producto-precio {
    font-size: 1.15rem !important;
  }
  
  .producto-botones button,
  .producto-botones a {
    padding: 0.7rem 0.6rem !important;
    font-size: 0.85rem !important;
  }

  .producto-destacado {
    top: 0.4rem;
    right: 0.4rem;
    font-size: 0.65rem;
    padding: 0.18rem 0.55rem;
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    max-width: 60%;
  }

  .decants-grid .producto-destacado {
    top: 0.25rem;
    right: 0.25rem;
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
    max-width: 55%;
    background: #ffffff;
  }
}

@media (max-width: 600px) {
  .productos-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    gap: 0.6rem !important;
    padding: 0 0.6rem 1rem 0.6rem !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
  }
  
  .productos-container .producto-card {
    flex: 0 0 calc(78vw - 0.3rem) !important;
    min-width: calc(78vw - 0.3rem) !important;
    width: calc(78vw - 0.3rem) !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    height: auto !important;
  }
  
  .productos-container.decants-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    padding: 0 0.6rem !important;
    overflow: visible !important;
  }
  
  .decants-grid .producto-card {
    flex: unset !important;
    min-width: unset !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
    scroll-snap-stop: unset !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0.8rem 0.6rem 0.6rem 0.6rem !important;
  }
  
  .producto-img {
    width: 130px !important;
    height: 130px !important;
    margin-bottom: 0.4rem !important;
  }
  
  .producto-nombre {
    font-size: 0.85rem !important;
    min-height: 2.2rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .producto-precio {
    font-size: 1rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .producto-botones {
    gap: 0.6rem !important;
  }
  
  .producto-botones button,
  .producto-botones a {
    padding: 0.5rem 0.3rem !important;
    font-size: 0.7rem !important;
    min-height: 32px !important;
  }
}
/* Icono de buscar y carrito estilo minimalista Shopify */
.search-thin, .cart-outline {
  width: 34px !important;
  height: 34px !important;
  stroke: #000000 !important; /* dorado más vibrante */
  fill: none !important;
  display: inline-block;
  vertical-align: middle;
  transition: stroke 0.2s;
}

/* Modal de búsqueda */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  animation: fadeIn 0.3s ease;
}

.search-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.search-container {
  background: #fff;
  border-radius: 2rem;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
  position: relative;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.search-header h2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin: 0;
}

.close-search {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.close-search:hover {
  color: #000000;
  transform: rotate(90deg);
}

.search-input-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid #e5e5e5;
  border-radius: 1.5rem;
  outline: none;
  transition: border-color 0.3s;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.search-input:focus {
  border-color: #000000;
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: #111;
  gap: 1rem;
}

.search-result-item:hover {
  background: #f5f5f5;
}

.search-result-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.8rem;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.3rem;
}

.search-result-price {
  color: #000000;
  font-size: 0.95rem;
  font-weight: 500;
}

.search-no-results {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .search-modal {
    padding-top: 80px;
  }
  
  .search-container {
    padding: 1.5rem;
    width: 95%;
  }
  
  .search-header h2 {
    font-size: 1.2rem;
  }
  
  .search-input {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
  
  .search-result-img {
    width: 50px;
    height: 50px;
  }
}

.search-thin:hover, .cart-outline:hover {
  stroke: #000000 !important;
}
/* Icono de carrito simula solo borde */
.cart-outline {
  color: #000000 !important;
  background: transparent !important;
  font-size: 1.5em;
  filter: none !important;
}
.cart-btn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #e1306c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15em 0.45em;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cart-count.active {
  display: flex;
}

/* Sidebar del carrito */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 420px;
  max-width: 95vw;
  background: #fff;
  box-shadow: -2px 0 32px rgba(0,0,0,0.15);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-sidebar.active {
  transform: translateX(0);
  will-change: transform;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 2px solid #e5e5e5;
  background: #ffffff;
}

.cart-header h2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.close-cart:hover {
  color: #000000;
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.cart-empty i {
  font-size: 4rem;
  color: #e5e5e5;
  margin-bottom: 1rem;
}

.cart-empty p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e5e5e5;
  transition: box-shadow 0.2s;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.8rem;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.5rem;
}

.cart-item-price-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.cart-item-price-unit {
  color: #666;
  font-size: 0.85rem;
  font-weight: 400;
}

.cart-item-price-subtotal {
  color: #000000;
  font-size: 1.05rem;
  font-weight: 600;
}

.cart-item-price {
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
  padding: 0.3rem;
}

.cart-qty-btn {
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 28px;
  height: 28px;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  color: #111;
}

.cart-qty-btn:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.cart-qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: #111;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #e1306c;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: transform 0.2s;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-footer {
  border-top: 2px solid #e5e5e5;
  padding: 1.5rem;
  background: #fff;
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cart-total-label {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #111;
}

.cart-total-amount {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  color: #000000;
  font-size: 1.5rem;
}

.cart-checkout-btn {
  width: 100%;
  background: #ffffff;
  color: #000000 !important;
  border: 2px solid #000000;
  padding: 1rem;
  border-radius: 1.5rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-checkout-btn:hover {
  background: #f2f2f2;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0,0,0,0.5);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal de datos del cliente */
.customer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 3500;
  backdrop-filter: blur(3px);
}

.customer-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.customer-modal-content {
  width: min(720px, 92vw);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: scaleIn 0.2s ease-out;
  max-height: calc(100dvh - 5rem);
  display: flex;
  flex-direction: column;
}

.customer-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.customer-modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #000000;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.customer-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

.customer-form {
  padding: 1.5rem;
  overflow-y: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  color: #000000;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  border: 1px solid #e5e5e5;
  border-radius: 0.6rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.customer-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.btn-primary {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
  padding: 0.7rem 1.6rem;
  border-radius: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
  padding: 0.7rem 1.4rem;
  border-radius: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #f2f2f2;
}

.btn-secondary:hover {
  background: #f2f2f2;
  border-color: #000000;
  color: #000000;
}

.customer-form-actions .btn-primary {
  background: #ffffff;
  color: #000000 !important;
  border: 2px solid #000000;
}

.customer-form-actions .btn-primary:hover {
  background: #f2f2f2;
  color: #000000;
}

.customer-form-actions .btn-primary:focus-visible,
.customer-form-actions .btn-secondary:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .customer-form-actions {
    flex-direction: column-reverse;
  }

  .customer-modal {
    align-items: flex-start;
    padding-top: 1.5rem;
  }

  .customer-modal-content {
    max-height: calc(100dvh - 2.5rem);
  }
}

@media (min-width: 1025px) {
  .customer-modal {
    align-items: flex-start;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .customer-modal-content {
    max-height: calc(100dvh - 8rem);
  }
}

@media (max-width: 600px) {
  .cart-sidebar {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }
  
  .cart-header {
    flex-shrink: 0;
    padding: 1rem 1rem;
  }
  
  .cart-header h2 {
    font-size: 1.3rem;
  }
  
  .cart-items {
    padding: 0.8rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }
  
  .cart-item {
    gap: 0.7rem;
    padding: 0.8rem;
  }
  
  .cart-item-img {
    width: 70px;
    height: 70px;
  }
  
  .cart-item-name {
    font-size: 0.9rem;
  }
  
  .cart-footer {
    flex-shrink: 0;
    padding: 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
  
  .cart-checkout-btn {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

/* Media queries para pantallas medianas */
@media (min-width: 601px) and (max-width: 1024px) {
  .cart-sidebar {
    width: 380px;
  }
  
  .cart-items {
    padding: 1.2rem;
  }
  
  .cart-item {
    gap: 0.8rem;
    padding: 0.9rem;
  }
}

/* Media queries para pantallas grandes */
@media (min-width: 1025px) {
  .cart-sidebar {
    width: 420px;
    max-width: 35vw;
  }
  
  .cart-items {
    padding: 1rem;
  }
  
  .cart-item {
    gap: 1rem;
    padding: 1rem;
  }
  
  .cart-header {
    padding: 1.5rem;
  }
  
  .cart-footer {
    padding: 1.5rem;
  }
}
/* Separación entre iconos de la lupa y carrito en el header */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2em;
}
/* Iconos modernos dorados */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 900;
  min-height: 0;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  border-bottom: none;
  box-shadow: none;
}
.banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('/img/imagen%20banner.png') center center/cover no-repeat;
  filter: none;
  z-index: 1;
  transition: filter 0.2s;
  border-bottom: none;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
}
.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 24px #000a, 0 1px 0 #00000044;
}
.banner-content p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 24px #000a;
}
@media (max-width: 700px) {
  .banner {
    min-height: 540px;
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 1.3rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}
/* @import eliminado, ya está al inicio */
/* Destacados en inicio */
.destacados-section {
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  margin-top: 0;
  padding-top: 0;
  padding: 0 1.5rem;
  border-top: none;
  box-shadow: none;
  background: transparent;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}
.destacados-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-align: center;
  animation: fadeInUp 0.7s ease-out;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

html, body, main {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  height: auto;
}

main {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  background: #fff;
  min-height: auto;
}

/* Títulos, botones, banners, destacados, menús, links principales */
h1, h2, h3, h4, h5, h6,
.producto-nombre,
.destacados-title,
.panel-admin-container h2,
.login-box h2,
.panel-form button,
.producto-destacado,
.producto-agotado,
.main-header, .navbar, .side-menu, .side-menu-title, .side-menu-list a, .home-link, .banner-content h1, .banner-content p, .social-title, .panel-logout, .msg, button, input[type="submit"], input[type="button"], label[for], .side-menu-social-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 700;
  color: #000000 !important;
  letter-spacing: 0.01em;
}
.side-menu-list a {
  color: #111 !important;
  font-weight: 600;
  font-family: 'Poppins', sans-serif !important;
}

/* Texto base, párrafos, inputs, tablas, descripciones, textos secundarios */
p, span, td, th, input, textarea, select, .panel-form label, .panel-form input, .panel-form .panel-checkbox-label, .error, .contact-section, .side-menu-social-section, .side-menu-social-icons, .productos-container, .producto-precio, .producto-galeria-img, .panel-box, .login-box input, .login-box .error, .panel-admin-container, .panel-form, .panel-form input, .panel-form label, .panel-form .panel-checkbox-label, .panel-logout, .msg, table, th, td {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 400;
}
/* Decants modernos */
.decants-list {
  max-width: 1200px;
  margin: 3.5rem auto 2.5rem auto;
  padding: 0 1.5rem;
}
.decants-list h2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.productos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
  justify-items: start;
}

.producto-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.2rem;
  margin: 0 auto 1.1rem;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.producto-nombre {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--negro);
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-align: center;
}
.producto-precio {
  color: var(--dorado);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.producto-agotado {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #e1306c;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(225,48,108,0.10);
  z-index: 2;
}
.producto-destacado {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  left: auto;
  background: #ffffff;
  color: #000000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 999px; /* pill */
  border: 1px solid rgba(0, 0, 0, 0.25);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  z-index: 3;
}
.producto-galeria {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
  justify-content: center;
}
.producto-galeria-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  border: 2px solid #f5f5f5;
  background: #fff;
}
.producto-vermas {
  margin: 1.5rem auto 1rem auto;
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #000000 !important;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 1rem;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: block;
  width: fit-content;
  text-decoration: none;
}

.producto-vermas:hover {
  background: #f2f2f2 !important;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
  border-color: #000000 !important;
}

/* Botones en tarjetas de producto */
.producto-acciones {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
  width: 100%;
}

.btn-carrito-tarjeta,
.btn-comprar-tarjeta {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 2px solid #000000;
  border-radius: 1rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #000000 !important;
}

.btn-carrito-tarjeta {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-carrito-tarjeta:hover:not(:disabled) {
  background: #f2f2f2;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-comprar-tarjeta {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-comprar-tarjeta:hover:not(:disabled) {
  background: #f2f2f2;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn-carrito-tarjeta:disabled,
.btn-comprar-tarjeta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-carrito-tarjeta i,
.btn-comprar-tarjeta i {
  font-size: 1.1rem;
}

/* Modal de selección de ML */
.ml-selector-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.ml-selector-modal.active {
  display: flex;
}

.ml-selector-content {
  background: #fff;
  border-radius: 2rem;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
  margin: auto;
  position: relative;
}

.ml-selector-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ml-opciones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ml-opcion {
  padding: 1.2rem;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 1rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.ml-opcion:hover {
  background: #f5f5f5;
  border-color: #000000;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ml-opcion.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #e5e5e5;
}

.ml-opcion.active {
  background: #000000;
  border-color: #000000;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.ml-opciones-button {
  display: flex;
  gap: 1rem;
}

.ml-confirmar,
.ml-cancelar {
  flex: 1;
  padding: 1rem;
  border: 2px solid #000000;
  border-radius: 1rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ml-confirmar {
  background: #ffffff;
  color: #000000 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ml-confirmar:hover {
  background: #f2f2f2;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.ml-cancelar {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.ml-cancelar:hover {
  background: #f2f2f2;
  color: #000000;
}

@media (max-width: 700px) {
  .decants-list {
    padding: 0 0.2rem;
  }
  .productos-container {
    gap: 1.1rem;
  }
  .producto-card {
    padding: 1rem 0.5rem 1rem 0.5rem;
    border-radius: 1.1rem;
  }
  .producto-img {
    width: 90px;
    height: 90px;
    border-radius: 0.7rem;
  }
}
/* Contacto moderno */
.contact-section {
  max-width: 420px;
  margin: 3.5rem auto 2.5rem auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.contact-section h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--negro);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-main);
  font-size: 1.08rem;
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  border: 1.5px solid #e5e5e5;
  background: #faf9f6;
  color: var(--negro);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--dorado);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.contact-form textarea {
  min-height: 110px;
  max-height: 220px;
}
.contact-form button {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  background: #ffffff;
  color: #000000 !important;
  border: 2px solid #000000;
  border-radius: 2rem;
  padding: 1rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #f2f2f2;
  color: #000000 !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
  .contact-section {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    border-radius: 1.2rem;
  }
  .contact-section h2 {
    font-size: 1.3rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    border-radius: 0.8rem;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 0.8rem 0;
    border-radius: 1.2rem;
  }
}
/* Redes sociales en menú lateral */
.side-menu-social-section {
  margin: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.side-menu-social-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: #000000;
  font-weight: 400;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.side-menu-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}
.side-menu-social-icons .social-icon {
  width: 42px;
  height: 42px;
  font-size: 1.35rem;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s, box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}
.side-menu-social-icons .social-icon i {
  color: #000000 !important;
  text-decoration: none !important;
}
.side-menu-social-icons .social-icon:hover {
  background: #f2f2f2 !important;
  color: #000000 !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) scale(1.12);
  border-color: rgba(0, 0, 0, 0.35);
}

/* Redes sociales modernas */
.social-section {
  margin: 3.5rem 0 2.5rem 0;
  text-align: center;
}
.social-title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  color: var(--negro);
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  font-size: 2rem;
  color: #000000 !important;
  transition: all 0.3s ease;
  border: 2px solid #f5f5f5;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out backwards;
}

.social-icon:nth-child(1) {
  animation-delay: 0.1s;
}

.social-icon:nth-child(2) {
  animation-delay: 0.2s;
}

.social-icon:nth-child(3) {
  animation-delay: 0.3s;
}

.social-icon i {
  color: #000000 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px) scale(1.15) rotate(5deg);
  border-color: #000000 !important;
}

.social-icon:hover i {
  color: #fff !important;
}

.social-icon:active {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 700px) {
  .social-icons {
    gap: 1.2rem;
  }
  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .social-title {
    font-size: 1.2rem;
  }
}
/* Menú lateral moderno */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100dvh;
  width: 320px;
  max-width: 90vw;
  background: var(--blanco);
  box-shadow: 2px 0 24px rgba(0,0,0,0.13);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.side-menu.open {
  transform: translateX(0);
}
.side-menu-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1.2rem 0.9rem 1.2rem;
  background: linear-gradient(120deg, var(--blanco) 70%, var(--dorado) 100%);
  border-bottom: 1px solid #eee;
  position: relative;
}
.side-menu-logo {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.side-menu-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
.side-menu-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--negro);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  text-align: center;
  text-transform: uppercase;
}
.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--negro);
  cursor: pointer;
  transition: color 0.2s;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}
.close-menu:hover {
  color: var(--dorado);
}
.side-menu-list {
  list-style: none;
  padding: 0.8rem 1.5rem 1.2rem 1.5rem;
  margin: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.side-menu-list li {
  margin-bottom: 0;
}
.side-menu-list a {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  color: var(--negro);
  text-decoration: none;
  font-weight: 400;
  padding: 0.7rem 1rem;
  border-radius: 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.side-menu-list a i {
  margin-right: 1rem;
  color: var(--dorado);
  font-size: 1.3rem;
}
.side-menu-list a:hover,
.side-menu-list a:focus {
  background: #000000 !important;
  color: #ffffff !important;
}
.side-menu-list a:hover i,
.side-menu-list a:focus i,
.side-menu-list a:hover .modern-icon,
.side-menu-list a:focus .modern-icon {
  color: #ffffff !important;
}
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,17,17,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1500;
}
.side-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
/* Estilos base para Leessential */
:root {
  --blanco: #fff;
  --dorado: #000000;
  --negro: #111;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--blanco);
  color: var(--negro);
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body.wompi-open {
  overflow: hidden !important;
  height: 100vh;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--negro);
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
p, a, li, input, textarea {
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* Estilos base para botones y enlaces */
button, .home-link {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  border-radius: 1.5rem;
  cursor: pointer;
}

button, input[type="submit"], input[type="button"] {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

button:hover, input[type="submit"]:hover, input[type="button"]:hover, .home-link:hover {
  background: #f2f2f2;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

button:active, .home-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Excepciones: botones de navegación sin relleno */
.cart-btn, .search-btn, .menu-btn, .close-menu {
  background: none !important;
  color: inherit !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50%;
  padding: 0.5em;
  min-width: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-btn:hover, .search-btn:hover, .menu-btn:hover, .close-menu:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.cart-btn:active, .search-btn:active, .menu-btn:active, .close-menu:active {
  transform: scale(0.95);
}
.banner-content h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--negro);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

/* Header moderno */
.main-header {
  background: var(--blanco);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  /* Para que el menú lateral esté por encima */
  z-index: 1001;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}
.nav-center {
  flex: 1;
  justify-content: center;
}
.logo img {
  height: 68px;
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
  transition: height 0.2s;
}
.menu-btn, .search-btn, .cart-btn {
  background: none;
  border: none;
  color: var(--negro);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.menu-btn:hover i, .search-btn:hover i, .cart-btn:hover i {
  color: #000000;
}

/* Banner principal */
.banner {
  background: linear-gradient(120deg, var(--blanco) 60%, var(--dorado) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.banner-content {
  background: rgba(255,255,255,0.85);
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: inline-block;
}
.banner-content h1 {
  font-size: 2.5rem;
  color: var(--negro);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.banner-content p {
  color: var(--dorado);
  font-size: 1.2rem;
  margin: 0;
}

/* Enlaces principales */
.home-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem auto;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
}

.home-links-column {
  flex-direction: column;
  gap: 1rem;
}

.home-link {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-size: 1.15rem;
  text-decoration: none !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #000000 !important;
  display: inline-block;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.home-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.home-link:hover::before {
  left: 100%;
}

.home-link:hover {
  background: #f2f2f2 !important;
  color: #000000 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.home-link:active {
  transform: translateY(-2px) scale(1);
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 0.5rem;
  }
  .logo img {
    height: 44px;
    max-height: 48px;
  }
  .side-menu {
    width: 80vw;
    min-width: 220px;
    max-width: 95vw;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 18px;
    height: 100% !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  body {
    height: 100% !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative !important;
  }
  main {
    min-height: auto !important;
    padding-bottom: 3rem !important;
  }
  .navbar {
    padding: 0.5rem 0.3rem;
  }
  .banner-content {
    padding: 1.2rem 0.7rem;
    border-radius: 1.1rem;
  }
  .banner-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .banner-content p {
    font-size: 1.15rem;
  }
  .home-links {
    flex-direction: column;
    gap: 1.1rem;
    margin: 1.5rem 0;
  }
  .home-link {
    font-size: 1.15rem;
    padding: 1.1rem 1.7rem;
  }
  .logo img {
    height: 44px;
    max-height: 48px;
  }
  .side-menu {
    width: 98vw;
    min-width: 140px;
    max-width: 100vw;
  }
  .side-menu-list {
    padding: 0 1.2rem;
  }
  .side-menu-list a {
    font-size: 1.18rem;
    padding: 0.9rem 1.1rem;
  }
}

@media (min-width: 992px) {
  .menu-btn .modern-icon, .menu-btn i.fa-bars {
    font-size: 1.2em !important;
    line-height: 1;
  }
  .search-btn .modern-icon, .cart-btn .modern-icon {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.8 !important;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 16px;
    height: 100% !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  body {
    height: 100% !important;
    min-height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative !important;
  }
  main {
    min-height: auto !important;
    padding-bottom: 3rem !important;
  }
  .banner-content {
    padding: 0.7rem 0.2rem;
  }
  .banner-content h1 {
    font-size: 1.3rem;
  }
  .logo img {
    height: 32px;
    max-height: 34px;
  }
  .side-menu {
    width: 100vw;
    min-width: 80px;
    max-width: 100vw;
  }
  .side-menu-list a {
    font-size: 1rem;
    padding: 0.8rem 0.7rem;
  }
}

/* Estilos del Footer */
.main-footer {
  background: #ffffff;
  border-top: 2px solid #00000033;
  padding: 3.5rem 2rem 2rem 2rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-top: 2.5rem;
  box-shadow: 0 -4px 32px 0 rgba(0, 0, 0, 0.08);
  position: relative !important;
  clear: both !important;
  width: 100% !important;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-row {
  width: 100%;
  display: grid;
  gap: 2rem;
}

.footer-row-top {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-logo-section {
  text-align: center;
}

.footer-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 12px #00000033);
  border-radius: 1.2rem;
  background: #fff;
  padding: 0.5rem 1rem;
  margin-bottom: 0.8rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-tagline {
  color: #000000;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}

.footer-row-links {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid #00000044;
  border-bottom: 1px solid #00000044;
  padding: 2rem 0;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-family: 'Poppins', sans-serif !important;
  color: #a8956a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #000000;
  transform: translateX(4px);
}

.social-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links li a i {
  font-size: 1.1rem;
}

.footer-row-info {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid #00000044;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-title {
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.info-title i {
  color: #000000;
  font-size: 1.1rem;
}

.info-content {
  color: #111111;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.info-time {
  font-weight: 600;
  color: #000000;
}

.info-days {
  font-size: 0.85rem;
}

.payment-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-badge {
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.footer-row-bottom {
  border-top: 1px solid #00000044;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  font-size: 1.7rem;
  margin-bottom: 0;
  justify-content: center;
}

.footer-social a {
  color: #000000;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #000000;
  transform: scale(1.2) rotate(-8deg);
}

.footer-copy {
  color: #000000;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.footer-copy a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: #e1306c;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .main-footer {
    margin-top: 1.5rem !important;
    padding: 2rem 1rem 2.5rem 1rem !important;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-row {
    gap: 1rem;
  }

  .footer-row-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-row-info {
    grid-template-columns: 1fr;
  }
  
  .footer-logo img {
    width: 90px;
    padding: 0.3rem 0.6rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-social {
    font-size: 1.3rem;
    gap: 1rem;
  }
  
  .footer-copy {
    padding-bottom: 0.5rem;
    font-size: 0.85rem;
  }

  .info-card {
    padding: 1.2rem;
  }

  .payment-options {
    gap: 0.4rem;
  }

  .payment-badge {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }
}

/* Ajuste final del menú lateral para todas las pantallas */
body .side-menu {
  top: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  width: 320px;
  max-width: 100vw !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
body .side-menu-list {
  margin: 0 !important;
  padding: 1rem 1.2rem 1.2rem 1.2rem !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
body .side-menu-list li {
  margin-bottom: 0 !important;
}
body .side-menu-social-section {
  margin-top: auto !important;
}

@media (max-width: 700px) {
  body .side-menu {
    width: 100vw !important;
  }
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #f2f2f2;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
  transform: scale(1.15);
  animation: pulse 1s ease-in-out infinite;
}

.whatsapp-float i {
  color: #000000 !important;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}

/* ========================================
   PÁGINA DE POLÍTICA DE ENVÍOS
   ======================================== */

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 200px);
}

.policy-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: #ffffff;
  border-radius: 1.2rem;
  border: 2px solid #00000044;
}

.policy-hero h1 {
  font-size: 2.5rem;
  color: #000000;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.policy-hero .subtitle {
  color: #111111;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #000000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.5s ease-out;
}

.policy-section h2 {
  color: #000000;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.policy-section h2 i {
  color: #000000;
  font-size: 1.3rem;
}

.policy-section h3 {
  color: #000000;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.8rem 0;
  font-weight: 600;
}

.policy-text {
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-text p {
  margin: 0.8rem 0;
}

.policy-text strong {
  color: #000000;
  font-weight: 600;
}

.policy-info-box {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.info-label {
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
}

.info-value {
  color: #111111;
  font-size: 0.95rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0.8rem;
  border: 2px solid #00000044;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.payment-method i {
  font-size: 2rem;
  color: #000000;
}

.payment-method span {
  color: #000000;
  font-weight: 600;
  text-align: center;
}

.faq {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid #000000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.faq h2 {
  color: #000000;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0e6d2;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  color: #000000;
  font-size: 1.05rem;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.faq-item p {
  color: #111111;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.policy-cta {
  text-align: center;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1.2rem;
  border: 2px solid #00000044;
}

.policy-cta h2 {
  color: #000000;
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.policy-cta p {
  color: #111111;
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  color: #000000 !important;
  border: 2px solid #000000;
  padding: 0.8rem 2rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  background: #f2f2f2;
}

.cta-button i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .policy-container {
    padding: 1.5rem;
  }

  .policy-hero h1 {
    font-size: 2rem;
  }

  .policy-hero .subtitle {
    font-size: 0.95rem;
  }

  .policy-section {
    padding: 1.5rem;
  }

  .policy-section h2 {
    font-size: 1.2rem;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .policy-cta {
    padding: 1.5rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}
/* --- RESEÑAS EN INICIO --- */
.reviews-section {
  padding: 2.6rem 0 2.2rem 0;
  background: #fff;
}

.reviews-title {
  text-align: center;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #222;
  margin-bottom: 1.4rem;
}

.reviews-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.1rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 0.2rem 0.6rem 0.2rem;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 clamp(220px, 70vw, 320px);
  background: #fff;
  border-radius: 1.2rem;
  border: 1px solid #f3e7c2;
  box-shadow: 0 10px 28px rgba(201, 161, 74, 0.15);
  overflow: hidden;
  scroll-snap-align: center;
}

.review-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
  aspect-ratio: auto;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000000;
  box-shadow: 0 6px 18px rgba(201, 161, 74, 0.28);
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.reviews-nav i {
  font-size: 1rem;
  line-height: 1;
}

.reviews-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
}

.reviews-nav.prev {
  left: 0.4rem;
}

.reviews-nav.next {
  right: 0.4rem;
}

@media (max-width: 900px) {
  .reviews-slider {
    padding: 0 2.4rem;
  }
}

@media (max-width: 600px) {
  .reviews-section {
    padding: 2rem 0 1.6rem 0;
  }
  .reviews-slider {
    padding: 0 1.6rem;
  }
  .reviews-nav {
    width: 34px;
    height: 34px;
  }
}
/* ========================================
   SLIDER HORIZONTAL PARA PRODUCTOS EN MOBILE
   ESTILOS AL FINAL PARA MÁXIMA ESPECIFICIDAD
   ======================================== */

@media (max-width: 768px) {
  .productos-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    padding: 0 1rem 1rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    grid-template-columns: unset !important;
  }
  

  
  .producto-card:last-child {
    margin-right: 1rem;
  }
}

@media (max-width: 700px) {
  .productos-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.8rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    padding: 0 0.8rem 0.8rem 0.8rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset !important;
  }
  

}

/* ========================================
   CHECKOUT WOMPI
   ======================================== */

.checkout-page {
  padding: 2rem 1.5rem 4rem;
  background: #f8f6f2;
}

.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.checkout-summary,
.checkout-payment {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.checkout-summary h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-bottom: 0.5rem;
}

.checkout-subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.8rem;
}

.checkout-item-name {
  font-weight: 600;
}

.checkout-item-meta {
  font-size: 0.9rem;
  color: #777;
}

.checkout-total {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.checkout-form .form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.checkout-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.checkout-form input,
.checkout-form select {
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  padding: 0.7rem 0.9rem;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.checkout-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.acceptance-field {
  font-size: 0.9rem;
  gap: 0.4rem;
}

.acceptance-field a {
  color: #a98719;
  font-weight: 600;
  text-decoration: none;
}

.payment-status {
  min-height: 24px;
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
}

.payment-status.error {
  color: #c0392b;
}

.payment-status.info {
  color: #333;
}

.checkout-result {
  grid-template-columns: 1fr;
}

.checkout-result-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  animation: popIn 0.4s ease-out;
}

.checkout-result-card.success h1 {
  color: #2e7d32;
}

.checkout-result-card.error h1 {
  color: #c0392b;
}

.result-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  animation: pulseBadge 1.6s ease-in-out infinite;
}

.result-badge.success {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  border: 2px solid rgba(46, 125, 50, 0.25);
}

.result-badge.error {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
  border: 2px solid rgba(192, 57, 43, 0.25);
}

.result-badge i {
  font-size: 2rem;
}

.result-subtitle {
  color: #666;
  margin: 0.75rem 0 1.5rem;
}

.payment-result {
  background: #f9f7f3;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #333;
}

.checkout-result-card.success::before {
  content: '';
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 65%);
  animation: glowSweep 3.5s ease-in-out infinite;
  z-index: 0;
}

.confetti-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 18px;
  background: #f5c542;
  top: -20px;
  opacity: 0.85;
  border-radius: 4px;
  animation: confettiFall 3.2s linear infinite;
}

.confetti.c1 { left: 8%; animation-delay: 0s; background: #f5c542; }
.confetti.c2 { left: 18%; animation-delay: 0.4s; background: #000000; }
.confetti.c3 { left: 28%; animation-delay: 0.8s; background: #f0d56a; }
.confetti.c4 { left: 38%; animation-delay: 0.2s; background: #c9a227; }
.confetti.c5 { left: 48%; animation-delay: 1s; background: #f7e29a; }
.confetti.c6 { left: 58%; animation-delay: 0.6s; background: #e2c75c; }
.confetti.c7 { left: 68%; animation-delay: 1.2s; background: #f5c542; }
.confetti.c8 { left: 78%; animation-delay: 0.3s; background: #000000; }
.confetti.c9 { left: 88%; animation-delay: 0.9s; background: #f0d56a; }
.confetti.c10 { left: 12%; animation-delay: 1.4s; background: #f7e29a; }
.confetti.c11 { left: 52%; animation-delay: 1.6s; background: #c9a227; }
.confetti.c12 { left: 92%; animation-delay: 1.8s; background: #e2c75c; }

.checkout-result-card.success .result-badge,
.checkout-result-card.success h1,
.checkout-result-card.success .result-subtitle,
.checkout-result-card.success .payment-result,
.checkout-result-card.success .checkout-actions {
  position: relative;
  z-index: 2;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    transform: translateY(320px) rotate(360deg);
  }
}

@keyframes glowSweep {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid #000000;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 720px) {
  .checkout-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .productos-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.6rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    padding: 0 0.6rem 0.6rem 0.6rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset !important;
  }
  

}


