.detail-container {
    background: transparent;
    color: var(--text-primary, #000);
    transition: color 0.3s ease;
}

body.dark-mode .detail-container {
    background: transparent;
    color: #e4e6eb;
}

main .container-lg {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.detail-card {
    background: var(--bg-secondary, #ffffff);
    border-color: var(--border-color, #dee2e6) !important;
    transition: background-color 0.3s ease;
}

body.dark-mode .detail-card {
    background: #262626;
    border-color: #404040 !important;
    color: #e4e6eb;
}

.product-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #f5f5f5;
}

.badge-pill {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
}

.text-muted {
    color: var(--text-secondary, #6c757d) !important;
}

body.dark-mode .text-muted {
    color: #b0b3b8 !important;
}
