/* ─── Detail page ─── */
.detail-image-wrapper {
    background: #ffffff;
    border: 1px solid #DEE2E6;
    border-radius: 1rem;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.detail-image-wrapper img {
    max-height: 450px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.detail-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #001c60;
}

/* ─── Tables (zebra-striped) ─── */
.spec-table {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
}

.spec-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #DEE2E6;
}

.spec-table tr:nth-of-type(odd) {
    background-color: #ebeef3;
}

.spec-table td:first-child {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #444652;
    width: 40%;
}

/* ─── Back button ─── */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #001c60;
    border: 2px solid #001c60;
    background: transparent;
    padding: 8px 16px;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.back-btn:hover {
    background-color: #001c60;
    color: #ffffff;
}

/* ─── Responsive: mobile ─── */
@media (max-width: 576px) {
    .detail-image-wrapper {
        padding: 12px;
    }

    .detail-price-value {
        font-size: 1.5rem;
    }
}
