/* General */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #121212;
  }
  
  .branding {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .branding img {
    height: 120px;
    filter: drop-shadow(0 0 6px #8522f3);
    transition: transform 0.3s ease;
  }
  
  .branding img:hover {
    transform: scale(1.05);
  }
  
  .titulo-japones {
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
  }
  
  .navbar nav a {
    color: #ccc;
    margin: 0 1rem;
    font-weight: bold;
  }
  
  .navbar .btn {
    background-color: #8522f3;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px #8522f3, 0 0 20px #8522f3;
    transition: all 0.3s ease;
  }
  
  .navbar .btn:hover {
    background-color: #a64dff;
    transform: scale(1.05);
  }


  
  /* Hero Section PARTE DE DISEÑO DE VIDEO MP4 PRINCIPAL */
  .hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero video.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 5%;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.3;
}


/* Frase "Con esencia Samurai" con brillo más controlado */
.hero h1 span {
    color: #ff278e;
    font-weight: bold;
    text-shadow:
        0 0 2px rgba(255, 39, 142, 0.6),
        0 0 4px rgba(255, 39, 142, 0.4),
        0 0 6px rgba(255, 39, 142, 0.2);
}
  
  .overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
  }
  
  .overlay h1 {
    font-size: 3rem;
    line-height: 1.3;
  }
  
  .overlay h1 span {
    color: #ff278e;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255, 39, 142, 0.5);
  }

  /*NUEVA COLECCION */

  .cta {
    background-color: #8522f3;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px #8522f3, 0 0 20px #8522f3;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta:hover {
    background-color: #a64dff;
    box-shadow: 0 0 15px #a64dff, 0 0 25px #a64dff;
    transform: scale(1.05);
}

.nueva-coleccion {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #0a0a0a;
}

.nueva-coleccion h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.nueva-coleccion p {
    font-size: 1.2rem;
    color: #ccc;
}

.nueva-coleccion .coleccion-imagenes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* Mantén el estilo interno de cada item igual */
.nueva-coleccion .coleccion-imagenes .item-coleccion {
    text-align: center;
}

.nueva-coleccion .coleccion-imagenes .item-coleccion img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nueva-coleccion .coleccion-imagenes .item-coleccion img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(133, 34, 243, 0.6);
}

.nueva-coleccion .coleccion-imagenes .item-coleccion .desc {
    margin: 0.5rem 0 0.25rem;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.2;
}

.nueva-coleccion .coleccion-imagenes .item-coleccion .price {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

/* Responsive: en muy pantallas estrechas pasa a 1 columna */
@media (max-width: 600px) {
    .nueva-coleccion .coleccion-imagenes {
        grid-template-columns: 1fr;
    }
}

 

  /* Botones */
  .cta {
    background-color: #8522f3;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 10px #8522f3, 0 0 20px #8522f3;
    transition: all 0.3s ease;
    margin: 0.5rem;
  }
  
  .cta:hover {
    background-color: #a64dff;
    transform: scale(1.05);
  }



  
  /* Productos */
  .productos-header {
    text-align: center;
    margin: 2rem 0 1rem;
  }
  
  .productos-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .productos-header p {
    font-size: 1.2rem;
    color: #aaa;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 60px;
  }
  
  .product-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
  
  .product-item p {
    margin: 0.2rem 0;
    color: #fff;
    font-size: 0.95rem;
  }
  
  .product-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #ff278e;
  }
  
  /* Página de Detalle */
  .page-section {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .page-section img {
    border-radius: 10px;
    width: 100%;
  }
  
  .page-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .page-section p {
    font-size: 1rem;
    color: #ccc;
    margin: 0.5rem 0;
  }
  
  .page-section strong {
    color: #fff;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #121212;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* Responsive */
  @media (max-width: 1000px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
      padding: 0 30px;
    }
  }
  
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      padding: 0 20px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 500px) {
    .product-grid {
      grid-template-columns: 1fr;
      padding: 0 10px;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar nav {
      margin-top: 1rem;
    }
  }
  
  /*ESTILO RESEÑAS DE CLIENTES */

  .reseñas {
    padding: 4rem 2rem;
    background-color: #0a0a0a;
    text-align: center;
  }
  
  .reseñas h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
  }
  
  .carousel {
    position: relative;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
  }
  
  .carousel-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .reseña-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    width: 250px;
    flex: 0 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .reseña-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  .card-header {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .card-header img {
    width: 70%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .card-header .rating {
    margin-top: 0.5rem;
    background: #ffffff0d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .card-body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
  }
  
  .card-body p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: #ccc;
  }
  
  /* Botones carrusel */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    font-size: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1;
  }
  
  .carousel-btn.prev {
    left: 0.5rem;
  }
  
  .carousel-btn.next {
    right: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .reseña-card {
      width: 200px;
    }
  
    .carousel-btn {
      display: none; /* Oculta flechas en móviles */
    }
  }
  

  /*ESTILO DE CATEGORY GRID - CATEGORIAS DE PRODUCTOS, CAMISETAS, HOODIES,  */

  .categories {
    margin: 4rem 0;
    padding: 0 2rem;
  }
  
  .category-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .category-card {
    position: relative;
    width: 280px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .category-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
  }
  
  .category-card:hover img {
    transform: scale(1.1);
  }
  
  .category-card:hover .overlay {
    opacity: 1;
  }
  
  .category-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  }
  
  .category-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px black;
  }

  /*iltro activo (Camisetas, Hoodies, Accesorios o Todos) se resalte visualmente para que el usuario sepa cuál está seleccionado. */

  .filtro-activo {
    background-color: #4ddde0 !important;
    color: black !important;
    box-shadow: 0 0 15px #4ddde0, 0 0 30px #4ddde0;
    transform: scale(1.05);
  }
  
