/* ============================================
   ESTILOS GLOBALES ACTUALIZADOS
============================================ */

:root {
    --color-fondo: #0a0a0a;
    --color-texto: #f0f0f0;
    --color-hover: #ffffff;
    --color-acento: #a94fff;
    --color-acento-claro: #c27fff;
    --color-borde: rgba(255, 255, 255, 0.1);
    --color-glow: rgba(169, 79, 255, 0.4);
    --radius-lg: 20px;
    --font-principal: 'Montserrat', sans-serif;
    --font-secundaria: 'Roboto', sans-serif;
  }

  body {
    font-family: var(--font-principal);
    /* background-color: var(--color-fondo); */
    background-color: #f5f5f5;
    color: var(--color-texto);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }

  a:hover {
    color: var(--color-hover);
  }

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

  /* ============================================
     HEADER STICKY - REFINADO
  ============================================ */

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: url('https://static.wixstatic.com/media/c837a6_62f24bc406f0421aa3c07aefef8b8107~mv2.jpg/v1/fill/w_1920,h_255,al_c,q_85,enc_avif,quality_auto/c837a6_62f24bc406f0421aa3c07aefef8b8107~mv2.jpg')
      no-repeat center center;
    background-size: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-borde);
  }

  .navbar {
    padding: 18px 50px;
  }

  .navbar-brand img.logo {
    height: 50px;
    transition: transform 0.3s ease;
  }

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

  .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    text-transform: capitalize;
    margin: 0 18px;
    color: #ffffff;
    padding: 8px 4px;
    position: relative;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-hover);
    transition: width 0.3s ease;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 2px solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

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

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

  /* Carrito ícono */
  .navbar-nav .nav-link i {
    font-size: 1.2rem;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .navbar-nav .nav-link i:hover {
    color: var(--color-hover);
    transform: scale(1.2);
  }

  /* Toggle mobile */
  .navbar-toggler {
    border: none;
    background: transparent;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  /* ============================================
     DROPDOWN PRODUCTOS PERSONALIZADO
  ============================================ */

  .dropdown-menu {
    background-color: #121212;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-borde);
    box-shadow: 0 0 25px var(--color-glow);
    padding: 12px 0;
    min-width: 200px;
    overflow: hidden;
  }

  .dropdown-item {
    color: var(--color-texto);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }

  .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-hover);
    border-left: 3px solid var(--color-acento);
  }

  /* Responsive menu */
  @media (max-width: 991.98px) {
    .navbar {
      padding: 12px 20px;
    }

    .navbar-nav {
      background-color: #0f0f0f;
      padding: 20px;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .navbar-nav .nav-link {
      margin: 10px 0;
      text-align: center;
    }
  }


  /* ============================================
   CARRITO CON EFECTO "BASKETBALL"
============================================ */

.cartButton {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--color-hover);
    font-size: 1.4rem;
    transition: color 0.25s ease;
    line-height: 1;
    overflow: visible;
  }

  .cartButton:hover {
    color: var(--color-acento);
  }

  /* Ícono del carrito */
  .cartButton i.bi-cart {
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
  }

  /* Badge sobre el carrito */
  .cart-badge {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 18px;
    height: 18px;
    background-color: var(--color-acento);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
    box-shadow: 0 0 6px var(--color-glow);
    pointer-events: none;
    z-index: 2;
    transform-origin: center;
    transition: transform 0.3s ease;
  }

  /* Hover: activa animación parabólica */
  .cartButton:hover .cart-badge {
    animation: badgePopOut 0.45s forwards ease-in-out;
  }

  /* Salida parabólica */
  @keyframes badgePopOut {
    0% {
      transform: translate(0, 0);
    }
    40% {
      transform: translate(0px, -10px);
    }
    100% {
      transform: translate(10px, 0px);
    }
  }

  /* Salida invertida al quitar hover */
  .cartButton:not(:hover) .cart-badge {
    animation: badgePopIn 0.45s forwards ease-in-out;
  }

  /* Vuelta a la canasta */
  @keyframes badgePopIn {
    0% {
      transform: translate(10px, 0px);
    }
    60% {
      transform: translate(0px, -8px);
    }
    100% {
      transform: translate(0, 0);
    }
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    .cartButton {
      padding: 12px;
    }

    .cart-badge {
      width: 16px;
      height: 16px;
      font-size: 0.6rem;
      top: 4px;
      right: 6px;
    }
  }



  /* ----------------------- Footer --------------------------- */
  /* ----------------------- Footer --------------------------- */
  /* ----------------------- Footer --------------------------- */
  /* ----------------------- Footer --------------------------- */

/* ============================================
   FOOTER CYBER-GAMER PREMIUM UNIFICADO
============================================ */

.footer {
    background-color: #1a2b56;
    color: var(--color-texto);
    font-family: var(--font-principal);
    padding: 60px 30px 30px;
    border-top: 1px solid var(--color-borde);
    font-size: 0.9rem;
    animation: fadeInGlow 1s ease-in-out;
  }

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

  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-col {
    flex: 1 1 120px;
    min-width: 180px;
  }

  .footer-logo {
    width: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px var(--color-glow));
  }

  /* Íconos sociales */
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-borde);
    color: var(--color-hover);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    transform-origin: center;
    overflow: hidden;
    position: relative;
  }

  .footer-social a:hover {
    background-color: var(--color-acento);
    color: #000;
    transform: scale(1.15) rotate(12deg);
    animation: wavePulse 1.1s ease-in-out;
    box-shadow: 0 0 12px var(--color-glow);
  }

 /* Efecto de oleada (wave) */
