/* ═══ Detail Pages (Men, Woman, Child) ═══ */

.rose { color: var(--rose-light); }

/* ── Hero ── */
.detail-hero {
    position: relative; min-height: 50vh; display: flex;
    align-items: center; justify-content: center;
    background: center/cover no-repeat;
    padding-top: 80px;
}
.detail-hero--men {
    /* Background image set inline in HTML for Mustang DSC_0177 */
}
.detail-hero--woman {
    background-image: url('../img/woman-main.png');
}
.detail-hero--child {
    background-image: url('../img/child-card.jpg');
    background-position: center 40%;
}

.detail-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.85) 100%);
}
.detail-hero__overlay--rose {
    background: linear-gradient(180deg, rgba(40,10,20,.7) 0%, rgba(0,0,0,.85) 100%);
}

.detail-hero__content {
    position: relative; z-index: 1; text-align: center; padding: 60px 24px;
}
.detail-hero__tag {
    display: inline-block; font-size: .72rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
    font-weight: 500;
}
.detail-hero__tag--rose { color: var(--rose-light); }
.detail-hero__content h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 12px; }
.detail-hero__content p { color: var(--gray-light); font-size: 1.05rem; }

/* ── Content Grid ── */
.detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.detail-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; }
.detail-text p { color: var(--gray-light); font-size: .95rem; margin-bottom: 16px; line-height: 1.8; }
.detail-text h3 { font-size: 1rem; font-weight: 600; margin: 28px 0 12px; color: var(--gold); }

.body--rose .detail-text h3 { color: var(--rose-light); }

.detail-text ul {
    list-style: none; padding: 0; margin-bottom: 28px;
}
.detail-text li {
    padding: 6px 0 6px 24px; position: relative; color: var(--gray-light); font-size: .9rem;
}
.detail-text li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
}
.body--rose .detail-text li::before { background: var(--rose); }

/* ── Price list (dos columnas) ── */
.price-list li {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.price-list li:last-child { border-bottom: none; }
.price-list .price {
    color: var(--gold); font-weight: 600; font-size: .9rem;
    flex-shrink: 0; white-space: nowrap; padding-top: 1px;
}
.body--rose .price-list .price { color: var(--rose-light); }
.price-list small {
    display: block; color: var(--gray); font-size: .78rem;
    margin-top: 4px; font-weight: 300;
}

/* ── Placeholder de imagen pendiente ── */
.detail-img--placeholder {
    background: linear-gradient(135deg, rgba(212,118,140,.12), rgba(40,10,20,.35));
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-light); font-size: .82rem; letter-spacing: 1.5px;
    text-transform: uppercase; border: 1px dashed rgba(212,118,140,.3);
}
.detail-img--placeholder.detail-img--main {
    grid-column: span 2; aspect-ratio: 16 / 10; font-size: 1rem;
}

.detail-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Images ── */
.detail-images {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.detail-img {
    border-radius: 12px; object-fit: cover; object-position: top center;
    width: 100%; aspect-ratio: 3 / 4;
    transition: transform .4s ease;
}
.detail-img:hover { transform: scale(1.02); }
.detail-img--main {
    grid-column: span 2; aspect-ratio: 16 / 10;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .detail-hero { min-height: 40vh; }
}

@media (max-width: 480px) {
    .detail-hero { min-height: 36vh; padding-top: 70px; }
    .detail-hero__content { padding: 36px 16px; }
    .detail-hero__content h1 { font-size: 1.8rem; }
    .detail-hero__content p { font-size: .9rem; }
    .detail-hero__tag { font-size: .68rem; letter-spacing: 2px; }

    .detail-grid { gap: 32px; }
    .detail-text h2 { font-size: 1.4rem; }
    .detail-text h3 { font-size: .95rem; }
    .detail-text p { font-size: .88rem; line-height: 1.7; }

    /* Price list: stack en mobile (label arriba, precio abajo) */
    .price-list li {
        flex-direction: column; align-items: flex-start;
        gap: 4px; padding: 12px 0 12px 18px;
    }
    .price-list li::before { top: 18px; }
    .price-list .price { padding-top: 0; font-size: .88rem; }
    .price-list small { margin-top: 2px; }

    /* CTA en columna, ocupando ancho */
    .detail-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .detail-cta .btn { width: 100%; text-align: center; }

    /* Imágenes: stack en columna, una sola por fila */
    .detail-images { grid-template-columns: 1fr; gap: 10px; }
    .detail-img { aspect-ratio: 4 / 5; }
    .detail-img--main { grid-column: auto; aspect-ratio: 4 / 5; }
    .detail-img--placeholder.detail-img--main { grid-column: auto; aspect-ratio: 4 / 5; }
}
