/* =============================================
   نظام إدارة مغسلة السيارات
   Car Wash Management System - Custom Styles
   ============================================= */

/* Google Font - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================
   CSS Variables / Design Tokens
   ============================================= */
:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #6c83f2;
    --primary-gradient: linear-gradient(135deg, #4361ee 0%, #7b2ff7 100%);
    --secondary: #6c757d;
    --success: #06d6a0;
    --success-dark: #05b98a;
    --info: #118ab2;
    --warning: #ffd166;
    --danger: #ef476f;
    --danger-dark: #d63d62;
    --dark: #1a1d29;
    --dark-light: #252836;
    --sidebar-bg: #1a1d29;
    --sidebar-hover: #2d3147;
    --sidebar-active: #4361ee;
    --body-bg: #f0f2f5;
    --card-bg: #ffffff;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #b2bec3;
    --border-color: #e9ecef;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-family: 'Cairo', sans-serif;
    --sidebar-width: 280px;
    --navbar-height: 65px;
}

/* =============================================
   Global Reset & Base
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    font-size: 14px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* =============================================
   Scrollbar
   ============================================= */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* =============================================
   Login Page
   ============================================= */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: loginBg 15s infinite linear;
}

@keyframes loginBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 45px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    animation: loginSlide 0.6s ease-out;
}

@keyframes loginSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.login-logo h2 {
    color: var(--dark);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 5px;
}

.login-logo p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* =============================================
   Sidebar
   ============================================= */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    z-index: 1040;
    transition: var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

.sidebar-brand {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: var(--navbar-height);
}

.sidebar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.sidebar-brand .brand-text {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.sidebar-brand .brand-sub {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    display: block;
}

.sidebar-nav {
    padding: 15px 0;
    list-style: none;
}

.sidebar-nav .nav-section {
    padding: 10px 25px 5px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-nav .nav-item {
    margin: 2px 12px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.65);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-nav .nav-link:hover {
    color: #fff;
    background: var(--sidebar-hover);
}

.sidebar-nav .nav-link.active {
    color: #fff;
    background: var(--sidebar-active);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

.sidebar-nav .nav-link i {
    width: 22px;
    font-size: 16px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-nav .nav-link .badge {
    margin-right: auto;
    margin-left: 0;
    font-size: 10px;
}

/* =============================================
   Top Navbar
   ============================================= */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: var(--sidebar-width);
    height: var(--navbar-height);
    background: var(--card-bg);
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.top-navbar .navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-navbar .page-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: var(--body-bg);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-user:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-user .user-avatar {
    width: 34px;
    height: 34px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
}

/* =============================================
   Main Content
   ============================================= */
.main-content {
    margin-right: var(--sidebar-width);
    margin-top: var(--navbar-height);
    padding: 25px;
    min-height: calc(100vh - var(--navbar-height));
    transition: var(--transition);
}

/* =============================================
   Dashboard Cards
   ============================================= */
.stat-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 22px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.stat-card.primary::before { background: var(--primary); }
.stat-card.success::before { background: var(--success); }
.stat-card.info::before { background: var(--info); }
.stat-card.warning::before { background: var(--warning); }
.stat-card.danger::before { background: var(--danger); }

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.stat-card.primary .stat-icon { background: rgba(67,97,238,0.1); color: var(--primary); }
.stat-card.success .stat-icon { background: rgba(6,214,160,0.1); color: var(--success); }
.stat-card.info .stat-icon { background: rgba(17,138,178,0.1); color: var(--info); }
.stat-card.warning .stat-icon { background: rgba(255,209,102,0.15); color: #e6a800; }
.stat-card.danger .stat-icon { background: rgba(239,71,111,0.1); color: var(--danger); }

.stat-card .stat-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* =============================================
   Cards & Panels
   ============================================= */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background: var(--card-bg);
    overflow: hidden;
}

.card-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.card-header .card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body {
    padding: 22px;
}

/* =============================================
   Tables
   ============================================= */
.table-responsive {
    border-radius: var(--border-radius-sm);
    overflow: auto;
}

.table {
    margin-bottom: 0;
    font-size: 13px;
}

.table thead th {
    background: var(--body-bg);
    border-bottom: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    padding: 12px 15px;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.table tbody tr:hover {
    background: rgba(67, 97, 238, 0.03);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* =============================================
   Forms
   ============================================= */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 15px;
    font-family: var(--font-family);
    font-size: 14px;
    transition: var(--transition);
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67,97,238,0.15);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 13px;
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    border-radius: var(--border-radius-sm);
    padding: 9px 20px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67,97,238,0.3);
}

.btn-success {
    background: var(--success);
    color: #fff;
}
.btn-success:hover {
    background: var(--success-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6,214,160,0.3);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}
.btn-danger:hover {
    background: var(--danger-dark);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 5px 12px;
    font-size: 12px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 15px;
}

/* =============================================
   Badges
   ============================================= */
.badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    font-family: var(--font-family);
}

.badge-active, .badge.bg-success {
    background: rgba(6,214,160,0.12) !important;
    color: var(--success-dark) !important;
}

.badge-inactive, .badge.bg-danger {
    background: rgba(239,71,111,0.12) !important;
    color: var(--danger) !important;
}

.badge-completed {
    background: rgba(6,214,160,0.12);
    color: var(--success-dark);
}

.badge-cancelled {
    background: rgba(239,71,111,0.12);
    color: var(--danger);
}

/* =============================================
   Alerts / Toasts
   ============================================= */
.alert {
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(6,214,160,0.12);
    color: #047857;
}

.alert-danger {
    background: rgba(239,71,111,0.12);
    color: #dc2626;
}

.alert-warning {
    background: rgba(255,209,102,0.2);
    color: #92400e;
}

.toast-container {
    position: fixed;
    top: 80px;
    left: 25px;
    z-index: 9999;
}

/* =============================================
   Charts Container
   ============================================= */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

/* =============================================
   Receipt / Invoice
   ============================================= */
.receipt {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Cairo', monospace;
    text-align: center;
    background: #fff;
}

.receipt .receipt-header {
    border-bottom: 2px dashed #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.receipt .receipt-header h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.receipt .receipt-body {
    text-align: right;
    font-size: 13px;
}

.receipt .receipt-body .item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dotted #ddd;
}

.receipt .receipt-footer {
    border-top: 2px dashed #333;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 12px;
    color: #666;
}

.receipt .receipt-total {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
    padding: 10px;
    border: 2px solid var(--primary);
    border-radius: 8px;
}

/* =============================================
   Print Styles
   ============================================= */
@media print {
    .sidebar, .top-navbar, .no-print, .btn, .card-header .btn {
        display: none !important;
    }
    .main-content {
        margin: 0 !important;
        padding: 10px !important;
    }
    body {
        background: #fff;
        font-size: 12px;
    }
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    .receipt {
        max-width: 80mm;
        padding: 5px;
    }
}

/* =============================================
   Empty State
   ============================================= */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.empty-state h5 {
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
}

/* =============================================
   Animations
   ============================================= */
.fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =============================================
   Report Filters
   ============================================= */
.report-filters {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.filter-btn-group .btn {
    font-size: 12px;
    padding: 6px 14px;
}

.filter-btn-group .btn.active {
    background: var(--primary);
    color: #fff;
}

/* =============================================
   Worker Account Card
   ============================================= */
.account-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.account-summary .summary-item {
    background: var(--body-bg);
    border-radius: var(--border-radius-sm);
    padding: 18px;
    text-align: center;
}

.account-summary .summary-item .value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.account-summary .summary-item .label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* =============================================
   Modal Enhancements
   ============================================= */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 18px 22px;
}

.modal-header .modal-title {
    font-weight: 700;
}

.modal-body {
    padding: 22px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 15px 22px;
}

/* =============================================
   Sidebar Overlay (Mobile)
   ============================================= */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(100%);
    }
    .sidebar.show {
        transform: translateX(0);
    }
    .sidebar-overlay.show {
        display: block;
    }
    .top-navbar {
        right: 0;
    }
    .main-content {
        margin-right: 0;
    }
    .sidebar-toggle {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .main-content {
        padding: 15px;
    }
    .stat-card .stat-value {
        font-size: 20px;
    }
    .card-body {
        padding: 15px;
    }
    .card-header {
        padding: 14px 16px;
    }
    .table {
        font-size: 12px;
    }
    .top-navbar .page-title {
        font-size: 15px;
    }
    .account-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .account-summary {
        grid-template-columns: 1fr;
    }
    .login-card {
        padding: 30px 25px;
    }
}

