.main-content-product-page {
    padding-top: 92px;
}

.product-carousel-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--app-shadow);
    padding: 0.35rem;
}

.badge-price {
    background: linear-gradient(135deg, var(--tenant-primary), #2c8e79);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 1.1rem;
}

.theme-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.theme-label {
    cursor: pointer;
}

.theme-item {
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.theme-item img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 0.35rem;
    display: block;
}

.theme-radio:checked + .theme-label .theme-item {
    border-color: var(--tenant-primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(31, 111, 95, 0.18);
}

.stock-note {
    color: var(--tenant-muted);
}

@media (max-width: 767px) {
    .main-content-product-page {
        padding-top: 82px;
    }

    .product-carousel-image {
        aspect-ratio: 1 / 1;
    }
}
