body {
    margin: 0;
    font-family: 'Golos Text', sans-serif;
    background-color: #fff;
    color: #333;
}

/* ==== SECCIÓN PRINCIPAL DEL PRODUCTO ==== */
.producto-detalle {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

/* ==== IMÁGENES ==== */
.producto-imagenes {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.producto-imagenes .imagen-principal {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
}

.producto-imagenes .imagen-principal img {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
}

.miniaturas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.miniaturas img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: #f4f4f4;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.miniaturas img:hover {
    transform: scale(1.05);
}

/* ==== INFORMACIÓN DEL PRODUCTO ==== */
.producto-info {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.producto-info h3 {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}

.producto-info h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem 0;
    color: #000;
}

.precio {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.precio-actual {
    font-size: 1.5rem;
    font-weight: bold;
}

.precio-anterior {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.descripcion-corta {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

/* ==== OPCIONES DE PRODUCTO ==== */
.opciones-producto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.opciones-producto form{
    margin-bottom: 0%;
}

.colores {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.colores p {
    margin-right: 0.5rem;
    font-weight: 600;
}

.color {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
}

.color-negro { background-color: #000; }
.color-marron { background-color: #5b3a29; }
.color-camel { background-color: #d2b48c; }

/* ==== CONTENEDOR CANTIDAD + BOTÓN ==== */
.acciones-producto {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea todo a la izquierda */
    gap: 0.6rem;
    margin-bottom: 2rem;
}

/* ==== TÍTULO “Cantidad:” ==== */
.titulo-cantidad {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ==== FILA DE CONTADOR + BOTÓN ==== */
.fila-acciones {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ==== CONTADOR ==== */
.cantidad-controles {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cantidad-controles button {
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    background-color: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cantidad-controles button:hover {
    background-color: #000;
    color: #fff;
}

.cantidad-controles input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 0.4rem;
    font-size: 1rem;
}

/* ==== BOTÓN AGREGAR ==== */
.btn-agregar {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btn-agregar:hover {
    background-color: #333;
}

/* ==== BENEFICIOS ==== */
.beneficios {
    display: flex;
    flex-direction: column;
}

.beneficio {
    display: flex;
    align-items: center; /* centra verticalmente el icono con el texto */
    gap: 1rem;
}

.beneficio img {
    width: 28px;
    height: 28px;
    position: relative;
    top: -8px; /* pequeño ajuste para compensar la altura visual */
}

.beneficio img {
    width: 28px;
    height: 28px;
}

.beneficio h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.beneficio p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}


/* ==== RESPONSIVE ==== */
@media (max-width: 900px) {

    .producto-imagenes, .producto-info {
        flex: 1 1 100%;
    }

    .producto-info {
        margin-top: 2rem;
    }
}