@keyframes wavePulse {
    0% {
      box-shadow: 0 0 0 0 rgba(169, 79, 255, 0.35);
    }
    50% {
      box-shadow: 0 0 15px 10px rgba(169, 79, 255, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(169, 79, 255, 0);
    }
  }

  /* Títulos */
  .footer-col h3 {
    color: #f5f5f5;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

  /* Listas de links */
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    position: relative;
    display: inline-block;
    padding-left: 0;
    color: #f5f5f5;
    transition: color 0.3s ease, padding 0.3s ease;
    font-weight: 550;
  }

  .footer-col ul li a::before {
    content: '»';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    font-size: 1.2rem;
    color: var(--color-acento);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .footer-col ul li a:hover {
    color: var(--color-acento-claro);
    padding-left: 10px;
  }

  .footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* Texto simple */
  .footer-col p {
    color: #f5f5f5;
    margin-bottom: 10px;
    font-weight: 550;
  }

  /* Separador */
  .footer-separator {
    border: none;
    border-top: 0.7px solid #f5f5f5;
    margin: 40px 0 20px;
  }

  /* Créditos */
  .footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #f5f5f5;
    font-weight: 550;
  }

  .footer-copy a {
    color: var(--color-acento-claro);
    text-decoration: underline;
  }

  .footer-copy i {
    color: #f5f5f5;
    margin: 0 5px;
  }

  /* Fade in glow */
  @keyframes fadeInGlow {
    0% {
      opacity: 0;
      box-shadow: 0 0 0 transparent;
    }
    100% {
      opacity: 1;
      box-shadow: 0 0 25px var(--color-glow);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-col {
      width: 100%;
    }

    .footer-social {
      margin-top: 15px;
      margin-bottom: 20px;
    }

    .footer-copy {
      margin-top: 30px;
    }
  }



  /* --------------------- Hero -------------------- */
  /* --------------------- Hero -------------------- */
  /* --------------------- Hero -------------------- */
  /* --------------------- Hero -------------------- */

  /* hero */

  .hero {
    /* background-image: url('https://static.wixstatic.com/media/c837a6_4c85fbe456dd43eb80da652eb2d410af~mv2.jpg/v1/fill/w_2880,h_1396,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/c837a6_4c85fbe456dd43eb80da652eb2d410af~mv2.jpg'); */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1200px;
    gap: 0;
  }

  .hero-card {
    border-radius: 20px;
    padding: 40px;
    flex: 1 1 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    color: white;
  }

  .hero-card.left-card {
    background-color: #6F37DF;
  }

  .hero-card.left-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin: 15px 0;
  }

  .hero-card.left-card h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 700;
    margin: 0;
  }

  .btn-cta {
    display: inline-block;
    width: auto;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    background-color: white;
    color: #743AE8;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 1px solid white;
  }

  .btn-cta:hover {
    background-color: #743AE8;
    color: white;
    border-color: white;
  }

  .hero-card.image-card {
    /* background-image: url('https://static.wixstatic.com/media/c837a6_7c7101b9ee5e4c8da4855ceb9b513a14~mv2.jpg/v1/crop/x_90,y_0,w_1361,h_1759/fill/w_1072,h_1378,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/Cyber%20copy.jpg'); */
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
    top: 0;
  }

  @media (max-width: 768px) {
    .card-container {
      flex-direction: column;
      align-items: center;
    }
    .hero-card {
      flex: 1 1 100%;
    }
  }

  /* end hero */

  /* Sección AHORRA */
  .ahorra-seccion {
    position: relative;
    /* background-image: url('https://static.wixstatic.com/media/c837a6_678a6092e54043ed9b4081c2463ed428~mv2.jpg/v1/fill/w_1960,h_1018,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/c837a6_678a6092e54043ed9b4081c2463ed428~mv2.jpg'); */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 160px 0;
  }

  .ahorra-seccion::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* oscurece la imagen para mejorar la legibilidad */
    z-index: 1;
  }

  .ahorra-contenido {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 20px;
  }

  .ahorra-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 700;
    margin: 0 0 20px;
  }

  .ahorra-subtitulo {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px;
  }

  /* END AHORRA */

  /* .hero {
    position: relative;
    height: 88vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-image: url('https://wallpaperaccess.com/full/447503.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 30px;
    z-index: 1;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }

  .card-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
  }

  .hero-card.left-card {
    flex: 1;
    color: var(--color-texto);
    font-family: var(--font-principal);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-acento-claro);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .hero-card.left-card h1 {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--color-hover);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--color-glow);
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    animation: none;
  }

  .hero-title {
    font-size: 4.4rem;
    font-weight: 900;
    color: var(--color-hover);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 12px var(--color-glow);
    white-space: nowrap;
  }

  .hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ddd;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero-card.left-card {
    flex: none;
    width: 680px;
    max-width: 90%;
    color: var(--color-texto);
    font-family: var(--font-principal);
    background: rgba(169, 79, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: 0 0 30px rgba(169, 79, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.4s ease;
  }

  .hero-card.left-card:hover {
    box-shadow: 0 0 40px rgba(169, 79, 255, 0.25);
  }

  .hero-card.image-card {
    flex: 1;
    background: url('https://i.pinimg.com/originals/2e/d1/ae/2ed1aee69ed8f0a26817a5697e00864a.png') no-repeat center center;
    background-size: contain;
    height: 420px;
    animation: floatHero 3.5s ease-in-out infinite;
  }

  @keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  } */

  /* ============================================
     BOTÓN CYBERGLOW - VERSIÓN EXTENDIDA
  ============================================ */

  .btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-lg);
    padding: 16px 36px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background-color: var(--color-acento);
    color: #000;
    box-shadow: 0 0 15px var(--color-glow);
  }

  .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
    transform: skewX(-20deg);
  }

  .btn-primary:hover::after {
    left: 100%;
  }

  .btn-primary:hover {
    background-color: var(--color-acento-claro);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px var(--color-glow);
  }

  /* Responsive */
  @media (max-width: 991.98px) {
    .card-container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .hero-title {
      font-size: 3.2rem;
    }

    .hero-card.image-card {
      height: 320px;
    }
  }

  @media (max-width: 576px) {
    .hero-title {
      font-size: 2.3rem;
    }

    .hero-subtitle,
    .hero-description {
      font-size: 1rem;
    }

    .btn {
      padding: 12px 24px;
      font-size: 0.95rem;
    }

    .hero-card.image-card {
      height: 240px;
    }
  }





  /* ---------------------- mini sections and products cart ------------------- */
  /* ---------------------- mini sections and products cart ------------------- */
  /* ---------------------- mini sections and products cart ------------------- */
  /* ---------------------- mini sections and products cart ------------------- */
  /* ---------------------- mini sections and products cart ------------------- */

  /* ============================================
   SECCIÓN MÁS VENDIDOS / PRODUCT-CARD CYBER-GAMER
============================================ */

