:root {
  /* Variables para el modo oscuro (ahora siempre activo) */
  --body-bg-color: #000000;
  --text-color: #e0e0e0;
  --text-color-muted: #a0a0a0;
  --navbar-bg-color: rgba(18, 18, 18, 0.85);
  --navbar-border-color: rgba(255, 255, 255, 0.15);
  --card-bg-color: linear-gradient(145deg, rgba(35,35,35,0.85), rgba(28,28,28,0.85));
  --card-border-color: rgba(255,255,255,0.15);
  --button-bg-gradient: linear-gradient(90deg, #5fa4ff, #4fd1c5);
  --button-text-color: #000000;
  --link-color: #e0e0e0;
  --link-active-color: #5fa4ff;
  --heading-color: #ffffff;
  --subheading-color: #b0b0b0;
  --global-styles-bg: #000000;
  --product-image-bg: #222;
  --hero-overlay-color: rgba(0, 0, 0, 0.6);
  --color-blue-text: #5fa4ff;
  --color-mid-grey-text: #9ca3af;
  
  /* Transición para elementos */
  --theme-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
  background-color: var(--body-bg-color);
  color: var(--text-color);
  transition: var(--theme-transition);
}

/* Eliminar estilos del botón de tema que ya no es necesario */

/* Ajustes generales para usar las variables */
.page-wrapper {
  background-color: var(--body-bg-color);
}

.navbar-sticky {
  transition: transform 0.4s ease, background-color 0.4s ease;
  animation: navFadeIn 0.8s ease-out forwards;
  position: sticky;
  top: 0;
  z-index: 10000;
  height: 5.2rem;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-sticky__background {
  z-index: -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  position: absolute;
  inset: 0%;
  transition: opacity 0.5s ease, background-color 0.4s ease;
}

.navbar-sticky.scrolled .navbar-sticky__background {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.85);
}

.navbar-sticky__heading {
  color: var(--heading-color);
  transition: var(--theme-transition);
}

.navbar-sticky__link {
  color: #ffffff !important;
  transition: all 0.3s ease;
  opacity: 0.85;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none !important;
}

.navbar-sticky__link:hover {
  opacity: 1;
  color: #5fa4ff !important;
  text-decoration: none !important;
}

.navbar-sticky__link.link--active {
  color: #5fa4ff !important;
  opacity: 1;
  font-weight: 600;
  text-decoration: none !important;
}

.button-2, .checkout-button, .place-order-button, .add-to-cart-big {
  background: var(--button-bg-gradient);
  color: var(--button-text-color);
  transition: var(--theme-transition), transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.heading-style-h1, .heading-style-h2, .product-name, .section-title, .summary-title {
  color: var(--heading-color);
  transition: var(--theme-transition);
}

.paragraph-big, .paragraph-medium, .paragraph-small, .product-description, .product-description-full, .spec-text, .cart-item-price, .form-group label, .summary-item-name, .summary-subtotal-label, .summary-shipping-label, .text-color-grey, p {
  color: var(--text-color-muted);
  transition: var(--theme-transition);
}

.text-color-white, .product-title, .cart-item-title, .quantity-value, .cart-item-total, .summary-item-price, .summary-subtotal-value, .summary-shipping-value, .summary-total-label, .form-control  {
  color: var(--text-color);
  transition: var(--theme-transition);
}

.text-color-green {
  color: var(--color-blue-text);
  transition: var(--theme-transition);
}

.text-color-mid-grey {
  color: var(--text-color-muted);
}

/* Adaptación de product-card y otros elementos con fondos complejos */
.product-card {
  background: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  transition: var(--theme-transition), transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  border: 1px solid var(--link-active-color);
}

.product-image-wrapper, .cart-item-image-wrapper {
  background-color: var(--product-image-bg);
  transition: var(--theme-transition);
}

.product-price, .product-price-big, .summary-total-value {
  color: #5fa4ff;
  font-weight: 700;
  transition: var(--theme-transition);
}

.cart-icon {
  width: 22px;
  height: 22px;
  color: #ffffff !important; 
  transition: var(--theme-transition);
  stroke-width: 1.5px;
  opacity: 1;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--button-bg-gradient);
  color: var(--button-text-color);
  border-radius: 50%;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  animation: countBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
}

@keyframes countBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Estilos de formularios en Checkout */
.checkout-form, .checkout-summary, .cart-summary {
  background: var(--card-bg-color);
  border: 1px solid var(--card-border-color);
  transition: var(--theme-transition);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
}

.form-control:focus {
  border-color: var(--link-active-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--link-active-color) 30%, transparent);
}

.sub-heading {
  color: var(--text-color-muted);
}

