:root {
    --primary: #0057B8;
    --primary-dark: #003d82;
    --primary-light: #1a6fd4;
    --accent: #FFD700;
    --accent-dark: #e6c200;
    --text-dark: #1a1a2e;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --footer-bg: #0f172a;
    --section-bg: #f0f6ff;
    --surface: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 87, 184, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 87, 184, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 87, 184, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 87, 184, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ─── Buttons ─── */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 10px 28px;
    box-shadow: 0 4px 14px rgba(0, 87, 184, 0.35);
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ffe566 100%);
    border: none;
    color: var(--text-dark);
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 12px 32px;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    min-height: 48px;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 12px 32px;
    background: transparent;
    transition: var(--transition);
    min-height: 48px;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ─── Top Bar ─── */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: rgba(255,255,255,0.92);
    font-size: 0.78rem;
    padding: 7px 0;
    letter-spacing: 0.01em;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

.top-bar-location {
    opacity: 0.9;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.top-bar-social a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* ─── Navbar ─── */
.main-navbar {
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 87, 184, 0.06);
}

.main-navbar .container {
    min-height: 72px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 8px 0;
    margin-right: 16px;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(0, 87, 184, 0.25);
    flex-shrink: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

.nav-main-links {
    gap: 4px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--section-bg);
}

.nav-link-quiet {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    padding: 10px 12px !important;
}

.nav-link-quiet:hover,
.nav-link-quiet.active {
    color: var(--primary) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding-top: 12px;
}

@media (min-width: 992px) {
    .nav-actions {
        padding-top: 0;
        margin-left: 0;
    }
}

.nav-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--section-bg);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.15rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.nav-icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.nav-icon-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc3545;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.nav-auth-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-auth-link:hover {
    background: var(--section-bg);
    color: var(--primary);
}

.nav-auth-muted {
    color: var(--text-light);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffe566 100%);
    border: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    padding: 11px 22px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    min-height: 44px;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 215, 0, 0.45);
}

.navbar .dropdown-menu {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 10px;
    min-width: 210px;
}

.navbar .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .dropdown-item i {
    color: var(--primary);
    width: 18px;
}

.navbar .dropdown-item:hover {
    background: var(--section-bg);
    color: var(--primary);
}

.navbar-toggler {
    border: 2px solid var(--border);
    padding: 6px 10px;
    border-radius: 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.navbar-collapse {
    padding: 16px 0 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        flex-grow: 1;
        padding: 0;
    }

    .nav-main-links {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
        padding-top: 8px;
        border-top: 1px solid var(--border);
        margin-top: 8px;
        gap: 10px;
    }

    .nav-auth-link {
        justify-content: center;
        padding: 12px;
        background: var(--section-bg);
    }

    .btn-nav-cta {
        width: 100%;
        padding: 14px 22px;
    }

    .nav-main-links .nav-link {
        padding: 12px 16px !important;
        border-radius: var(--radius-sm);
    }
}

/* ─── Hero Banner Image ─── */
.hero-banner-section {
    background: var(--primary-dark);
    line-height: 0;
}