.mas-vendidos {
    padding: 80px 0;
    background-color: #0a0a0a;
    color: var(--color-texto);
  }

  .titulo-seccion {
    font-family: var(--font-principal);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hover);
    margin: 0;
    text-shadow: 0 0 8px var(--color-glow);
  }

  .btn-ver-todo {
    font-size: 0.95rem;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid var(--color-acento);
    color: var(--color-acento);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .btn-ver-todo:hover {
    background-color: var(--color-acento);
    color: #000;
    box-shadow: 0 0 12px var(--color-glow);
  }

  /* Estilos base del card de producto */
  .product-card {
    background-color: #121212;
    border: 1px solid var(--color-borde);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px var(--color-glow);
  }

  .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Siempre cuadrado y responsivo */
    background-color: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene proporción, recorta si es necesario */
    transition: transform 0.4s ease;
  }

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

  .oferta-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-acento);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 8px var(--color-glow);
    z-index: 2;
  }

  .product-info {
    padding: 20px;
    text-align: center;
  }

  .product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-hover);
    font-family: var(--font-principal);
    text-shadow: 0 0 6px rgba(255,255,255,0.06);
  }

  .product-price {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
    font-size: 0.95rem;
  }

  .btn-agregar {
    display: inline-block;
    font-family: var(--font-principal);
    padding: clamp(10px, 2.5vw, 12px) clamp(18px, 5vw, 24px);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    background-color: var(--color-acento);
    color: #000;
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--color-glow);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
  }

  .btn-agregar i {
    margin-left: 8px;
    font-size: clamp(0.85rem, 1.4vw, 1rem);
  }

  /* Hover */
  .btn-agregar:hover {
    background-color: var(--color-acento-claro);
    transform: scale(1.06);
    color: #000;
  }


  /* Ajustes para Owl Carousel */
  .owl-carousel .product-card {
    margin: 15px;
  }

  @media (max-width: 768px) {
    .titulo-seccion {
      font-size: 1.6rem;
    }
    .product-card {
      min-height: 400px;
    }
    .btn-agregar {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }


  /* ============================================
   SECCIÓN MÁS VENDIDOS - CARDS UNIFICADOS
============================================ */

.mas-vendidos {
    padding: 80px 0 60px;
    /* background-color: #0c0c0c; */
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
  }

  /* Título y botón superior */
  .titulo-seccion {
    font-family: var(--font-principal);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-hover);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 12px var(--color-glow);
  }

  .titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-acento), transparent);
    border-radius: 2px;
    transition: width 0.4s ease;
  }

  .titulo-seccion:hover::after {
    width: 100%;
  }

  .btn-ver-todo {
    background-color: transparent;
    border: 1px solid var(--color-acento);
    color: var(--color-acento);
    font-family: var(--font-secundaria);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }

  .btn-ver-todo::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .btn-ver-todo:hover {
    background-color: var(--color-acento);
    color: #000;
    transform: scale(1.05);
  }

  .btn-ver-todo:hover::after {
    transform: translateX(4px);
  }

  /* ============================================
     CARD DE PRODUCTO
  ============================================ */

  .product-card {
    /* background: #121212; */
    background: #f5f5f5;
    border: 1px solid var(--color-borde);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    /* box-shadow: 0 0 15px rgba(169, 79, 255, 0.05); */
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.5);
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px var(--color-glow);
  }

  .product-image {
    position: relative;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
  }

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

  .oferta-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-acento);
    /* color: #000; */
    color: #f5f5f5;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 12px;
    box-shadow: 0 0 10px var(--color-glow);
    text-transform: uppercase;
    z-index: 2;
  }

  .product-info {
    padding: 20px 16px;
    text-align: center;
  }

  .product-name {
    font-family: var(--font-principal);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-hover);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .product-name:hover {
    color: var(--color-acento);
  }

  .product-price {
    font-family: var(--font-secundaria);
    font-size: 0.95rem;
    /* color: var(--color-texto); */
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.85rem;
  }

  /* ============================================
     BOTÓN AGREGAR AL CARRITO
  ============================================ */

  .btn-agregar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--color-acento);
    color: #000;
    font-family: var(--font-principal);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 10px var(--color-glow);
    transition: all 0.3s ease;
    text-transform: none;
  }

  .btn-agregar i {
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .btn-agregar:hover {
    background-color: var(--color-acento-claro);
    transform: scale(1.05);
  }

  .btn-agregar:hover i {
    transform: translateX(3px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .titulo-seccion {
      font-size: 1.6rem;
      text-align: center;
    }

    .btn-ver-todo {
      font-size: 0.85rem;
    }

    .product-info {
      padding: 16px;
    }

    .product-name {
      font-size: 1rem;
    }

    .btn-agregar {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }

  .btn-agregar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-acento);
    /* color: #000; */
    color: #f5f5f5;
    font-family: var(--font-principal);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 12px var(--color-glow);
    transition: all 0.3s ease;
    text-transform: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .btn-agregar i {
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  /* Hover - icono se desliza */
  .btn-agregar:hover {
    background-color: var(--color-acento-claro);
    transform: scale(1.05);
  }

  .btn-agregar:hover i {
    transform: translateX(4px);
  }

  /* Click - rebote sutil */
  .btn-agregar:active {
    transform: scale(0.97);
    box-shadow: 0 0 6px var(--color-glow);
  }

  /* Animación de rotación para el ícono del carrito */
@keyframes cartRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Aplicamos animación sólo al ícono dentro del botón al hacer clic */
  .btn-agregar i.clicked {
    animation: cartRotate 0.5s ease-in-out;
  }



  /* ------------------- Categorias ------------------- */
  /* ------------------- Categorias ------------------- */
  /* ------------------- Categorias ------------------- */
  /* ------------------- Categorias ------------------- */

  /* ============================================
   SECCIÓN CATEGORÍAS - CYBER-GAMER PREMIUM (v2)
============================================ */

.categorias-seccion {
    /* background-color: #1c1c1c; */
    background-color: #f5f5f5;
    padding: 80px 0 60px;
  }

  .categoria-card {
    background-color: #121212;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .categoria-card::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom left, rgba(169, 79, 255, 0.25), transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  .categoria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 28px rgba(169, 79, 255, 0.25);
  }

  .categoria-img {
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  .categoria-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .categoria-card:hover .categoria-img img {
    transform: scale(1.05);
  }

  .categoria-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.85));
    z-index: 2;
  }

  .categoria-nombre {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 18px 0 14px;
    letter-spacing: 0.7px;
    position: relative;
    z-index: 3;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.4),
      -2px 2px 6px rgba(169, 79, 255, 0.25);
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .categoria-card:hover .categoria-nombre {
    color: var(--color-acento);
    text-shadow:
      0 2px 6px rgba(255, 255, 255, 0.4),
      -3px 3px 8px rgba(169, 79, 255, 0.4);
  }

  /* Título de sección */
  .titulo-seccion {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    /* color: #fff; */
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
    position: relative;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
  }

  @media (max-width: 767.98px) {
    .titulo-seccion {
      font-size: 1.8rem;
    }

    .categoria-nombre {
      font-size: 1.05rem;
    }

    .categoria-card {
      border-radius: 1rem;
    }

    .categoria-img img {
      border-radius: 1rem 1rem 0 0;
    }
  }



  /* ----------------------- ofertas de la semana -------------------- */
  /* ----------------------- ofertas de la semana -------------------- */
  /* ----------------------- ofertas de la semana -------------------- */
  /* ----------------------- ofertas de la semana -------------------- */

  /* Sección OFERTAS */
.ofertas-seccion {
    background-color: #080608;
    padding: 100px 0 180px 0;
    position: relative;
    overflow: hidden;
  }

  /* Card superior */
  .oferta-destacada-card {
    position: absolute;
    left: 20%;
    top: 30%;
    transform: translateY(-50%);
    width: 560px;
    background: linear-gradient(145deg, #6F37DF, #8C52FF);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 0 25px rgba(169, 79, 255, 0.3);
    z-index: 5;
    animation: fadeInRight 1.5s ease forwards;
    opacity: 0;
  }

  .oferta-destacada-card .oferta-titulo {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
  }

  .oferta-destacada-card .oferta-descuento {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    min-height: 140px;
  }

  .oferta-destacada-card .oferta-detalle {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
  }

  .btn-cta {
    margin-top: 20px;
    background-color: white;
    color: #6F37DF;
    font-weight: 700;
    border-radius: 20px;
    padding: 10px 25px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-cta:hover {
    background-color: #6F37DF;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 12px #a94fff;
  }

  /* Cards de fondo */
  .ofertas-cards {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    padding-right: 5%;
    padding-top: 50px;
  }

  .oferta-card {
    width: 260px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
    position: relative;
    opacity: 0;
    transition: all 1s ease;
  }
  .oferta-card:hover {
    transform: scale(1.06);
    box-shadow: 0 0 35px #a94fff99;
  }

  .fondo-izquierda {
    /* background-image: url('https://static.wixstatic.com/media/c837a6_e07b7f0bd83545608cf2cfce23b9b22f~mv2.jpg'); */
    margin-right: -60px;
    animation: fadeInUp 1s 0.4s ease forwards;
    transform: scale(0.95) translateY(30px);
    z-index: 1;
  }
  .fondo-centro {
    /* background-image: url('https://static.wixstatic.com/media/c837a6_e93c705ac75d4b1695316ad1e73dafd8~mv2.jpg'); */
    animation: fadeInUp 1s 0.6s ease forwards;
    transform: scale(1) translateY(0);
    z-index: 2;
  }
  .fondo-derecha {
    /* background-image: url('https://static.wixstatic.com/media/c837a6_f1507c37d4234fe3b6847f4ab805d86d~mv2.jpg'); */
    margin-left: -60px;
    animation: fadeInUp 1s 0.8s ease forwards;
    transform: scale(1.05) translateY(-20px);
    z-index: 1;
  }

  /* Animaciones */
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .ofertas-cards {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding-right: 0;
    }
    .oferta-card {
      width: 80%;
      height: 300px;
      margin: 0;
      transform: none !important;
    }
    .oferta-destacada-card {
      position: static;
      transform: none;
      margin-bottom: 40px;
      width: auto;
    }
    .oferta-destacada-card .oferta-descuento {
      font-size: 80px;
      min-height: 90px;
    }
    .oferta-destacada-card .oferta-detalle {
      font-size: 26px;
    }
  }






/* ============================================
   DETALLE DE PRODUCTO GAMER PREMIUM
============================================ */

.product-details-area {
    padding: 100px 0;
    /* background-color: var(--color-fondo); */
    color: var(--color-texto);
  }

  .product-gallery {
    position: relative;
    border: 1px solid var(--color-borde);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #ddd;
    padding: 20px;
    box-shadow: 0 0 12px var(--color-glow);
  }

  .product-gallery .main-image {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(169, 79, 255, 0.25);
  }

  .gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .thumb-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .thumb-image.active,
  .thumb-image:hover {
    border-color: var(--color-acento);
    transform: scale(1.05);
  }

  /* Información del producto */

  .product-details-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    /* color: var(--color-hover); */
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .product-ratting-review-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }

  .product-ratting i {
    color: gold;
    margin-right: 4px;
  }

  .product-digit span {
    font-size: 1rem;
    /* color: var(--color-acento); */
    color: var(--color-acento);
  }

  .product-details-content p{
    color: #1a1a1a!important;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.7px;
  }

  .product-review-order span {
    font-size: 0.85rem;
    margin-right: 10px;
    color: #999;
  }

  /* Precios */

  .pro-details-price {
    margin: 20px 0;
  }

  .new-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-acento);
    margin-right: 15px;
  }

  .old-price {
    font-size: 1.2rem;
    color: #777;
    text-decoration: line-through;
  }

  /* Meta info */

  .product-details-meta ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .product-details-meta li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .product-details-meta span {
    font-weight: 600;
    /* color: var(--color-hover); */
    color: #1a1a1a;
  }

  .product-details-meta a {
    font-weight: bold;
    color: var(--color-acento);
    margin-right: 15px;
  }

  /* Botones */

  /* .pro-details-add-to-cart a {
    background-color: var(--color-acento);
    color: #000;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 12px var(--color-glow);
  }

  .pro-details-add-to-cart a:hover {
    background-color: var(--color-acento-claro);
    transform: translateY(-2px);
  } */

  .pro-details-action .social {
    margin-right: 15px;
    font-size: 1.3rem;
    color: var(--color-texto);
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .pro-details-action .social:hover {
    transform: scale(1.2);
    color: var(--color-acento);
  }

  /* Redes sociales */

  .product-dec-social {
    margin-top: 10px;
  }

  .product-dec-social a {
    margin-right: 12px;
    color: var(--color-hover);
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .product-dec-social a:hover {
    color: var(--color-acento-claro);
    transform: scale(1.2);
  }

  /* ============================================
   BREADCRUMB - GAMER PREMIUM
============================================ */
.breadcrumb-area {
    background-color: #ddd;
    padding: 60px 0 40px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.05);
  }

  .breadcrumb-content {
    text-align: center;
  }

  .breadcrumb-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-montserrat);
    font-size: 0.95rem;
    color: var(--color-texto);
    position: relative;
  }

  .breadcrumb-content ul li {
    color: #aaa;
    position: relative;
  }

  .breadcrumb-content ul li::after {
    content: "/";
    color: #555;
    margin: 0 10px;
  }

  .breadcrumb-content ul li:last-child::after {
    content: "";
    display: none;
  }

  .breadcrumb-content ul li a {
    color: var(--color-acento);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
  }

  .breadcrumb-content ul li a:hover {
    color: var(--color-hover);
    text-shadow: 0 0 6px var(--color-glow);
  }

  .breadcrumb-content ul li.active {
    color: #1a1a1a;
    font-weight: 600;
  }



  /* ============================================
     DESCRIPCIÓN Y ESPECIFICACIONES
  ============================================ */
  .description-review-wrapper {
    background-color: #0f0f0f;
    padding: 50px 0 80px;
    border-top: 1px solid #1e1e1e;
  }

  .dec-review-topbar a {
    font-family: var(--font-montserrat);
    font-weight: 600;
    color: var(--color-hover);
    padding: 10px 22px;
    background-color: #1a1a1a;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .dec-review-topbar a.active,
  .dec-review-topbar a:hover {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #000;
    box-shadow: 0 0 10px var(--color-glow);
  }

  .description-wrap p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
  }

  /* Tabla de especificaciones */
  .specification-wrap {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.1);
  }

  .specification-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background-color: #f0f0f3;
  }

  .specification-wrap td {
    padding: 16px 20px;
    color: #ddd;
    border-bottom: 1px solid #2a2a2a;
  }

  .specification-wrap td.title {
    background-color: #191919;
    color: var(--color-hover);
    font-weight: 600;
    width: 40%;
  }


  /* ============================================
     BOTONES DE ACCIÓN & REDES
  ============================================ */
  .pro-details-action-wrap {
    margin-top: 40px;
    border-top: 0.6px solid #a94fff;
    padding-top: 30px;
  }

  .pro-details-add-to-cart a {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #f5f5f5;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-montserrat);
    border-radius: var(--radius-lg);
    /* text-transform: uppercase; */
    box-shadow: 0 0 12px var(--color-glow);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .pro-details-add-to-cart a:hover {
    background: linear-gradient(90deg, #bf7eff, #a94fff);
    transform: translateY(-2px);
  }

  /* Iconos acción tipo wishlist, comparar, compartir */
  .pro-details-action .social {
    /* background-color: #1a1a1a; */
    background-color: #a94fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #f5f5f5;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    /* border: 1px solid #2a2a2a; */
    border: 1px solid #a94fff;
  }

  .pro-details-action .social:hover {
    /* color: var(--color-acento); */
    color: #f5f5f5;
    border-color: var(--color-acento);
    transform: scale(1.15);
    box-shadow: 0 0 10px var(--color-glow);
  }

  /* Redes sociales */
  .product-dec-social {
    margin-top: 25px;
  }

  .product-dec-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    color: var(--color-hover);
    background-color: #a94fff;
    transition: all 0.3s ease;
    border: 1px solid #a94fff;
    font-size: 1rem;
  }

  .product-dec-social a:hover {
    /* color: var(--color-acento); */
    color: #f5f5f5;
    background-color: #a94fff;
    border-color: var(--color-acento);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--color-glow);
  }

  /* ============================================
   DESCRIPCIÓN Y ESPECIFICACIONES - REFINED
============================================ */
.description-review-wrapper {
    /* background-color: #0f0f0f; */
    background-color: #f5f5f5;
    padding: 60px 0 90px;
    border-top: 0.6px solid #4b4b4b;
  }

  .dec-review-topbar a {
    font-family: var(--font-montserrat);
    font-weight: 600;
    color: var(--color-hover);
    padding: 12px 28px;
    background-color: #1a1a1a;
    border-radius: 30px;
    /* text-transform: uppercase; */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  .dec-review-topbar a::before {
    content: '\f02d'; /* fas fa-file-alt */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--color-acento);
    transition: color 0.3s ease;
  }

  .dec-review-topbar a.active,
  .dec-review-topbar a:hover {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #f5f5f5;
    box-shadow: 0 0 10px var(--color-glow);
  }

  .dec-review-topbar a.active::before,
  .dec-review-topbar a:hover::before {
    color: #f5f5f5;
  }

  .description-wrap {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-borde);
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.15);
    margin-top: 30px;
  }

  .description-wrap p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Tabla de especificaciones mejorada como card */
  .specification-wrap {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #f0f0f3;
    border: 1px solid var(--color-borde);
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.15);
  }

  .specification-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }

  .specification-wrap td {
    padding: 18px 24px;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 1px solid #bebebe;
    background-color: #f0f0f3;
  }

  .specification-wrap td.title {
    background-color: #f0f0f3;
    color: var(--color-acento);
    font-weight: 600;
    width: 40%;
    font-family: var(--font-montserrat);
  }

  .product-dec-social span.share-product {
    display: block;
    margin-top: 15px;
    margin-bottom: 12px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.95rem;
    /* color: var(--color-hover); */
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }


  /* ============================================
   MODAL DE FILTROS - Sidebar Estilizado con Animaciones
============================================ */
.sidebar-filter-active {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    max-width: 90%;
    height: 100vh;
    background: linear-gradient(180deg, #f5f5f5, #f5f5f5);
    z-index: 999;
    overflow-y: auto;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(169, 79, 255, 0.5);
    border-right: 2px solid var(--color-acento);
    padding: 25px;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(4px);
  }

  .sidebar-filter-active.open {
    left: 0;
  }

  .sidebar-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sidebar-filter-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Botón cerrar */
  .filter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.4rem;
    color: #a94fff;
    transition: all 0.3s ease;
  }
  .filter-close:hover {
    /* color: var(--color-acento); */
    transform: rotate(90deg) scale(1.2);
  }

  /* Título principal */
  .filter-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #a94fff;
    border-bottom: 1px solid #a94fff;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Secciones */
  .filter-section {
    margin-bottom: 30px;
  }
  .filter-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Opciones */
  .filter-options {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .filter-options li {
    margin-bottom: 10px;
  }

  /* Checkboxes redondos y animados */
  .form-check-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #111;
    border: 2px solid #444;
    position: relative;
    transition: all 0.25s ease;
    vertical-align: middle;
  }
  .form-check-input:hover {
    transform: scale(1.15);
    box-shadow: 0 0 6px var(--color-glow);
  }
  .form-check-input:checked {
    background-color: var(--color-acento);
    border-color: var(--color-acento);
  }
  .form-check-input:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
  }
  .form-check-label {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .form-check-label:hover {
    color: var(--color-acento);
  }

  /* Precio */
  .price-range-slider #slider-range {
    margin-top: 10px;
  }
  .price-range-values {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 5px;
  }

  /* Acciones */
  .filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
  }
  .filter-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    /* text-transform: uppercase; */
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
  }

  /* Íconos a la derecha */
  .filter-actions .btn i {
    order: 2;
    transition: all 0.3s ease;
  }

  /* Efecto "bailecito" en íconos al hover */
  .btn-clear-filters:hover i,
  .btn-apply-filters:hover i {
    animation: bounce-icon 0.4s ease;
  }
  @keyframes bounce-icon {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
  }

  /* Botón Limpiar */
  .btn-clear-filters {
    background-color: #1a1a1a;
    color: #f5f5f5;
    border: 1px solid #f5f5f5;
  }
  .btn-clear-filters:hover {
    background-color: #a94fff;
    /* color: var(--color-acento); */
    box-shadow: 0 0 8px var(--color-glow);
  }

  /* Botón Filtrar */
  .btn-apply-filters {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #f5f5f5;
    box-shadow: 0 0 12px var(--color-glow);
  }
  .btn-apply-filters:hover {
    background: linear-gradient(90deg, #bf7eff, #a94fff);
    color: #a94fff;
    transform: translateY(-2px);
  }

  .form-check-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%!important;
    background-color: #a94fff;
    border: 2px solid var(--color-glow);
    position: relative;
    transition: all 0.25s ease;
    vertical-align: middle;
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-glow);
  }

  .form-check-input:hover {
    transform: scale(1.15);
    box-shadow: 0 0 6px var(--color-glow);
  }

  .form-check-input:checked {
    background-color: var(--color-acento);
    border-color: var(--color-acento);
  }

  .form-check-input:checked::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
  }

  /* Conector (barra de progreso entre los puntos) */