/* Hero blur effect with logo */
.hero-blur-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.hero-blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #003399, #0066cc);
  background-size: cover;
  background-position: center;
  filter: blur(calc(var(--hero-blur-amount) + 2px));
  z-index: 1;
  opacity: 0.7;
}

.hero-blur-background::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(0,0,0,0.6) 70%);
  z-index: 0;
}

.hero-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hero-overlay-color);
  z-index: 2;
  background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.5) 80%);
}

.hero-logo-container {
  position: relative;
  z-index: 3;
  text-align: center;
  transform: scale(1.2);
  animation: pulse 3s infinite alternate;
  width: 100%;
}

.hero-raper-logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

@keyframes pulse {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Video Hero Section */
.video-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  z-index: 0;
}

/* Hero Image Container */
.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Hero Overlay with Gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, 
    rgba(0,0,0,0.3) 0%, 
    rgba(0,0,0,0.6) 50%, 
    rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

/* Golden Glow Effect */
.golden-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, 
    rgba(95,164,255,0.2) 0%, 
    rgba(79,209,197,0.1) 40%, 
    transparent 70%);
  filter: blur(100px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

/* Luxury Particles */
.luxury-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, #5fa4ff, transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
}

.hero-text-container {
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Title with Split Animation */
.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  margin: 0 0 2rem 0;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.title-word {
  display: inline-block;
  animation: titleReveal 0.8s ease-out backwards;
}

.title-word:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(100px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.8);
  margin: 0 0 3rem 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  animation: subtitleFade 1s ease-out 0.5s backwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    letter-spacing: 0.5em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.3em;
  }
}

/* Hero CTA Button */
.hero-cta-wrapper {
  animation: ctaReveal 1s ease-out 0.8s backwards;
  margin-top: 2rem;
}

@keyframes ctaReveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  border: none;
  border-radius: 50px;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(95, 164, 255, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(95, 164, 255, 0.4);
  text-decoration: none !important;
}

.hero-cta-button:focus,
.hero-cta-button:active {
  text-decoration: none !important;
  outline: none;
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.hero-cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Existing styles continue below... */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-color: #000;
}

.hero-logo-wrapper {
  max-width: 280px;
  margin-bottom: 2rem;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
  transition: filter 0.3s ease;
}

.hero-logo:hover {
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.9));
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.section_hero {
  margin-top: -1px;
}

@media (max-width: 767px) {
  .video-hero-section {
    height: 100vh;
    min-height: 500px;
    padding: 0;
  }
  
  .hero-content {
    padding: 0 1rem;
    justify-content: center;
  }
  
  .hero-text-container {
    padding: 0;
    width: 100%;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
    line-height: 0.95 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.01em;
  }
  
  .title-word {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.8rem, 4vw, 1.2rem) !important;
    margin: 0 0 2rem 0 !important;
    letter-spacing: 0.1em;
    line-height: 1.4;
    padding: 0 1rem;
  }
  
  .hero-cta-button {
    padding: 1.2rem 2.5rem !important;
    font-size: 0.9rem !important;
    gap: 0.5rem;
    width: auto;
    max-width: 280px;
  }
  
  .cta-arrow {
    font-size: 1.2rem;
  }
  
  .hero-image {
    object-position: center center;
    transform: scale(1.2);
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* Tablet responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-title {
    font-size: clamp(4rem, 8vw, 6rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }
  
  .hero-cta-button {
    padding: 1.3rem 2.8rem;
    font-size: 1rem;
  }
}

/* Landscape móvil */
@media (max-width: 767px) and (orientation: landscape) {
  .video-hero-section {
    height: 100vh;
    min-height: 400px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem) !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-cta-button {
    padding: 1rem 2rem !important;
    font-size: 0.85rem !important;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  animation: fadeInUp 2s ease-in-out 1.5s backwards, scrollBounce 2s ease-in-out infinite;
  z-index: 5;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  margin-bottom: 10px;
  animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes scrollArrow {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translate(10px, 10px);
    opacity: 0.8;
  }
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.4;
  }
}

/* Make the page scroll smooth */
html {
  scroll-behavior: smooth;
}

/* Navbar Layout */
.navbar-sticky__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: visible; /* Cambiado de hidden a visible */
  position: relative;
}