.hero-banner-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.hero-banner-actions {
    background: var(--white);
    border-top: 4px solid var(--accent);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.hero-action-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-action-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-action-features i {
    color: var(--primary);
    margin-right: 4px;
}

.hero-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.hero-action-buttons .btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-action-buttons .btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    background: transparent;
    min-height: 48px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-action-buttons .btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Track button: desktop inline, hidden on tablet row */
.hero-btn-track {
    display: inline-flex;
}

/* ─── Desktop hero button consistency ─── */
@media (min-width: 992px) {
    .hero-action-bar {
        align-items: flex-end;
    }

    .hero-action-features {
        flex-wrap: nowrap;
        gap: 16px;
        white-space: nowrap;
    }

    .hero-action-buttons {
        flex-wrap: nowrap;
        gap: 14px;
    }

    .hero-action-buttons .btn {
        padding: 10px 22px;
        font-size: 0.95rem;
        min-height: 44px;
    }
}

/* ─── Hero (legacy/fallback) ─── */
.hero-section {
    position: relative;
    min-height: 580px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section.has-banner {
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.88) 0%, rgba(0, 87, 184, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 0 100px;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: var(--radius-md);
    padding: 12px 22px;
    margin-bottom: 24px;
}

.hero-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.hero-logo span {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hero-rider-visual {
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-rider-visual i {
    font-size: 14rem;
    color: var(--accent);
    opacity: 0.9;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content .lead {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 540px;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin: 28px 0;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-feature i {
    font-size: 1.75rem;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* ─── Sections ─── */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
    font-size: 1.05rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Service Cards ─── */
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    padding: 32px 24px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 87, 184, 0.2);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--section-bg);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card .category-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.service-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.service-card ul li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

/* ─── How It Works ─── */
.how-it-works {
    background: linear-gradient(180deg, var(--section-bg) 0%, var(--white) 100%);
    padding: 80px 0;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 20px 10px;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 87, 184, 0.3);
}

.step-item h6 {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.step-connector {
    position: absolute;
    top: 56px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed rgba(0, 87, 184, 0.25);
}

/* ─── Why Choose Us ─── */
.why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.why-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    background: var(--section-bg);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ─── Booking Form ─── */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--section-bg) 100%);
}

.booking-form {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.booking-form .form-control,
.booking-form .form-select,
.form-control,
.form-select {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    font-size: 0.95rem;
    transition: var(--transition);
    min-height: 48px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus,
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.booking-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.booking-illustration i {
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.08;
}

/* ─── Facebook Section ─── */
.facebook-section {
    background: var(--white);
    padding: 60px 0;
}

.facebook-box {
    background: linear-gradient(135deg, var(--section-bg) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.facebook-box .qr-code {
    width: 160px;
    height: 160px;
    margin: 20px auto;
    border: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 8px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.facebook-box .fb-icon {
    font-size: 3rem;
    color: var(--primary);
}

/* ─── Contact Bar ─── */
.contact-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 48px 0;
}

.contact-bar h6 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-bar p {
    margin-bottom: 6px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--footer-bg);
    color: #94a3b8;
    padding: 60px 0 0;
}

.site-footer h5 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

.site-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--accent);
}

.site-footer .footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

/* ─── Page Header ─── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    padding: clamp(48px, 8vw, 80px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    position: relative;
}

.page-header .lead {
    opacity: 0.9;
    position: relative;
}

/* ─── Services Page ─── */
.service-category-block {
    margin-bottom: 48px;
}

.service-category-block h3 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    font-size: 1.35rem;
}

.service-list-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-list-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 87, 184, 0.2);
}

.service-list-item h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

/* ─── Track Order ─── */
.track-result {
    background: var(--section-bg);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(0, 87, 184, 0.2);
    box-shadow: var(--shadow-sm);
}

/* ─── Auth Pages ─── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 24px 16px;
    position: relative;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: clamp(28px, 5vw, 44px);
    width: 100%;
    max-width: 440px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
}

.auth-card h3 {
    color: var(--primary);
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.5rem;
}

/* ─── Dashboard ─── */
.dashboard-wrapper {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 270px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    height: 100vh;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-brand {
    padding: 24px 20px;
    font-weight: 800;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: -0.02em;
}

.sidebar-brand i {
    margin-right: 10px;
    color: var(--accent);
}

.sidebar-nav {
    padding: 16px 12px;
}

.sidebar-nav .nav-link {
    color: rgba(255,255,255,0.75) !important;
    padding: 12px 16px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white) !important;
}

.sidebar-nav .nav-link.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent) !important;
    border-left: 3px solid var(--accent);
}

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

.sidebar-link-text {
    flex: 1;
}

.sidebar-alert-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 12px 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45);
    animation: sidebar-alert-glow 2s ease-in-out infinite;
}

.sidebar-alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sidebar-alert-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.sidebar-alert-text strong {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.sidebar-alert-text small {
    font-size: 0.72rem;
    opacity: 0.9;
}

.sidebar-nav .nav-link.nav-link-alert {
    background: rgba(239, 68, 68, 0.18);
    border-left: 3px solid #ef4444;
    color: var(--white) !important;
}

.sidebar-nav .nav-link.nav-link-alert:hover {
    background: rgba(239, 68, 68, 0.28);
}

.sidebar-nav .nav-link.nav-link-alert.active {
    background: rgba(255, 215, 0, 0.2);
    border-left-color: var(--accent);
}

.sidebar-badge {
    margin-left: auto;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.62rem;
    font-weight: 800;
    min-width: auto;
    height: auto;
    padding: 5px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: sidebar-badge-pulse 1.5s ease-in-out infinite;
}

.sidebar-nav .nav-link.active .sidebar-badge {
    background: #ef4444;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
}

@keyframes sidebar-badge-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.92; }
}