.noUi-connect {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    box-shadow: 0 0 10px var(--color-glow);
    transition: background 0.3s ease;
  }

  /* Barra completa */
  .noUi-target {
    background: #a94fff;
    border: 1px solid var(--color-glow);
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 6px rgba(169, 79, 255, 0.2);
    height: 6px;
    margin-top: 15px;
    cursor: pointer;
  }

  /* Pistas izquierda y derecha */
  .noUi-base,
  .noUi-origin {
    border-radius: var(--radius-md);
  }

  /* Los “handles” (botones circulares de rango) */
  .noUi-handle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #a94fff;
    border: 2px solid #fff;
    box-shadow: 0 0 8px var(--color-glow);
    cursor: grab;
    transition: all 0.3s ease;
    top: -10px!important;
  }

  /* Efecto al hacer hover o foco */
  .noUi-handle:hover,
  .noUi-handle:focus {
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--color-hover);
  }

  /* Eliminar flechitas internas que aparecen en algunos navegadores */
  .noUi-handle:before,
  .noUi-handle:after {
    display: none;
  }



  /* Responsive: botones verticales en mobile */
  @media (max-width: 576px) {
    .filter-actions {
      flex-direction: column;
    }
    .filter-actions a,
    .filter-actions button{
        width: 100%;
    }
  }


  /* ============================================
     TOPBAR CATÁLOGO
  ============================================ */
  .shop-topbar-wrapper {
    /* background-color: #161616; */
    /* border: 1px solid #2b2b2b; */
    border: 1px solid #f5f5f5;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    /* box-shadow: 0 0 12px rgba(169, 79, 255, 0.15); */
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.5);
  }

  .shop-topbar-left {
    margin-bottom: 10px;
  }

  .btn-filter {
    background-color: #222;
    border: 1px solid #333;
    color: var(--color-hover);
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  /* .btn-filter:hover {
    background-color: var(--color-acento);
    color: #000;
    box-shadow: 0 0 10px var(--color-glow);
  } */

  .product-sorting-wrapper {
    text-align: right;
    color: #aaa;
    font-size: 0.95rem;
    margin-left: auto;
  }

  .product-sorting-wrapper strong {
    color: var(--color-acento);
  }

  @media (max-width: 767px) {
    .shop-topbar-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .product-sorting-wrapper {
      text-align: left;
      margin-left: 0;
    }
  }

  /* ============================================
   TOPBAR CATÁLOGO - BOTÓN Y SHORTING MEJORADO
============================================ */

/* Botón de filtros */
.btn-filter {
    /* background: linear-gradient(90deg, #1e1e1e, #2b2b2b); */
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    border: 1px solid var(--color-glow);
    color: var(--color-hover);
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: var(--radius-lg); /* más redondeado */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(169, 79, 255, 0.25);
    position: relative;
    overflow: hidden;
  }

  .btn-filter:hover {
    /* background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #000; */
    transform: translateY(-2px);
    box-shadow: 0 0 12px var(--color-glow);
  }

  .btn-filter:hover i {
    animation: iconWiggle 0.4s ease;
  }

  /* Efecto click suave */
  .btn-filter:active {
    transform: scale(0.97);
  }

  @keyframes iconWiggle {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(12deg); }
    50%  { transform: rotate(-8deg); }
    75%  { transform: rotate(8deg); }
    100% { transform: rotate(0deg); }
  }

  /* Texto de productos */
  .product-sorting-wrapper p {
    font-family: var(--font-montserrat);
    color: #fff;
    /* background-color: #181818; */
    padding: 10px 16px;
    border-radius: var(--radius-md);
    margin: 0;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.03);
  }

  .product-sorting-wrapper strong {
    color: var(--color-acento);
  }

  /* Responsive */
  @media (max-width: 767px) {
    .shop-topbar-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .product-sorting-wrapper p {
      width: 100%;
    }
  }

  /* Título principal del catálogo */