.navbar-sticky__heading {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  flex-shrink: 0;
  max-width: 60%; /* Limitar ancho para evitar overflow */
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-logo {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  transition: all 0.4s ease;
  max-width: 100%;
  object-fit: contain;
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  transform: scale(1.08);
}

.navbar-sticky__link {
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-sticky__link:hover {
  transform: translateY(-1px);
}

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

.navbar-sticky__link.link--active {
  color: #5fa4ff !important;
  opacity: 1;
  font-weight: 600;
  text-decoration: none !important;
}

/* Carrito siempre visible */
.cart-icon-wrapper {
  position: relative;
  cursor: pointer;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex !important; /* Forzar que siempre sea visible */
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 3s infinite alternate;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 4px 15px rgba(95, 164, 255, 0.3);
  }
}

.cart-icon-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(95, 164, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.cart-icon {
  width: 22px;
  height: 22px;
  color: #ffffff !important; 
  transition: var(--theme-transition);
  stroke-width: 1.5px;
  opacity: 1;
}

#cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--button-bg-gradient);
  color: var(--button-text-color);
  border-radius: 50%;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  animation: countBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
}

@keyframes countBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Ensure the main content starts after the sticky navbar, considering the new title hero is in normal flow */
.main-wrapper {
  padding-top: 0; /* Remove previous padding if any, navbar will occupy its space */
}

/* Product Details Page Enhancements */
.section_product-details {
  padding: 4rem 0 6rem; /* Add more padding to the section */
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Maintain two columns */
  gap: 4rem; /* Increase gap for better separation */
  align-items: flex-start;
}

@media (max-width: 991px) {
  .product-details-grid {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
    gap: 3rem;
  }
}

.product-image-gallery {
  position: sticky; /* Make gallery sticky for better UX on scroll */
  top: 100px; /* Adjust based on navbar height + site title */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Maintain square aspect ratio */
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--product-image-bg); /* From existing variables */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 1rem;
}

.product-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--product-image-bg);
}

.product-thumbnail:hover {
  border-color: var(--link-active-color);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-thumbnail.active {
  border-color: var(--link-active-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--link-active-color) 40%, transparent);
}

.product-details-content {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Consistent spacing between content blocks */
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between breadcrumb items */
  font-size: 1.4rem;
  color: var(--text-color-muted);
  margin-bottom: 0.5rem; /* Space below breadcrumbs */
}

.breadcrumb-link {
  color: var(--link-active-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: color-mix(in srgb, var(--link-active-color) 80%, #fff);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--text-color-muted);
  margin: 0 0.25rem; /* Give a little space around the separator */
}

.breadcrumb-current {
  color: var(--text-color);
  font-weight: 500;
}

.product-name { /* Assuming h1, already styled for color */
  font-size: clamp(3rem, 5vw, 4rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem; /* Space below name */
}

.product-price-big { /* Already has gradient */
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem; /* More space below price */
}

.product-description-full p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color-muted);
  margin-bottom: 1rem;
}

.product-description-full p:last-child {
  margin-bottom: 0;
}

.product-specs {
  margin-top: 1rem; /* Space above specs */
  /* Remove fixed height if any, to avoid scrollbar. Let content flow. */
  max-height: none; 
  overflow-y: visible; /* Ensure no scrollbar unless truly necessary by content itself */
}

.spec-group {
  margin-bottom: 2rem;
}

.spec-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--card-border-color); /* Subtle separator */
  padding-bottom: 0.5rem;
}

.spec-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.spec-icon {
  color: var(--color-blue-text); /* Use existing blue variable */
  font-size: 1.8rem;
  line-height: 1;
}

.spec-text {
  color: var(--text-color);
}

.product-actions {
  display: flex;
  flex-direction: column; /* Stack quantity and button for clarity */
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border-color);
}

.quantity-selector {
  display: flex;
  align-items: center;
  align-self: flex-start; /* Align to start */
  border: 1px solid var(--card-border-color);
  border-radius: 6px;
  overflow: hidden;
}

