/* Header */
header {
    background: white;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
        font-family: 'Raleway', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: #2c3e50;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.step.active {
    background: rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 420px) {
    .checkout-steps {
        gap: 8px;
    }

    .step {
        padding: 6px 12px;
        gap: 4px;
    }
}