.detalle-producto {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.producto-contenedor {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.lateral-izquierdo, .lateral-derecho {
    flex: 1 1 20%;
    max-width: 250px;
    background-color: #eaeaea;
    padding: 15px;
    border-radius: 10px;
}

.centro {
    flex: 1 1 60%;
    max-width: 700px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.imagen-producto {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.miniaturas-lateral {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
}

.miniatura {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.miniatura:hover {
    transform: scale(1.1);
}

.informacion-producto {
    text-align: center;
}

.informacion-producto h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.marca {
	font-size: 4rem;
    font-weight: bold;
    color: #444;
}

.marca span {
    font-weight: normal;
    color: #777;
}

.video-container {
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.productos-relacionados {
    margin-top: 50px;
}

.productos-relacionados h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.relacionados-contenedor {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.producto-relacionado {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.producto-relacionado img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.producto-relacionado p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    text-transform: capitalize;
}
.producto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.producto__imagen {
    width: 100%;
    max-height: 1200px;
    object-fit: cover;
    border-radius: 10px;
}
.producto__informacion {
    margin-top: 10px;
    color: var(--negro);
}
.producto__nombre {
    font-size: 18px;
    font-weight: bold;
    color: var(--negro);
}
.producto__descripcion {
    font-size: 14px;
    color: var(--negro);
}

