

/* Contenedor Principal de Detalles */
.detail-page {
    background-color: var(--gris-oscuro);
    padding: 120px 5% 50px;
}

.product-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sección Galería */
.main-display {
    width: 100%;
    height: 500px;
    background-color: #000;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.main-display img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción y llena el cuadro */
    transition: opacity 0.3s ease;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 por fila para que quepan bien las 8 */
    gap: 10px;
}

.thumb {
    width: 100%;
    height: 80px;
    object-fit: cover; /* Aquí también para que las 8 se vean uniformes */
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumb:hover, .thumb.active {
    opacity: 1;
    border-color: var(--marfil);
}

/* Información */
.product-info {
    color: var(--marfil);
}

.brand-label { font-size: 0.8rem; letter-spacing: 3px; color: var(--acento-metal); }
.product-info h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 10px 0; }
.price-tag { font-size: 1.5rem; color: #a68966; margin-bottom: 30px; }

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin-bottom: 30px;
}

.feature span { display: block; font-size: 0.7rem; color: #888; text-transform: uppercase; }

.btn-reserve {
    width: 100%;
    padding: 20px;
    background-color: var(--marfil);
    color: var(--gris-oscuro);
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
}

/* Responsivo para móviles */
@media (max-width: 900px) {
    .product-container { grid-template-columns: 1fr; }
    .main-display { height: 300px; }
}