.quantity-btn {
  background-color: transparent;
  border: none;
  color: var(--text-color);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

.quantity-btn.minus {
  border-right: 1px solid var(--card-border-color);
}

.quantity-btn.plus {
  border-left: 1px solid var(--card-border-color);
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  background-color: transparent;
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.8rem 0;
  appearance: textfield;
  -moz-appearance: textfield; /* Firefox */
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-big { /* Styles from theme.css, ensure consistency */
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
}

.product-meta {
  margin-top: 1.5rem; /* Space above meta */
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  display: grid;
  grid-template-columns: 100px 1fr; /* Label and value columns */
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.meta-label {
  font-weight: 600;
  color: var(--text-color);
}

.meta-value {
  color: var(--text-color-muted);
  word-break: break-all; /* Prevent long tags from breaking layout */
}

/* Remove Webflow specific scrollbar if it's the cause, or ensure product-specs has no fixed height */
.w-ix-scrollbar-vertical {
 display: none !important; /* Force hide if it's a Webflow custom scrollbar */
}

/* Side Cart Styles */
.side-cart-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001; /* Higher than navbar */
  pointer-events: none; /* Allows clicks through when hidden */
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-cart-container.is-open {
  pointer-events: auto;
  visibility: visible;
}

.side-cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.side-cart-container.is-open .side-cart-overlay {
  opacity: 1;
}

.side-cart {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: auto;
  max-height: 80vh;
  background-color: var(--body-bg-color, #000);
  background-image: linear-gradient(145deg, rgba(25,25,25,0.97), rgba(10,10,10,0.97));
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10001;
  border-radius: 15px;
  opacity: 0;
  overflow: hidden;
}

.side-cart-container.is-open .side-cart {
  transform: scale(1);
  opacity: 1;
}

.close-cart-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color, #e0e0e0);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 5px 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.close-cart-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.side-cart-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  padding-top: 65px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  max-height: 80vh;
}

/* Animation for cart entrance */
@keyframes cartPopIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Cart item styling */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: fadeSlideIn 0.4s ease-out forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cart-item-image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #191919;
  transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image-wrapper {
  transform: scale(1.05);
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cart-item:hover .cart-item-image {
  transform: scale(1.08);
}

.cart-item-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.cart-item-price {
  font-size: 1.4rem;
  color: var(--text-color-muted);
  margin-bottom: 8px;
}

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

.quantity-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  line-height: 1;
}

.quantity-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.quantity-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  min-width: 20px;
  text-align: center;
}

.cart-item-total {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  align-self: center;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  color: #ff3b30;
  transform: scale(1.2);
}

/* Cart totals and buttons */
.cart-summary {
  margin-top: 20px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.6s ease-out forwards;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.summary-total-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
}

.checkout-button, #clear-cart {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 15px;
  text-align: center;
}

.checkout-button {
  background: var(--button-bg-gradient);
  color: var(--button-text-color);
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.checkout-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(95, 164, 255, 0.3);
}

#clear-cart {
  background: transparent;
  color: var(--text-color-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#clear-cart:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border-color: rgba(255, 255, 255, 0.2);
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-color-muted);
  font-size: 1.8rem;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Cart notification */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(25, 25, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  z-index: 10002;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-notification-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #34d399, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.2rem;
}

.cart-notification-text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .navbar-logo {
    height: 28px;
  }
  
  .side-cart {
    max-width: 100%;
  }
  
  .cart-notification {
    width: calc(100% - 40px);
    top: auto;
    bottom: 20px;
    right: 20px;
  }
}

/* Centered Cart Style */
.side-cart.centered-cart {
  animation: cartPopIn 0.5s forwards cubic-bezier(0.18, 1.25, 0.40, 1.30);
  margin: 0 auto;
  position: relative;
  z-index: 10002;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  background-image: linear-gradient(145deg, rgba(30,30,30,0.97), rgba(15,15,15,0.97));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Enhanced cart content styling for centered cart */
.centered-cart .side-cart-content {
  padding: 30px;
  padding-top: 60px;
}

.centered-cart .cart-item {
  margin-bottom: 15px;
  background: rgba(20, 20, 20, 0.5);
}

.centered-cart .cart-summary {
  margin-top: 30px;
}

/* Enhanced close button for centered cart */
.centered-cart .close-cart-btn {
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 10003;
}

.centered-cart .close-cart-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .side-cart.centered-cart {
    width: 95%;
    max-height: 85vh;
    border-radius: 15px;
  }
  
  .centered-cart .side-cart-content {
    padding: 20px;
    padding-top: 50px;
  }
}

/* Estilos para el selector de idiomas */
.language-selector {
  display: flex;
  align-items: center;
  margin-right: 20px;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
  background: var(--button-bg-gradient);
  border-color: transparent;
  color: var(--button-text-color);
}

/* Estilos de cursor para elementos clickeables */
.product-card,
.product-image,
.product-image-wrapper,
.product-title,
.product-description,
.product-price,
.button,
.button-2,
.checkout-button,
.place-order-button,
.add-to-cart-big,
.add-to-cart-btn,
.navbar-sticky__link,
.navbar-sticky__heading,
.navbar-logo,
.cart-icon-wrapper,
.quantity-btn,
.product-thumbnail,
.close-cart-btn,
.lang-btn {
  cursor: pointer;
}

/* Efectos adicionales para mejorar la experiencia del usuario */
.product-card:hover {
  cursor: pointer;
  user-select: none; /* Evita selección de texto accidental */
}

.product-image-wrapper:hover {
  cursor: pointer;
}

.product-title:hover,
.product-description:hover,
.product-price:hover {
  cursor: pointer;
}

/* Cursor especial para elementos interactivos */
.quantity-btn:hover,
.cart-icon-wrapper:hover,
.close-cart-btn:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* Cursor para thumbnails de productos */
.product-thumbnail {
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbnail:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* Cursor para botones de navegación */
.navbar-sticky__link:hover,
.navbar-sticky__heading:hover {
  cursor: pointer;
}

/* Cursor para elementos del carrito */
.cart-item:hover {
  cursor: pointer;
}

.cart-item-remove:hover {
  cursor: pointer;
  transform: scale(1.2);
}

/* Cursor para formularios */
.form_input:hover,
.form_checkbox:hover,
.form_radio:hover {
  cursor: pointer;
}

/* Estilos adicionales para mejorar la experiencia del cursor */
.navbar-sticky__link,
.navbar-sticky__heading,
.navbar-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-sticky__link:hover {
  transform: translateY(-1px);
}

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

/* Efectos de hover para elementos clickeables */
.product-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
  cursor: pointer;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(95, 164, 255, 0.2);
}

