/* Luxury Digital Catalog Product Styles */
body.product-page {
    padding-top: 110px;
    background: #f9f7f4;
    font-family: 'Montserrat', sans-serif;
}

.product-hero {
    padding: 3rem 0 5rem;
}

.product-hero .product-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 3rem;
}

.lux-gallery {
    background: #fff;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.gallery-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f0efec;
}

.gallery-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.gallery-thumb-strip {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumb {
    flex: 0 0 90px;
    border-radius: 18px;
    overflow: hidden;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb.active {
    border-color: #d4af37;
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-contact-card {
    position: sticky;
    top: 140px;
    background: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lead-contact-card .eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a8a29e;
}

.lead-contact-card .title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0.75rem 0 1.5rem;
}

.product-metadata {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #f0ede6;
    border-bottom: 1px solid #f0ede6;
}

.product-metadata li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.product-metadata span {
    font-weight: 600;
    color: #0d0d0d;
}

.lead-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.lead-action-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.lead-action-buttons .whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
}

.lead-action-buttons .call {
    background: #111;
    color: #fff;
}

.detail-body {
    margin-top: 3rem;
    background: #fff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detail-copy {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5c5c5c;
}

.detail-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.detail-note-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: #f9f5e9;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-note-card h5 {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #8a7a4f;
}

.detail-note-card p {
    margin: 0.4rem 0 0;
    color: #3a3a3a;
    font-weight: 600;
}

.inquiry-note {
    margin-top: 2rem;
    padding: 1rem;
    border-left: 3px solid #d4af37;
    color: #5c5c5c;
    font-style: italic;
}

@media (max-width: 1200px) {
    .product-hero .product-grid {
        grid-template-columns: 1fr;
    }

    .lead-contact-card {
        position: static;
    }
}

@media (max-width: 768px) {
    body.product-page {
        padding-top: 90px;
    }

    .product-hero {
        padding: 2rem 0 4rem;
    }

    .lux-gallery,
    .detail-body,
    .lead-contact-card {
        border-radius: 24px;
        padding: 1.5rem;
    }

    .lead-action-buttons {
        flex-direction: column;
    }

    .gallery-thumb {
        flex-basis: 70px;
    }
}