/*INFO BENEFITS - INFORMACION DE VISTA SOLO PARA LA PAGINA*/

.info-benefits {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 2rem;
  flex-wrap: wrap;
  background-color: #0a0a0a;
  gap: 2rem;
  text-align: center;
  color: #f1f1f1;
}

.benefit {
  flex: 1 1 200px;
  max-width: 250px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit img {
  width: 40px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* blanco si íconos son oscuros */
}

.benefit h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.benefit p {
  font-size: 0.95rem;
  color: #cccccc;
}

.benefit p strong {
  color: #ffffff;
}

.benefit p u {
  text-decoration: underline;
  color: #ffffff;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(133, 34, 243, 0.3);
}

/*FORMULARIO DE CONTACTO */

.contact-section {
  background-color: #0a0a0a;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: #1c1c1c;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.input-group textarea {
  height: 120px;
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border: 2px solid #8522f3;
}

.contact-form button {
  background-color: #ff278e;
  color: #fff;
  padding: 1rem;
  margin-top: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
  font-weight: bold;
  box-shadow: 0 0 10px #ff278e, 0 0 20px #ff278e;
}

.contact-form button:hover {
  background-color: #ff499c;
  transform: translateY(-3px);
  box-shadow: 0 0 15px #ff499c, 0 0 25px #ff499c;
}

.confirmation-message {
  color: #4caf50;
  font-size: 1rem;
  margin-top: 1rem;
  display: none;
}

/*DISEÑO CARRITO*/

.carrito-icono-container {
  position: relative;
  display: inline-block;
  margin-right: 1rem;
  cursor: pointer;
}

.carrito-icono-container img {
  width: 30px;
}

#contador-carrito {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff278e;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/*DISEÑO DE TALLA Y COLOR CAMISETAS*/

.product-options {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.option-group label {
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: block;
  color: #fff;
}

.option-select {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.option-btn {
  background-color: #1a1a1a;
  border: 2px solid #8522f3;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(133, 34, 243, 0.3);
}

.option-btn:hover,
.option-btn.selected {
  background-color: #8522f3;
  box-shadow: 0 0 15px #8522f3, 0 0 25px #8522f3;
  transform: scale(1.05);
}

/* Botones de talla y color */
.option-btn,
.color-btn {
  padding: 10px 15px;
  margin: 5px;
  background-color: #222;
  color: #fff;
  border: 2px solid #555;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.option-btn:hover,
.color-btn:hover {
  background-color: #333;
  border-color: #888;
}

/* Estilo cuando están seleccionados */
.option-btn.selected,
.color-btn.selected {
  background-color: #a020f0;
  border-color: #70f6f2;
  color: #ffffff;
  font-weight: bold;
}



/*ESTILO DE COLORES AGOTADOS*/

.color-btn.agotado {
  background-color: #444 !important;
  color: #888 !important;
  border: 2px dashed #888;
  cursor: not-allowed;
  text-decoration: line-through;
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

  .navbar nav a,
  .navbar nav .btn {
    width: 100%;
    padding: 0.5rem 0;
    text-align: left;
    margin: 0;
  }

  .carrito-icono-container {
    align-self: flex-end;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .page-section {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
  }
  .page-section > div {
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  #imagen-producto {
    max-width: 90vw !important;
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
}




