
.header-main{
    background: var(--color-primary);
    width: 100%;
    border-bottom: 1px solid #e4eaef;
    box-shadow: -1px 4px 7px 0 rgba(121, 120, 120, .26);
}

.header-main-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2px 20px;
}

.header-main-links{
    width: 100%;
    background: var(--color-bg);
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.icon-header{
    color: var(--color-bg);
}

.icons-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.icon-header-search{
    color: var(--color-primary);
}

.search-header-box{
    border: none;
    border-radius: 17px;
    height: 38px;
    background: var(--color-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.search-header-form{
    width: 33%;
    display: flex;
    align-items: center;
}

.search-submit-btn{
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    font-size: 1.2rem;
    padding: 3px;
}

.search-submit-btn:hover{
    color: var(--color-primary);
    background: none;
}

.search-submit-btn:focus{
    outline: none;
    color: var(--color-primary);
    background: none;
}


.search-input {
  width: 100% !important;
  font-size: 100% !important;
  border: none !important;          /* quita el borde */
  outline: none !important;         /* quita el outline */
  box-shadow: none !important;      /* quita cualquier sombra */
  appearance: none !important;      /* para navegadores que usen estilos propios */
}

/* Asegúrate de que en focus tampoco aparezca nada */
.search-input:focus,
.search-input:active {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Firefox a veces dibuja un padding interno con dotted outline */
.search-input::-moz-focus-inner {
  border: 0;
}



/* mobile‑header.css */

.mobile-header {
  position: fixed;
  width: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0;
  z-index: 2000;
  box-shadow: -1px 4px 7px 0 rgba(121, 120, 120, .26);
}

/* only show on small screens */
@media (min-width: 768px) {
    .mobile-header { display: none; }
  }
  

  
  
  /* hamburger */
  .mobile-header__burger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0;
  }
  .mobile-header__burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }
  
  /* logo centered */
  .mobile-header__logo img {
    height: auto;
  }
  
  /* cart icon */
  .mobile-header__cart {
    color: #fff;
  }
  
  /* slide-in nav */
  .mobile-header__nav {
    position: fixed;
    top: 0; left: -100%;
    width: 75%;
    height: 100%;
    background: #fff;
    padding: 2rem 1rem;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 2100;
  }
  .mobile-header__nav ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
  }
  .mobile-header__nav li + li {
    margin-top: 1rem;
  }
  .mobile-header__nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  /* close button */
  .mobile-header__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }
  
  /* overlay */
  .mobile-header__overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 2050;
  }
  
  /* open state */
  .mobile-header.open .mobile-header__nav {
    left: 0;
  }
  .mobile-header.open .mobile-header__overlay {
    opacity: 1;
    visibility: visible;
  }
  

 /* móvil <768px: ocultamos el desktop, mostramos el mobile */
.desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex; /* o como lo tengas */
  }
  
  /* escritorio ≥768px: al revés */
  @media (min-width: 768px) {
    .desktop-header {
      display: flex; /* o block según tu layout */
    }
    .mobile-header {
      display: none;
    }
  }

.header-link-web {
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
}
  














.banner-img-slider {
    width: 100%;
}













.attributes-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  /* Card */
  .attribute-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 
    transform .3s cubic-bezier(.215,.61,.355,1),
    box-shadow .3s cubic-bezier(.215,.61,.355,1);
    will-change: transform;
  }
  
  .attribute-card:hover, .attribute-card:focus-within {
    transform: translateY(-6px); /* “elevar” */
    box-shadow: 0 12px 24px -6px rgba(0,0,0,.15),
                0 4px 8px rgba(0,0,0,.08);
  }
  
  /* Image fills card */
  .attribute-card img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  
  














  






















/* limita ancho máximo y centra */
.products-more-sales .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* padding general */
  .products-more-sales {
    padding: 2rem 0;
    background: var(--color-bg);
  }
  
  /* título centrado */
  .products-more-sales .section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #222;
  }
  
  /* cada slide tiene padding lateral para verse separadas */
  .products-more-sales .splide__slide {
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
  
  /* opcional: ajustar el ancho de la splide para que no sea full‑width */
  .products-more-sales.splide {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  /* overrides Splide */
  .products-more-sales .splide__arrows .splide__arrow {
    color: #fd00ae;
  }
  .products-more-sales .splide__pagination__page {
    background: rgba(0, 0, 0, 0.2);
  }
  .products-more-sales .splide__pagination__page.is-active {
    background: #fd00ae;
  }


  /* Product card básico */
  .product-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  .wishlist-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .wishlist-btn:hover {
    background: #fff;
  }
  .wishlist-btn .icon-heart {
    font-size: 1.2rem;
    color: #fd00ae;
  }
  .product-card img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 0.75rem;
  }
  .product-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0.5rem 0;
    flex-grow: 1;
  }
  .color-variants {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .variant {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #ddd;
  }
  .price {
    margin-bottom: 0.75rem;
  }
  .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
  .new-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
  }
  .discount-badge {
    background: #fd00ae;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
  }
  .btn-primary {
    display: inline-block;
    background: #fd00ae;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
  }
  .btn-primary:hover {
    background: #e6009b;
  }
  





/* Por defecto (desktop): muestro banner-slider-main, oculto el móvil */
.banner-slider-main {
  display: block;
  margin-top: 110px;
}
.banner-slider-main-movil {
  display: none;
  margin-top: 64px;
}

