/* ===== Detalle Producto ===== */
.producto-detalle {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 20px;
}

.btn-volver {
    display: inline-block;
    margin-bottom: 20px;
    color: #007acc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #007acc;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-volver:hover {
    background: #007acc;
    color: #fff;
}

/* Card */
.producto-card {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Imagen */
.producto-img img {
    width: 380px;
    height: 375px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Info */
.producto-info {
    flex: 1;
}

.producto-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.producto-info .descripcion {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.producto-info .precio {
    font-size: 1.6rem;
    font-weight: bold;
    color: #007acc;
    margin: 15px 0;
}

/* Talles */
.producto-info .talles {
    margin-bottom: 20px;
}

.producto-info .talles span {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #f5f5f5;
    color: #444;
}

/* Botón comprar */
.btn-comprar {
    display: inline-block;
    background: #25D366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-comprar:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .producto-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .producto-img img {
        width: 100%;
        max-width: 320px;
        margin: auto;
    }

    .producto-info {
        margin-top: 20px;
    }
}