.catalog-title {
    font-family: var(--font-montserrat);
    font-size: 3rem;
    font-weight: 700;
    /* color: var(--color-texto); */
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 40px;
    /* text-shadow: 0 0 10px rgba(169, 79, 255, 0.3); */
  }

  /* Separación topbar del header */
  .shop-topbar-wrapper {
    margin-top: 20px; /* separa del header */
  }

  /* Texto "Mostrando x - x de x resultados" */
  .product-sorting-wrapper p {
    font-family: var(--font-montserrat);
    color: #1a1a1a!important;
    /* background-color: #1a1a1a; */
    padding: 12px 18px;
    border-radius: var(--radius-md);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.7;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.02);
  }

  /* Mejor contraste para valores */
  .product-sorting-wrapper strong {
    color: var(--color-acento);
  }

  /* Responsive */
  @media (max-width: 767px) {
    .catalog-title {
      font-size: 2rem;
      margin-bottom: 25px;
    }
  }

  .sidebar-filter-active {
    z-index: 1001;
  }

  .sidebar-filter-overlay {
    z-index: 1000;
  }


 /* ===============================
   MODAL CARRITO - ESTILO PREMIUM
================================= */
/* Body bloqueado */
body.modal-open {
    overflow: hidden;
  }

  /* Overlay */
  .cart-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 0.3s ease;
  }

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

  /* Modal */
  .cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    box-shadow: -5px 0 20px rgba(169, 79, 255, 0.3);
    border-left: 2px solid var(--color-acento);
    z-index: 1000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    font-family: var(--font-montserrat);
    padding: 25px;
    border-radius: 20px 0 0 20px;
  }

  .cart-modal.open {
    right: 0;
  }

  /* Contenido scroll interno */
  .cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
  }

  .cart-footer {
    /* tu estilo de footer aquí */
  }

  .cart-content h3 {
    color: var(--color-acento);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(169, 79, 255, 0.4);
    border-bottom: 1px solid #a94fff;
    padding-bottom: 10px;
  }

  .cart-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #a94fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .cart-close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-acento);
  }


  /* ============================
     BASE GENERAL DEL CARRITO
  ============================ */
  .cart-main-area {
    /* background-color: #0a0a0a; */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  }

  .cart-page-title {
    font-size: 2rem;
    color: var(--color-acento);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* ============================
     CONTENEDOR DE LA TABLA
  ============================ */
  .cart-table-content {
    /* background-color: #111; */
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(169, 79, 255, 0.4);
    overflow: hidden;
    padding: 20px;
    margin-bottom: 30px;
  }

  .cart-table-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 0.7px solid #2a2a2a;
  }

  .cart-table-content thead th{
    border-right: 0.7px solid #1a1a1a;
  }

  /* ============================
     CABECERA DE LA TABLA
  ============================ */
  .cart-table-content thead {
    /* display: table-header-group !important; */
    background-color: #1a1a1a;
  }

  .cart-table-content thead th {
    color: var(--color-acento);
    padding: 16px 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 0.7px solid #1a1a1a;
    background-color: #ddd;
  }

  /* ============================
     FILAS Y CELDAS DE LA TABLA
  ============================ */
  .cart-table-content tbody tr {
    display: table-row;
    background-color: #ddd;
    border-bottom: 0.7px solid #222;
    transition: background 0.2s ease;
  }

  .cart-table-content tbody td {
    padding: 16px 10px;
    font-size: 0.95rem;
    color: #1a1a1a;
    text-align: center;
    border-right: 0.7px solid #2a2a2a;
    vertical-align: middle;
  }

  .cart-table-content tbody td:last-child {
    border-right: none;
  }

  /* Imagen del producto */
  .product-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.4);
    transition: box-shadow 0.3s ease;
  }

  .product-thumbnail img:hover {
    box-shadow: 0 0 18px rgba(169, 79, 255, 0.8);
  }

  /* Nombre del producto */
  .product-name {
    font-weight: 600;
    /* color: var(--color-hover); */
    color: #1a1a1a;
    text-align: left;
    line-height: 1.3;
    padding-left: 8px;
  }

  /* Precio y subtotal */
  .product-price-cart,
  .product-subtotal {
    font-weight: bold;
    color: #bbb;
  }

  /* Botones de cantidad */
  .cart-plus-minus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .cart-plus-minus span {
    background-color: var(--color-acento);
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(169, 79, 255, 0.4);
    animation: bounce-idle 3s infinite;
  }

  .cart-plus-minus span:hover {
    transform: scale(1.2) rotate(-8deg);
    background-color: var(--color-acento);
    color: #f5f5f5;
    animation: bounce-active 0.4s;
  }

  .cart-plus-minus-box {
    width: 50px;
    text-align: center;
    background-color: var(--color-acento);
    color: #fff;
    border: 1px solid var(--color-acento);
    border-radius: 10px;
    padding: 6px;
    font-weight: bold;
  }

  /* Botón eliminar */
  .product-remove a {
    background-color: var(--color-acento);
    color: #fff;
    height: 40px;
    width: 40px;
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(169, 79, 255, 0.3);
    animation: rotate-idle 4s infinite linear;
  }

  .product-remove a:hover {
    background-color: var(--color-acento);
    color: #f5f5f5;
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 12px rgba(169, 79, 255, 0.6);
  }

  /* Total */
  #cartTotal {
    font-size: 1.6rem;
    color: var(--color-acento);
    font-weight: bold;
  }

  /* Botones de acción */
  .cart-shiping-update-wrapper a {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--color-glow);
    display: inline-block;
  }

  .cart-shiping-update-wrapper a:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 15px var(--color-acento);
  }

  /* Animaciones */
  @keyframes bounce-idle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
  }

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

  @keyframes rotate-idle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .cart-table-content tbody td {
      display: flex;
      justify-content: space-between;
      padding: 12px;
      border: none;
      border-bottom: 1px solid #222;
    }

    .cart-table-content tbody td::before {
      content: attr(data-title);
      font-weight: bold;
      color: var(--color-acento);
      text-transform: uppercase;
    }

    .cart-plus-minus span {
      width: 36px;
      height: 36px;
    }

    .cart-plus-minus-box {
      width: 45px;
    }
  }

  /* ============================
   FOOTER DE LA TABLA (TOTAL)
============================ */