/* Cursor para botones */
.button,
.button-2,
.checkout-button,
.place-order-button,
.add-to-cart-big,
.add-to-cart-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover,
.button-2:hover,
.checkout-button:hover,
.place-order-button:hover,
.add-to-cart-big:hover,
.add-to-cart-btn:hover {
  cursor: pointer;
  transform: translateY(-2px);
}

/* Cursor para elementos interactivos del carrito */
.cart-icon-wrapper {
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon-wrapper:hover {
  cursor: pointer;
  transform: translateY(-2px) scale(1.05);
}

.quantity-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  cursor: pointer;
  transform: scale(1.1);
}

/* Cursor para thumbnails de productos */
.product-thumbnail {
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-thumbnail:hover {
  cursor: pointer;
  transform: scale(1.05);
  border-color: #5fa4ff !important;
}

/* Cursor para elementos de navegación */
.close-cart-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-cart-btn:hover {
  cursor: pointer;
  transform: rotate(90deg) scale(1.1);
}

/* Cursor para elementos del carrito */
.cart-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-item:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

.cart-item-remove {
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  cursor: pointer;
  transform: scale(1.2);
  color: #ff3b30;
}

/* Cursor para elementos de imagen */
.product-image,
.product-image-wrapper {
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-image:hover,
.product-image-wrapper:hover {
  cursor: pointer;
}

/* Cursor para texto clickeable */
.product-title,
.product-description,
.product-price {
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-title:hover,
.product-description:hover,
.product-price:hover {
  cursor: pointer;
}

/* Cursor para selector de idiomas */
.lang-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* Efectos adicionales para mejorar la retroalimentación visual */
*[onclick] {
  cursor: pointer;
}

*[data-product-id] {
  cursor: pointer;
}

/* Cursor personalizado para elementos muy interactivos */
.product-card:hover,
.cart-icon-wrapper:hover,
.add-to-cart-btn:hover {
  cursor: pointer;
}

/* Evitar selección de texto en elementos clickeables */
.product-card,
.button,
.button-2,
.cart-icon-wrapper,
.quantity-btn,
.product-thumbnail,
.navbar-sticky__link {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Footer Minimalista - Estilo Cyberpunk */
.footer-minimal {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,15,25,1) 100%);
  border-top: 1px solid rgba(95, 164, 255, 0.3);
  padding: 4rem 0 3rem;
  position: relative;
  margin-top: 8rem;
}

.footer-minimal::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 164, 255, 0.8), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  opacity: 0.9;
  transition: all 0.4s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(95, 164, 255, 0.6));
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(95, 164, 255, 0.4));
}

.footer-tagline {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: rgba(95, 164, 255, 0.9);
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(95, 164, 255, 0.3);
}

.footer-contact {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(95, 164, 255, 0.2);
  border-radius: 25px;
  background: rgba(95, 164, 255, 0.05);
}

.contact-item:hover {
  color: rgba(95, 164, 255, 0.9);
  transform: translateY(-2px);
  border-color: rgba(95, 164, 255, 0.5);
  box-shadow: 0 5px 15px rgba(95, 164, 255, 0.2);
  background: rgba(95, 164, 255, 0.1);
}

.flag {
  font-size: 1.8rem;
}

.phone {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-copyright {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(95, 164, 255, 0.1);
  width: 100%;
}

.footer-copyright p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin: 0;
}

/* Añadir un efecto de partículas cyber al footer */
.footer-minimal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(95, 164, 255, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(79, 209, 197, 0.3), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(95, 164, 255, 0.3), transparent);
  background-size: 200% 200%;
  pointer-events: none;
  opacity: 0.6;
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* Sección de Productos Destacados - Estilo Profesional */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.featured-product-card {
  position: relative;
  background: linear-gradient(145deg, rgba(12,20,30,0.85), rgba(8,15,25,0.95));
  border: 1px solid rgba(95, 164, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.featured-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #5fa4ff, #4fd1c5);
  transition: height 0.5s ease;
}

.featured-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 164, 255, 0.4);
  box-shadow: 0 15px 40px rgba(15, 25, 35, 0.3), 0 0 15px rgba(95, 164, 255, 0.2);
}

.featured-product-card:hover::before {
  height: 100%;
}

