
    .container {
      position: relative;
      top:70px;
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
      background: #fff;
      margin-bottom: 50px;
    }
    .breadcrumb {
      font-size: 14px;
      margin-bottom: 1rem;
      color: #666;
    }
    .breadcrumb a {
      color: #007aff;
      text-decoration: none;
    }
    .product-main {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .product-images {
      
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;

    }
    .imagen-principal{
      overflow: hidden;
      border-radius: 10px;
      border: solid 1px #ccc;
      max-width: 500px ;
    }
    .product-images img {
      width: 100%;
      max-width: 500px;
      object-fit: cover;
      transition: transform 0.6s ease;
      transform-origin: center center;
    }
    .product-images img:hover{
      transform: scale(1.4);
      
    }
    .product-thumbs {
      display: flex;
      gap: 0.5rem;
    }
    .product-thumbs img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
    }
    .product-details {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .product-title {
      font-size: 28px;
      font-weight: bold;
    }
    .product-brand {
      font-size: 16px;
      color: #888;
    }
    .product-price {
      font-size: 24px;
      color: #e60000;
    }
    .product-price .old {
      text-decoration: line-through;
      color: #888;
      font-size: 18px;
      margin-left: 10px;
    }
    .product-info {
      border-top: 1px solid #eee;
      padding-top: 1rem;
    }
    .product-info p {
      margin: 0.5rem 0;
    }
    .buy-section {
      margin-top: 1.5rem;
    }
    .buy-section input[type="number"] {
      width: 60px;
      padding: 0.5rem;
      margin-right: 1rem;
    }
    .buy-section button:disabled {
      background: #ccc;
      cursor: not-allowed;
    }
    .product-description {
      margin-top: 2rem;
    }
    .product-description h3 {
      margin-bottom: 0.5rem;
    }
.related-products {
  position: relative;
  margin-top: 3rem;
  justify-content: center;
  padding-bottom: 20px;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 24px;

  display: block;
  padding-bottom: 4px;
}

.related-list {
  display: flex;
  flex-direction: row;
  flex-wrap:nowrap;
  justify-content: center;
  gap: 2rem;
}

.related-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.related-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.related-item h4 {
  font-size: 16px;
  margin: 0.5rem 0;
}

.related-item .price {
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.5rem;
}
.price {
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.5rem;
}
.related-item button {
  padding: 0.5rem 1rem;
  background: orange;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.talla-selector {
      display: flex;
      gap: 10px;
      margin: 20px 0;
    }

    .talla-selector input[type="radio"] {
      display: none;
    }

    .talla-selector label {
      padding: 10px 16px;
      border: 2px solid #ccc;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-weight: bold;
    }

    .talla-selector input[type="radio"]:checked + label {
      background-color: #ff961e;
      color: white;
      border-color: #ff961e;
    }

    .talla-selector label:hover {
      border-color: #ff961e;
    }
.ficha-tecnica {
      width: 60%;
      margin: 40px auto;
      padding: 30px;     
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      background-color: white;
      border-radius: 10px;
    }

    .contenedor-bloques {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .bloque-especificaciones {
      flex: 2;
      min-width: 300px;
    }

    .info-adicional {
      flex: 1;
      min-width: 200px;
    }

    .ficha-tecnica h2 {
      color: #FF6600;
      font-size: 24px;
      margin-bottom: 15px;
      border-bottom: 2px solid #FF6600;
      display: inline-block;
    }

    .info-adicional h3 {
      color: #FF6600;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .tabla-especificaciones {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    .tabla-especificaciones th,
    .tabla-especificaciones td {
      padding: 10px;
      border-bottom: 1px solid #ddd;
      text-align: left;
    }

    .tabla-especificaciones th {
      background-color: #ffe6d5;
      color: #c04d00;
    }

    .info-adicional ul {
      list-style: square;
      padding-left: 20px;
    }

    .info-adicional li {
      margin-bottom: 8px;
    }

    @media screen and (max-width: 768px) {
      .ficha-tecnica {
        width: 90%;
        padding: 20px;
      }


      .contenedor-bloques {
        flex-direction: column;
      }
      .related-list{
        justify-content: left;
      }
    }
