/* Loader Styles
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.bus-loader {
    position: relative;
    width: 200px;
    height: 100px;
    margin-bottom: 2rem;
}

.bus-body {
    width: 180px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px 15px 5px 5px;
    position: relative;
    animation: drive 2s infinite ease-in-out;
}

.bus-window {
    width: 120px;
    height: 30px;
    background: var(--accent);
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 30px;
}

.bus-food {
    position: absolute;
    top: 15px;
    right: 20px;
}

.food-item {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
}

.food-item.burger {
    width: 20px;
    height: 15px;
    top: 0;
    right: 0;
    background: #8B4513;
}

.food-item.drink {
    width: 10px;
    height: 15px;
    top: 20px;
    right: 5px;
    background: #FF6B6B;
}

.bus-wheels {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.wheel {
    width: 25px;
    height: 25px;
    background: var(--dark);
    border-radius: 50%;
    border: 3px solid #333;
    animation: spin 1s infinite linear;
}

@keyframes drive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader p {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
}

.loaded #loader {
    opacity: 0;
    pointer-events: none;
} */