.cart-table-content tfoot {
    background-color: #ddd;
    border-top: 2px solid #2a2a2a;
  }

  .cart-table-content tfoot td {
    padding: 16px 12px;
    font-size: 1.1rem;
    color: var(--color-acento);
    font-weight: 600;
    text-align: center;
    border-right: 0.7px solid #2a2a2a;
    border-top: 0.7px solid #1a1a1a;
  }

  .cart-table-content tfoot td:last-child {
    border-right: none;
    text-align: left;
  }

  .cart-table-content tfoot span#cartTotal {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-hover);
    text-shadow: 0 0 6px rgba(169, 79, 255, 0.5);
  }

  .cart-icon {
    margin-right: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--color-hover);
    text-shadow: 0 0 6px rgba(169, 79, 255, 0.5);
  }

  .btn-cart-action:hover .cart-icon {
    transform: scale(1.3) rotate(-8deg);
    color: var(--color-hover);
  }





  .cart-item {
    background-color: #f5f5f5;
    border: 1px solid var(--color-glow);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.5);
    padding: 20px;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 15px;
    align-items: start;
  }

  .cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    box-shadow: 0 0 6px rgba(169, 79, 255, 0.2);
    transition: box-shadow 0.3s ease;
  }
  .cart-item img:hover {
    box-shadow: 0 0 12px rgba(169, 79, 255, 0.6);
  }

  .cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .cart-item-name {
    font-size: 1.03rem;
    font-weight: bold;
    color: #a94fff;
    letter-spacing: 0.5px;
    margin: 0;
    transition: all 0.3s ease;
  }
  .cart-item-name:hover {
    color: var(--color-acento);
  }

  .cart-item-price {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: bold;
    margin-top: 4px;
  }

  .cart-item-quantity-price {
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #ccc;
  }

  .cart-item-controls {
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
  }

  .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border-radius: 15px;
    box-shadow: -3px 0 10px var(--color-glow);
  }

  .cart-item-quantity button {
    background-color: #a94fff;
    color: var(--color-hover);
    border: 1px solid #f5f5f5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    animation: bounce-idle 3s infinite;
  }

  .cart-item-quantity button:hover {
    background-color: var(--color-acento);
    color: #f5f5f5;
    box-shadow: 0 0 10px var(--color-glow);
    animation: bounce-active 0.4s;
  }

  .cart-item-quantity span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
  }

  .cart-item-remove {
    background-color: #a94fff;
    color: #f5f5f5;
    border: 1px solid var(--color-glow);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: rotate-idle 4s infinite linear;
  }

  .cart-item-remove:hover {
    background-color: #2a2a2a;
    color: #fff;
    box-shadow: 0 0 10px var(--color-glow);
    transform: scale(1.1) rotate(-10deg);
  }

  /* Animaciones suaves */
  @keyframes bounce-idle {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2px);
    }
  }

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

  @keyframes rotate-idle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media (max-width: 480px) {
    .cart-item-quantity button,
    .cart-item-remove {
      width: 34px;
      height: 34px;
      font-size: 1rem;
    }

    .cart-item-remove {
      animation-duration: 6s;
    }
  }

  /* ========== Ajuste de la imagen con glow más notorio ========== */