@keyframes sidebar-alert-glow {
    0%, 100% { box-shadow: 0 4px 16px rgba(239, 68, 68, 0.45); }
    50% { box-shadow: 0 4px 22px rgba(239, 68, 68, 0.65); }
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.show {
    display: block;
}

.dashboard-content {
    margin-left: 270px;
    flex: 1;
    background: #f1f5f9;
    min-height: 100vh;
    width: calc(100% - 270px);
}

.dashboard-header {
    background: var(--white);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.dashboard-body {
    padding: clamp(16px, 3vw, 32px);
    padding-bottom: 40px;
}

/* ─── Dashboard Footer ─── */
.dashboard-footer {
    margin-left: 270px;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 18px 28px;
    color: var(--text-light);
    font-size: 0.84rem;
    box-shadow: 0 -2px 12px rgba(0, 87, 184, 0.04);
}

.dashboard-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.dashboard-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
}

.dashboard-footer-brand i {
    color: var(--accent);
    background: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.dashboard-footer-meta {
    flex: 1;
    text-align: center;
    min-width: 180px;
}

.dashboard-footer-copy {
    color: var(--text-muted);
}

.dashboard-footer-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: var(--section-bg);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.dashboard-footer-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .dashboard-footer {
        margin-left: 0;
        padding: 16px 20px;
    }

    .dashboard-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-footer-meta {
        order: 3;
    }

    .dashboard-footer-links {
        justify-content: center;
    }
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card.accent::before { background: var(--accent); }
.stat-card.success::before { background: #22c55e; }
.stat-card.warning::before { background: #f59e0b; }
.stat-card.danger::before { background: #ef4444; }

.stat-card h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.stat-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(16px, 3vw, 28px);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.content-card .card-header-custom {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--section-bg);
}

/* ─── Tables ─── */
.table-responsive {
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border);
}

.table-responsive::after {
    content: '';
    position: sticky;
    right: 0;
    pointer-events: none;
}

.table {
    margin-bottom: 0;
}

.table th {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    padding: 14px 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.table td {
    vertical-align: middle;
    font-size: 0.9rem;
    padding: 14px 16px;
    border-color: var(--border);
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: var(--section-bg);
}

.table-hover tbody tr:hover {
    background: rgba(0, 87, 184, 0.04);
}

/* Mobile card-style tables */
@media (max-width: 767px) {
    .table-mobile-cards thead {
        display: none;
    }

    .table-mobile-cards tbody tr {
        display: block;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        margin-bottom: 12px;
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .table-mobile-cards tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 4px;
        border: none;
        border-bottom: 1px solid var(--border);
        text-align: right;
        gap: 12px;
    }

    .table-mobile-cards tbody td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 12px;
    }

    .table-mobile-cards tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary);
        font-size: 0.75rem;
        text-transform: uppercase;
        text-align: left;
        flex-shrink: 0;
    }

    .table-mobile-cards tbody td:last-child::before {
        display: none;
    }
}

/* ─── Badges ─── */
.badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

/* ─── Nav Pills (driver tasks filter) ─── */
.nav-pills .nav-link {
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 18px;
    color: var(--text-light) !important;
}

.nav-pills .nav-link.active {
    background: var(--primary) !important;
    color: var(--white) !important;
}

/* ─── Sidebar Toggle ─── */
.sidebar-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-toggle:hover {
    background: var(--primary-dark);
}

/* ─── Mobile Bottom CTA ─── */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    border-top: 1px solid var(--border);
    gap: 10px;
}

.mobile-cta-bar .btn {
    flex: 1;
    font-size: 0.9rem;
}

