/*#region Fonts*/

@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Vazir-Light.ttf) format('woff2');
}

@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Vazir-Regular.ttf) format('woff2');
}

@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Vazir-Medium.ttf) format('woff2');
}

@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Vazir-Bold.ttf) format('woff2');
}

@font-face {
    font-family: 'Vazir';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/Vazir-Bold.ttf) format('woff2');
}
/*#endregion*/

/*#region Map Dialog*/
.map-dialog .mud-dialog-content {
    height: calc(100vh - 140px);
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.confirm-fab {
    position: absolute !important;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.location-fab {
    position: absolute !important;
    bottom: 50px;
    right: 16px;
    z-index: 1000;
}
/*#endregion*/

/*#region Shopping Cart Styles*/
.cart-item-card {
    transition: all 0.2s ease-in-out;
}

.cart-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.cart-quantity-controls {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 8px;
}

.cart-summary-sticky {
    position: sticky;
    bottom: 80px;
    z-index: 10;
}

@media (max-width: 600px) {
    .cart-item-card {
        margin: 8px 0;
    }

    .cart-summary-sticky {
        margin: 0 -16px;
        border-radius: 0;
    }
}
/*#endregion*/

.selected-station {
    background: linear-gradient(135deg, #1976d2 0%, #aad9ff 100%);
    color: white !important;
}