.cart-item img {
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.4);
  }
  .cart-item img:hover {
    box-shadow: 0 0 16px rgba(169, 79, 255, 0.8);
  }

  /* ========== Visibilidad para cantidad y precio ========== */
  .cart-item-quantity-price {
    grid-column: 1 / 3;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-hover);
    background-color: #121212;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  }

  /* ========== Footer del modal ========== */
  .cart-footer {
    border-top: 1px solid #a94fff;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .cart-footer p {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .cart-footer #cartTotal {
    color: var(--color-acento);
    font-size: 1.2rem;
    margin-left: 8px;
  }

  /* Botones del modal de carrito */
  .cart-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    /* text-transform: uppercase; */
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 8px rgba(169, 79, 255, 0.2);
  }

  .cart-btn.btn-outline-light {
    background-color: #1e1e1e;
    border: 1px solid #444;
    color: var(--color-hover);
  }

  .cart-btn.btn-outline-light:hover {
    background-color: #2a2a2a;
    color: var(--color-acento);
    box-shadow: 0 0 10px var(--color-glow);
    transform: translateY(-2px);
  }

  .cart-btn.btn-primary {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    border: none;
    color: #f5f5f5;
  }

  .cart-btn.btn-primary:hover {
    background: linear-gradient(90deg, #bf7eff, #a94fff);
    box-shadow: 0 0 12px var(--color-glow);
    transform: scale(1.05);
  }

  /* ========== Imagen del producto redondeada con glow sutil ========== */
.cart-item img {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(169, 79, 255, 0.5);
    transition: box-shadow 0.3s ease;
  }

  .cart-item img:hover {
    box-shadow: 0 0 18px rgba(169, 79, 255, 0.6);
  }

  /* ========== Iconos animados a la derecha en botones de carrito ========== */
  .cart-btn i {
    transition: transform 0.3s ease;
  }

  .cart-btn:hover i {
    animation: bounceRight 0.6s ease;
  }

  @keyframes bounceRight {
    0% { transform: translateX(0); }
    30% { transform: translateX(5px); }
    60% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
  }


  /* ===============================
   CHECKOUT - ESTILO PREMIUM
================================= */
.checkout-main-area {
    /* background-color: #0a0a0a; */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .checkout-wrap h3 {
    text-align: center;
    padding: 10px 0;
    color: var(--color-acento);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(169, 79, 255, 0.3);
  }

  .billing-info,
  .billing-select {
    margin-bottom: 20px;
  }

  .billing-info label,
  .billing-select label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: block;
    font-size: 0.95rem;
  }

  .billing-info input,
  .billing-info textarea,
  .billing-select select {
    width: 100%;
    padding: 12px 16px;
    background-color: #f5f5f5;
    border: 1px solid var(--color-glow);
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--color-glow);
  }

  .billing-info input:focus,
  .billing-info textarea:focus,
  .billing-select select:focus {
    outline: none;
    border-color: var(--color-acento);
    box-shadow: 0 0 12px rgba(169, 79, 255, 0.5);
  }

  .billing-select select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ccc" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
  }

  /* Mostrar/Ocultar contenedores con transición */
  #direccionContainer,
  #facturaContainer {
    transition: all 0.3s ease;
    padding-top: 10px;
  }

  /* ============================
     BOTONES DE ACCIÓN
  ============================ */
  .cart-shiping-update-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart-shiping-update-wrapper a,
  .cart-shiping-update-wrapper button {
    background: linear-gradient(90deg, #a94fff, #7b2ff7);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--color-glow);
    border: none;
    font-family: 'Montserrat', sans-serif;
  }

  .cart-shiping-update-wrapper a:hover,
  .cart-shiping-update-wrapper button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 15px var(--color-acento);
    /* color: #000; */
  }

  .cart-clear button {
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .cart-shiping-update-wrapper {
      flex-direction: column;
      gap: 12px;
    }
    .checkout-wrap h3 {
      font-size: 1.5rem;
    }

    .cart-shiping-update-wrapper a,
    .cart-shiping-update-wrapper button{
        width: 100%!important;
    }
  }

  .checkout-wrap .cart-main-area{
    background: none;
  }

  /* ============================
     VALIDACIÓN Y REQUERIDOS
  ============================ */
  /* input:required:invalid,
  select:required:invalid {
    border-color: #ff4f4f;
    box-shadow: 0 0 8px rgba(255, 79, 79, 0.5);
  } */

  abbr.required {
    color: #ff4f4f;
    margin-left: 4px;
  }

  /* ============================
     SOMBREADO CONTAINER FINAL
  ============================ */
  .checkout-wrap {
    /* background-color: #111; */
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(169, 79, 255, 0.2);
  }



  /* ================================
   PAGINACIÓN ESTILO GAMER PREMIUM
================================== */

