/* Royal Mithai Custom Styles */

/* Product Card Styling */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Inactive product styling */
.card.border-warning {
    border-width: 2px !important;
}

.text-muted {
    opacity: 0.7;
}

/* Badge spacing */
.badge {
    margin: 0.125rem;
}

/* Button group styling */
.btn-group .btn {
    flex: 1;
}

/* Form styling */
.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .card-img-top.bg-light {
    background-color: var(--bs-dark) !important;
}

[data-bs-theme="dark"] .text-muted {
    color: var(--bs-secondary) !important;
}

/* Status indicators */
.position-absolute {
    z-index: 10;
}

/* Product image placeholder */
.card-img-top .bi-image {
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 0.25rem;
    }
}