/* ── Page Hero ──────────────────────────────────── */
.page-hero {
    padding: 8rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── Products List ─────────────────────────────── */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-item {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ── Slideshow ─────────────────────────────────── */
.product-slideshow {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active {
    opacity: 1;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 22, 40, 0.6);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    line-height: 1;
}

.slide-arrow:hover {
    background: rgba(201, 168, 76, 0.8);
}

.slide-arrow.prev {
    left: 0.75rem;
}

.slide-arrow.next {
    right: 0.75rem;
}

.slide-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(10, 22, 40, 0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active,
.dot:hover {
    background: var(--gold);
}

/* ── Product Detail ────────────────────────────── */
.product-detail {
    padding-top: 0.5rem;
}

.product-detail h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.product-sku {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-desc p {
    margin-bottom: 0.5rem;
}

.product-desc p:last-child {
    margin-bottom: 0;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 850px) {
    .product-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-slideshow {
        max-width: 340px;
    }
}

@media (max-width: 550px) {
    .page-hero {
        padding: 7rem 1.5rem 2rem;
    }

    .product-slideshow {
        max-width: 100%;
    }
}
