/* Bulteel Antiques — Global Styles */

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: #FAFAF5;
    color: #2E1B0F;
}

/* Smooth transitions for MudBlazor components */
.mud-nav-link {
    transition: background-color 0.2s ease;
}

/* Product card hover effect */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F0EB;
}

::-webkit-scrollbar-thumb {
    background: #BFA98E;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8D6E63;
}

/* Blazor error UI */
.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
    border-radius: 4px;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* Print styles */
@media print {
    .mud-appbar, .mud-drawer, .mud-snackbar-provider {
        display: none !important;
    }
}