.featured-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 25, 35, 0.5);
  border-radius: 50%;
  padding: 1rem;
  border: 1px solid rgba(95, 164, 255, 0.2);
  transition: all 0.3s ease;
}

.featured-product-card:hover .featured-icon {
  background: linear-gradient(135deg, rgba(15, 25, 35, 0.7), rgba(8, 15, 25, 0.9));
  border-color: rgba(95, 164, 255, 0.5);
  box-shadow: 0 0 20px rgba(95, 164, 255, 0.25);
}

.product-icon {
  color: #5fa4ff;
  transition: all 0.3s ease;
}

.featured-product-card:hover .product-icon {
  color: #4fd1c5;
  transform: scale(1.1);
}

.featured-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.8rem;
}

.featured-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #5fa4ff, #4fd1c5);
  transition: width 0.3s ease;
}

.featured-product-card:hover .featured-title::after {
  width: 60px;
}

.featured-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.featured-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #5fa4ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.featured-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.featured-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.featured-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(95, 164, 255, 0.3);
  color: #000;
  text-decoration: none;
}

.featured-cta-button:hover::before {
  left: 100%;
}

@media (max-width: 767px) {
  .section_h2 {
    padding: 80px 0 !important;
    min-height: 100vh !important;
  }
  
  .h2__audio-performance {
    margin-bottom: 60px !important;
    padding: 0 20px !important;
  }
  
  .sub-heading {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
  }
  
  .heading-style-h2 {
    font-size: 3.2rem !important;
    margin-bottom: 40px !important;
  }
  
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 20px;
    margin-top: 40px !important;
  }
  
  .featured-product-card {
    padding: 3rem 2.5rem;
    min-height: 500px !important;
    margin-bottom: 20px;
  }
  
  .featured-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .featured-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .featured-description {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .featured-price {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .featured-cta-button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
  }
}

/* Banner Pre-Save Estilo Cyberpunk */
.presave-banner-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(5,15,25,0) 0%, rgba(10,20,30,1) 50%, rgba(5,15,25,0) 100%);
  position: relative;
  overflow: hidden;
}

.presave-banner {
  background: linear-gradient(135deg, rgba(15,25,35,0.95) 0%, rgba(20,30,40,0.95) 100%);
  border: 1px solid rgba(95, 164, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
}

.presave-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(95, 164, 255, 0.15), transparent);
  animation: bannerShimmer 8s ease-in-out infinite;
}

@keyframes bannerShimmer {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

.presave-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.presave-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.presave-image-wrapper:hover {
  transform: scale(1.05);
}

.presave-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presave-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.presave-image-wrapper:hover .presave-play-icon {
  opacity: 1;
}

.presave-play-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.presave-info {
  flex: 1;
}

.presave-label {
  display: inline-block;
  background: rgba(95,164,255,0.2);
  color: #5fa4ff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.presave-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.presave-artist {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.presave-button {
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.presave-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #e6c041 0%, #c9960c 100%);
}

.presave-button-icon {
  width: 18px;
  height: 18px;
}

.presave-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.6);
}

.presave-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: rotate(90deg);
}

.presave-close svg {
  width: 16px;
  height: 16px;
}

/* Animación de entrada */
.presave-banner-section {
  animation: slideInFade 0.8s ease-out;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .presave-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .presave-image-wrapper {
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }
  
  .presave-title {
    font-size: 2rem;
  }
  
  .presave-button {
    margin-top: 1rem;
  }
  
  .presave-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* Preloader RAPER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  width: 300px;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  animation: fadeInText 0.8s ease-out;
  letter-spacing: 0.1em;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, #5fa4ff, #4fd1c5);
  border-radius: 50px;
  animation: loadingBar 2s ease-out forwards;
}

@keyframes loadingBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.preloader-text {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInText 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

/* Popup Flotante Pre-Save - Estilo Cyberpunk */
.presave-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 320px;
  background: linear-gradient(145deg, rgba(15,25,35,0.98), rgba(10,20,30,0.98));
  border: 1px solid rgba(95, 164, 255, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.presave-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.presave-popup::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(95, 164, 255, 0.15) 0%, transparent 70%);
  animation: popupGlow 3s ease-in-out infinite;
}

@keyframes popupGlow {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 28px;
  height: 28px;
  background: rgba(95, 164, 255, 0.1);
  border: 1px solid rgba(95, 164, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.6);
  z-index: 2;
}

.popup-close:hover {
  background: rgba(95, 164, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
  border-color: rgba(95, 164, 255, 0.5);
  box-shadow: 0 0 10px rgba(95, 164, 255, 0.3);
}

.popup-close svg {
  width: 14px;
  height: 14px;
}

.popup-image {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-bottom: 1px solid rgba(95, 164, 255, 0.2);
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulseBadge 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(95, 164, 255, 0.5);
}

@keyframes pulseBadge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(95, 164, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(95, 164, 255, 0.7);
  }
}