.pro-pagination-style {
    margin-top: 40px;
  }

  .pro-pagination-style .pagination {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: none;
    border: none;
  }

  .pro-pagination-style .page-item {
    list-style: none;
  }

  .pro-pagination-style .page-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 46px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(169, 79, 255, 0.05);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pro-pagination-style .page-link:hover {
    background-color: #a94fff;
    color: #ffffff;
    border-color: #a94fff;
    box-shadow: 0 0 12px #a94fff88;
    transform: scale(1.08);
  }

  .pro-pagination-style .page-item.active .page-link {
    background-color: #a94fff;
    color: #ffffff;
    border-color: #a94fff;
    box-shadow: 0 0 16px #a94fffcc;
    pointer-events: none;
  }

  .pro-pagination-style .page-item.disabled .page-link {
    background-color: #1a1a1a;
    color: #777777;
    border-color: #333;
    opacity: 0.4;
    pointer-events: none;
  }

  /* Ajustes especiales para flechas */
  .pro-pagination-style .page-item:first-child .page-link,
  .pro-pagination-style .page-item:last-child .page-link {
    font-size: 22px;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }


  /* ================================
   OWL NAV - ESTILO CONTRASTADO
================================== */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    pointer-events: all;
    background-color: #0a0a0a; /* fondo base constante */
    color: #ffffff; /* ícono visible */
    border: 2px solid #a94fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(169, 79, 255, 0.3);
  }

  .owl-carousel .owl-nav button.owl-prev:hover,
  .owl-carousel .owl-nav button.owl-next:hover {
    transform: scale(1.07);
    box-shadow: 0 0 16px #a94fff, 0 0 30px #a94fff99;
  }

  .owl-carousel .owl-nav span {
    line-height: 1;
  }

  .contact-card {
    background-color: var(--color-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    padding: 30px 60px;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-align: left;
  }

  .contact-card:hover {
    box-shadow: 0 0 20px var(--color-glow);
    transform: translateY(-4px);
  }

  .contact-card h3 {
    text-align: center;
    padding: 10px 0;
    color: var(--color-acento);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(169, 79, 255, 0.3);
  }

  .contact-intro {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }

  .contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-info-item h4 i {
    color: var(--color-acento);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .contact-info-item:hover h4 i {
    transform: rotate(8deg) scale(1.1);
  }

  .contact-info-item p {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-left: 32px;
  }

  .whatsapp-btn {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 2px 4px 5px 5px;
    margin: 5px;
    font-size: 40px;
    text-align: center;
    color: #ffffff;
    background-color: #25D366;
    position: fixed;
    right: 15px;
    bottom: 40px;
    z-index: 9999;
    box-shadow: 1px 2px 8px #6a6a6a;
}