/* A partir de 768px de ancho (tablet/desktop) */
@media (min-width: 769px) {
  .banner-slider-main {
    display: block;
  }
  .banner-slider-main-movil {
    display: none;
  }
}

/* Hasta 768px (mobile) */
@media (max-width: 768px) {
  .banner-slider-main {
    display: none;
  }
  .banner-slider-main-movil {
    display: block;
  }
}







/* Product Card for Home */
.product-card_home {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s;
  width: 250px;
  min-width: 250px;
}
.product-card_home:hover {
  transform: translateY(-4px);
}

.product-card_home__media {
  position: relative;
}
.product-card_home__image {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.product-card_home__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.product-card_home__wishlist:hover {
  background: #ff1493;
  transform: scale(1.1);
}
.icon-heart_home {
  width: 16px;
  height: 16px;
  color: #ff1493;
}
.product-card_home__wishlist:hover .icon-heart_home {
  color: #ffffff;
}

.product-card_home__info {
  padding-top: 16px;

  text-align: center;
}

.product-card_home__title {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card_home__swatches {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.swatch_home {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ececec;
  cursor: pointer;
  transition: border .2s, transform .2s;
}
.swatch_home:hover {
  border-color: #ff1493;
  transform: scale(1.1);
}

.product-card_home__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.price-old_home {
  font-size: .85rem;
  color: #777777;
  text-decoration: line-through;
}
.price-new_home {
  font-size: 1.2rem;
  color: #ff1493;
  font-weight: 700;
}
.discount-badge_home {
  background: #ff1493;
  color: #ffffff;
  font-size: .75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-card_home__button {
  display: block;
  max-width: 100%;
  padding: 12px 0;
  background: #ff1493;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 0 0 12px 12px;
  transition: background .2s, transform .2s;
  text-decoration: none;
  text-align: center;
}

.product-card_home__button:hover {
  background: #af0f67;
  color: var(--color-bg);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .product-card_home {
    border-radius: 8px;
  }
  .product-card_home__title {
    font-size: .95rem;
  }
  .product-card_home__button {
    font-size: .9rem;
  }
}
















/* products-juego-sala.css */

/* Base */
.products-juego-sala {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  
  /* Banner */
  .products-juego-sala .juego-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Filas */
  .products-juego-sala .juego-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* 3 columnas */
  .products-juego-sala .row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* 2 columnas */
  .products-juego-sala .row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Tarjeta de imagen */
  .products-juego-sala .juego-card {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  .products-juego-sala .juego-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  .products-juego-sala .juego-card:hover img {
    transform: scale(1.02);
  }
  
  /* Responsive: en móvil todas en 1 columna */
  @media (max-width: 768px) {
    .products-juego-sala .row-3,
    .products-juego-sala .row-2 {
      grid-template-columns: 1fr;
    }
  }
  





  .not-found-page{
    max-width: 1200px !important;
    margin: 0 auto !important;
    margin-top: 100px !important;
    margin-bottom: 50px !important;
  }
  
  
  





  




/* Base footer */
.site-footer {
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
  }
  
  /* Top section: 4 columnas */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 0rem;
  }

  .link-libro-reclamaciones {
    display: inline-flex;        /* o block; según tu layout */
    flex-direction: column;      /* Texto arriba, imagen debajo */
    align-items: center;         /* Centra imagen y texto horizontalmente */
    text-decoration: none;
    gap: 6px;                    /* Espacio entre texto e imagen */
  }
  
  .link-libro-reclamaciones .link-text {
    font-weight: 500;            /* Ajusta según tu diseño */
    line-height: 1.2;
    text-align: center;
  }
  
  .link-libro-reclamaciones .libro-img {
    display: block;
    max-width: 200px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;         /* Garantiza que no se deforme */
  }


  
  /* Columna “Acerca de” */
  .footer-about .footer-logo img {
    height: 2.5rem;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
  }
  .footer-about p {
    line-height: 1.5;
    color: #ccc;
  }
  
  /* Columna “Contáctanos” */
  .footer-contact h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--color-bg);
  }
  .footer-contact p {
    margin-bottom: 1rem;
    color: #ccc;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: underline;
  }
  .footer-vtex img {
    height: 2rem;
    margin-top: 1rem;
  }
  
  /* Columna “Secciones destacadas” */
  .footer-links h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-bg);
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ccc;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #fff;
  }
  .footer-links img {
    height: 1.2rem;
    vertical-align: middle;
    margin-left: 0.5rem;
  }
  
  /* Columna “Redes y pagos” */
  .footer-social-pay h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-bg);
  }
  .footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .footer-social-icons img {
    width: 1.8rem;
    height: auto;
    filter: brightness(0) invert(1);
  }
  .footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .footer-payments img {
    height: 2rem;
    width: auto;
  }
  
  /* Bottom copyright bar */
  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 1rem 0;
  }
  .footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 0.85rem;
  }

  .footer-icon-social{
    color: var(--color-bg);
  }

  
  /* WhatsApp floating button */
  .whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    z-index: 1001;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  .whatsapp-float svg {
    width: 80%;
    height: 80%;
    color: #fff;
  }







.swiper-button-next, .swiper-button-prev {
  color: var(--color-primary);
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}









.site-header--checkout{
  position: relative !important;
  background: var(--color-primary) !important;
  color: var(--color-bg) !important;
  padding: 0.3rem 0rem !important;
  padding-top: 0.2rem !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  padding-bottom: 0 !important;
  display: flex;
  justify-content:center;
}