/* =============================================
   Quick Actions Floating Button
   ============================================= */
.quick-action-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(67,97,238,0.4);
    z-index: 1020;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(67,97,238,0.5);
}

/* =============================================
   Search Box in Navbar
   ============================================= */
.search-box {
    position: relative;
    max-width: 300px;
}

.search-box input {
    padding-right: 40px;
    border-radius: 50px;
    background: var(--body-bg);
    border: 2px solid transparent;
    font-size: 13px;
}

.search-box input:focus {
    background: #fff;
    border-color: var(--primary);
}

.search-box .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-results {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1050;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-results.show {
    display: block;
}

.search-results .search-item {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-results .search-item:hover {
    background: var(--body-bg);
}

.search-results .search-item:last-child {
    border-bottom: none;
}

/* =============================================
   Loading Spinner
   ============================================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   Currency / Exchange Rate
   ============================================= */
.exchange-rate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 14px 6px 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: var(--transition);
    text-align: right;
    line-height: 1.15;
}
.exchange-rate-badge:hover,
.exchange-rate-badge:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}
.exchange-rate-badge i.fa-dollar-sign {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.exchange-rate-text {
    display: flex;
    flex-direction: column;
}
.exchange-rate-label {
    font-size: 10px;
    opacity: 0.85;
    font-weight: 600;
}
.exchange-rate-caret {
    font-size: 9px;
    opacity: 0.8;
}
.exchange-rate-dropdown {
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.currency-hero {
    background: linear-gradient(135deg, #059669 0%, #0f766e 55%, #134e4a 100%);
    color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 28px;
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.25);
}
.currency-hero-label {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 600;
    margin-bottom: 6px;
}
.currency-hero-rate {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.currency-hero-usd {
    font-size: 22px;
    font-weight: 800;
}
.currency-hero-eq {
    opacity: 0.7;
    font-size: 20px;
}
.currency-hero-sdg {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.currency-hero-code {
    font-size: 16px;
    opacity: 0.85;
    font-weight: 700;
}
.currency-hero-chip {
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.price-currency-toggle .btn {
    min-width: 140px;
}

@media (max-width: 991px) {
    .exchange-rate-label {
        display: none;
    }
    .exchange-rate-badge strong {
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .exchange-rate-text {
        display: none;
    }
}
