:root {
    --primary-color: #5bc0de;
    --secondary-color: #f0faff;
    --text-dark: #333;
    --text-muted: #777;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.van-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
}

.van-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.van-card.selected {
    border-color: var(--primary-color);
    background: var(--secondary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.van-img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
}

.sidebar-summary {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.step {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(91, 192, 222, 0.3);
}

.pac-container {
    z-index: 3000 !important;
}