.producto-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 2rem auto;
  }
  
  .producto-imagen {
    position: relative;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .producto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .producto-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
  }
  
  .dot.active {
    background: #fff;
  }
  
  .producto-info {
    padding: 2rem;
    background: #fff;
  }
  
  .badge-categoria {
    display: inline-block;
    background: #DA0712;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
  }
  
   .producto-marca {
    font-size: 2rem;
    font-weight: 500;
    color: #111;
    margin: 0 0 0.75rem;
    line-height: 1rem;
  }
  
  .producto-nombre {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.75rem;
    line-height: 1.2;
  }
  
  .producto-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  
  .info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #DA0712;
    margin-bottom: 0.4rem;
  }
  
  .dimensiones-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
  }
  
  .dimensiones-list li {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  
  .dimensiones-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid #DA0712;
    background: url('/dist/bootstrap-5.3.8-dist/img/check-red.svg') center / 10px no-repeat;
  }
  
  .ideal-list {
    padding-left: 1.2rem;
    margin: 0 0 1.25rem;
  }
  
  .ideal-list li {
    font-size: 0.875rem;
    margin-bottom: 3px;
  }
  
  .producto-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 1rem 0;
  }
  
  .producto-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .btn-ficha,
  .btn-guia {
    display: inline-block;
    background: #DA0712;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .btn-ficha:hover,
  .btn-guia:hover {
    background: #7C0000;
    color: #fff;
  }


.contenedor-video-detalle {
    background-color: #D9D9D933;
    padding: 2rem 1rem;
}

.contenedor-video {
    max-width: 1280px;
    margin: 0 auto;
}

.contenedor-video h2 {
    margin-bottom: 0.5rem;
}

.contenedor-video p {
    margin-bottom: 1.5rem;
    width: 100%;
}

.ratio iframe {
    width: 100%;
    border-radius: 12px;
}

  

  
  /* Responsive */
  @media (max-width: 767px) {
    .producto-detalle {
      grid-template-columns: 1fr;
    }
  
    .producto-imagen {
      min-height: 260px;
    }
  
    .producto-nombre {
      font-size: 1.5rem;
    }
  }