.popup-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(95, 164, 255, 0.3);
}

.popup-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1rem 0;
}

.popup-cta {
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 5px 15px rgba(95, 164, 255, 0.3);
}

.popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(95, 164, 255, 0.4);
  background: linear-gradient(135deg, #4fd1c5 0%, #5fa4ff 100%);
}

/* Animación de entrada con rebote */
@keyframes popupBounce {
  0% {
    transform: translateY(150%) scale(0.8);
  }
  60% {
    transform: translateY(-10%) scale(1.02);
  }
  80% {
    transform: translateY(5%) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.presave-popup.show {
  animation: popupBounce 0.8s ease-out;
}

/* Responsive para popup */
@media (max-width: 480px) {
  .presave-popup {
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

/* Opción alternativa: Popup Central (descomentar si se prefiere) */
/*
.presave-popup.center-style {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0);
  width: 400px;
  max-width: 90%;
}

.presave-popup.center-style.show {
  transform: translate(-50%, -50%) scale(1);
}
*/ 

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem; /* Aumentado para mejor área tactil */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px; /* Aumentado de 40px a 50px */
  height: 50px; /* Aumentado de 40px a 50px */
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-line {
  display: block;
  width: 30px; /* Aumentado de 25px a 30px */
  height: 3px; /* Aumentado de 2px a 3px */
  background-color: #fff;
  margin: 4px 0; /* Reducido para mantener proporción */
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* Sombra para mejor visibilidad */
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding-top: 6rem;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-links {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInMobile 0.5s ease forwards;
}

.mobile-menu-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInMobile {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: rgba(95, 164, 255, 0.1);
  color: #5fa4ff;
}

.mobile-menu-contact {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-menu-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  opacity: 0.8;
}

/* RESPONSIVE MEDIA QUERIES - MOBILE FIRST APPROACH */

/* Mobile Responsive Styles */
@media (max-width: 767px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Root variables adjustment for mobile - Aumentar tamaño base */
  :root {
    font-size: 16px; /* Aumentado de 14px a 16px */
  }
  
  /* Body and main containers */
  body {
    overflow-x: hidden;
    font-size: 1.6rem; /* Asegurar tamaño base adecuado */
  }
  
  .page-wrapper {
    overflow-x: hidden;
  }
  
  /* Navbar mobile adjustments */
  .navbar-sticky {
    height: 5rem; /* Aumentado de 4rem a 5rem */
    padding: 0 1.5rem; /* Aumentado padding */
  }
  
  .navbar-sticky__container {
    padding: 0;
    width: 100%;
  }
  
  .navbar-sticky__wrapper {
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
  }
  
  .navbar-sticky__heading {
    max-width: 45%; /* Reducido para dar más espacio al carrito */
    padding: 0.25rem;
    flex-shrink: 0;
  }
  
  .navbar-sticky__links-wrapper {
    display: none !important;
  }
  
  .navbar-logo {
    height: 32px;
    max-width: 120px; /* Reducido para dar más espacio */
    width: auto;
  }
  
  /* Crear un contenedor para carrito y menú móvil */
  .navbar-actions {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1000;
  }
  
  /* Carrito en móvil */
  .cart-icon-wrapper {
    display: flex !important;
    position: relative;
    padding: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    min-width: 40px;
    min-height: 40px;
    flex-shrink: 0;
  }
  
  .cart-icon {
    width: 20px;
    height: 20px;
  }
  
  #cart-count {
    top: -3px;
    right: -3px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }
}

/* Small tablets and landscape phones */
@media (min-width: 768px) and (max-width: 991px) {
  .container-large {
    padding: 0 2rem;
  }
  
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .presave-content {
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
  }
}

/* Tablets and small desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem; /* Aumentado para consistencia */
  }
  
  .hero-subtitle {
    font-size: 1.4rem; /* Aumentado para mejor legibilidad */
  }
  
  .hero-cta-button {
    padding: 1.2rem 2rem; /* Aumentado padding */
    font-size: 1.2rem; /* Aumentado tamaño */
  }
  
  .navbar-logo {
    height: 30px; /* Ajustado para pantallas muy pequeñas */
    max-width: 120px;
  }
  
  .navbar-sticky {
    height: 4.5rem; /* Ajustado para pantallas muy pequeñas */
    padding: 0 1rem;
  }
  
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
  
  .presave-popup {
    margin: 1rem;
    padding: 2rem; /* Aumentado padding */
    border-radius: 16px;
  }
  
  /* Descomprimir más en móviles muy pequeños */
  .section_h2 {
    padding: 100px 0 !important;
    min-height: 120vh !important;
  }
  
  .featured-products-grid {
    gap: 4rem !important;
    padding: 0 15px !important;
  }
  
  .featured-product-card {
    padding: 3.5rem 2rem !important;
    min-height: 550px !important;
    margin-bottom: 30px !important;
  }
  
  .featured-icon {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 30px !important;
  }
  
  .featured-title {
    font-size: 2.4rem !important;
    margin-bottom: 25px !important;
  }
  
  .featured-description {
    font-size: 1.6rem !important;
    line-height: 1.8 !important;
    margin-bottom: 35px !important;
  }
  
  .featured-price {
    font-size: 2.2rem !important;
    margin-bottom: 30px !important;
  }
  
  .featured-cta-button {
    padding: 1.8rem !important;
    font-size: 1.6rem !important;
  }
  
  /* Asegurar que el texto sea legible en pantallas muy pequeñas */
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  .container-large,
  .container-medium {
    padding: 0 1rem;
  }
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-minimal {
    padding: 3rem 0 2rem;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-tagline {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
  
  .contact-item {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-product-card {
    padding: 2rem;
  }
  
  .featured-icon {
    font-size: 3rem;
  }
  
  .featured-title {
    font-size: 1.5rem;
  }
  
  .featured-price {
    font-size: 2rem;
  }
}

/* Efectos adicionales cyberpunk */
.featured-product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(95, 164, 255, 0.05) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.featured-product-card:hover::after {
  opacity: 1;
}

/* Glow effect para elementos interactivos */
.presave-button,
.popup-cta,
.contact-item {
  position: relative;
  overflow: hidden;
}

.presave-button::before,
.popup-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.presave-button:hover::before,
.popup-cta:hover::before {
  left: 100%;
}

/* Animación de partículas para el banner */
.presave-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 25% 25%, rgba(95, 164, 255, 0.3), transparent),
    radial-gradient(1px 1px at 75% 75%, rgba(79, 209, 197, 0.2), transparent),
    radial-gradient(1px 1px at 50% 10%, rgba(95, 164, 255, 0.2), transparent);
  background-size: 100px 100px;
  animation: particleFloat 15s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes particleFloat {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Efecto de scan line cyberpunk */
.presave-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(95, 164, 255, 0.8), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(100px);
    opacity: 1;
  }
}

/* Estilos para página de producto mejorada */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(95, 164, 255, 0.1), rgba(79, 209, 197, 0.1));
  border: 1px solid rgba(95, 164, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.price-current {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(95, 164, 255, 0.5);
}

.price-label {
  font-size: 1.4rem;
  color: #888;
  font-weight: 500;
}

.product-specs {
  background: linear-gradient(145deg, rgba(12,20,30,0.9), rgba(8,15,25,0.95));
  border: 1px solid rgba(95, 164, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.specs-title {
  font-size: 2.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #5fa4ff, #4fd1c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: #e0e0e0;
  padding: 1rem;
  background: rgba(95, 164, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(95, 164, 255, 0.1);
  transition: all 0.3s ease;
}

.spec-item:hover {
  background: rgba(95, 164, 255, 0.1);
  border-color: rgba(95, 164, 255, 0.3);
  transform: translateY(-2px);
}

.spec-icon {
  font-size: 2rem;
  min-width: 2rem;
  text-align: center;
}

/* Responsive para especificaciones */
@media (max-width: 767px) {
  .product-price {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .price-current {
    font-size: 2.5rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .spec-item {
    font-size: 1.4rem;
    padding: 0.8rem;
  }
  
  .product-specs {
    padding: 2rem;
    margin-top: 2rem;
  }
}

/* Corrección específica para el contenedor de imagen de auriculares */
.h2__h2-box.is_video {
  padding-bottom: 0 !important; /* Eliminar padding inferior que causa el problema */
  min-height: 400px; /* Altura mínima para dar espacio */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.h2__h2-video {
  aspect-ratio: unset !important; /* Eliminar aspect-ratio fijo */
  height: auto !important; /* Permitir altura automática */
  min-height: 350px !important; /* Altura mínima para el contenedor */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2rem !important; /* Padding interno para espaciado */
}

/* Asegurar que la imagen dentro se centre correctamente */
.h2__h2-video img {
  width: 85% !important;
  height: auto !important;
  object-fit: contain !important;
  max-height: 300px !important; /* Altura máxima para la imagen */
  border-radius: 12px !important;
  filter: drop-shadow(0 0 20px rgba(95, 164, 255, 0.3)) !important;
}

/* Responsive para móvil */
@media (max-width: 767px) {
  .h2__h2-box.is_video {
    min-height: 300px;
    padding: 1rem !important;
  }
  
  .h2__h2-video {
    min-height: 250px !important;
    padding: 1rem !important;
  }
  
  .h2__h2-video img {
    max-height: 200px !important;
    width: 90% !important;
  }
}