/* ─── Alerts ─── */
.alert {
    border-radius: var(--radius-md);
    border: none;
    font-weight: 500;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .step-connector {
        display: none;
    }

    .hero-action-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }

    .hero-action-features {
        justify-content: center;
        gap: 16px;
    }

    .hero-content {
        padding: 60px 0 80px;
        text-align: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-feature {
        flex: 1;
        min-width: 90px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .dashboard-content {
        margin-left: 0;
        width: 100%;
    }

    .sidebar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .dashboard-header {
        padding: 12px 16px;
    }

    .dashboard-header span {
        font-size: 0.9rem;
    }

    .booking-form {
        padding: 24px 20px;
    }

    .contact-bar .col-md-3 {
        text-align: center !important;
        margin-bottom: 8px;
    }

    .navbar .btn-primary-custom {
        width: 100%;
        margin-top: 8px;
    }

    .mobile-cta-bar {
        display: flex;
    }

    body.has-mobile-cta {
        padding-bottom: 72px;
    }

    .section-padding,
    .how-it-works,
    .booking-section {
        padding: 56px 0;
    }

    .facebook-box {
        padding: 28px 20px;
    }

    .page-header {
        padding: 48px 16px;
    }
}

/* Mobile hero buttons — stacked, full-width, polished */
@media (max-width: 767px) {
    .hero-banner-actions {
        padding: 20px 0 24px;
        background: linear-gradient(180deg, var(--section-bg) 0%, var(--white) 100%);
    }

    .hero-action-bar {
        gap: 18px;
    }

    .hero-action-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
        font-size: 0.8rem;
        padding: 0 4px;
    }

    .hero-action-features span {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 10px 4px;
        background: var(--white);
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .hero-action-features i {
        font-size: 1.25rem;
        margin-right: 0;
    }

    .hero-action-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0 4px;
    }

    .hero-action-buttons .btn {
        width: 100%;
        flex: none;
        min-height: 52px;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }

    .hero-action-buttons .btn-accent {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.45);
        order: 1;
    }

    .hero-action-buttons .btn-primary-custom {
        order: 2;
        background: var(--primary);
        box-shadow: 0 4px 14px rgba(0, 87, 184, 0.3);
    }

    .hero-action-buttons .btn-outline-primary {
        order: 3;
        background: var(--white);
        border-width: 2px;
    }
}

@media (max-width: 576px) {
    .hero-banner-actions {
        padding: 18px 0 22px;
    }

    .hero-action-features {
        font-size: 0.75rem;
    }

    .hero-action-buttons .btn {
        min-height: 50px;
        font-size: 0.9rem;
    }

    .hero-feature {
        min-width: calc(33% - 16px);
        padding: 12px 8px;
    }

    .hero-feature i {
        font-size: 1.4rem;
    }

    .hero-feature strong {
        font-size: 0.8rem;
    }

    .hero-feature small {
        font-size: 0.7rem;
    }

    .stat-card {
        padding: 18px;
    }

    .btn-accent,
    .btn-outline-white {
        width: 100%;
        margin-bottom: 8px;
    }

    .auth-card {
        padding: 24px 20px;
    }
}

/* ─── Marketplace / Shop Ordering ─── */
.marketplace-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.marketplace-search {
    position: relative;
    min-width: 280px;
    flex: 1;
    max-width: 400px;
}

.marketplace-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.marketplace-search .form-control {
    padding-left: 44px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border);
}

.store-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.store-card-cover {
    height: 140px;
    overflow: hidden;
    background: var(--section-bg);
    position: relative;
}

.store-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card-body {
    padding: 16px 16px 20px;
    position: relative;
}

.store-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--white);
    margin-top: -40px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.store-card-body h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.store-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.store-card-meta i {
    color: var(--primary);
}

.store-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.store-type-pill:hover,
.store-type-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.store-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.shop-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.shop-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 24px;
}

.shop-hero-content {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    color: var(--white);
}

.shop-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid var(--white);
    flex-shrink: 0;
}

.shop-hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 4px;
    color: var(--white);
}

.shop-hero-content p {
    margin-bottom: 4px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.shop-hero-meta {
    font-size: 0.85rem;
    opacity: 0.85;
}

.menu-category-title {
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    margin-bottom: 16px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-card-img {
    height: 160px;
    overflow: hidden;
    background: var(--section-bg);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h6 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

.cart-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.cart-fab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 87, 184, 0.4);
    transition: var(--transition);
}

.cart-fab-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 87, 184, 0.5);
}

.cart-fab-count {
    background: var(--accent);
    color: var(--text-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h6 {
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty .qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-item-subtotal {
    font-weight: 700;
    color: var(--primary);
    min-width: 70px;
    text-align: right;
}

.cart-summary {
    position: sticky;
    top: 100px;
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .cart-item-subtotal {
        width: 100%;
        text-align: left;
        padding-left: 78px;
    }

    .cart-fab {
        bottom: 80px;
        right: 16px;
        left: 16px;
    }

    .cart-fab-btn {
        justify-content: center;
        width: 100%;
    }

    .shop-hero {
        height: 180px;
    }

    .shop-hero-logo {
        width: 60px;
        height: 60px;
    }

    .shop-hero-content h1 {
        font-size: 1.3rem;
    }
}

@media print {
    .sidebar, .dashboard-header, .no-print, .sidebar-overlay, .mobile-cta-bar {
        display: none !important;
    }

    .dashboard-content {
        margin-left: 0;
        width: 100%;
    }
}
