﻿.progress {
    height: 8px;
    background: #0b1220;
    border-radius: 999px;
    overflow: hidden;
    margin: 10px 0
}

.Catalogue .main-menu li a {
    color: #000 !important
}
.controlsflipbbok {
    display: none
}

.progress > div {
    height: 100%;
    width: 0;
    background: #60a5fa;
    transition: width .2s ease
}
.dealer-search {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

    .dealer-search h2 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
    }

.description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.select-city,
.select-district,
.filter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-size: 15px;
}

.filter-input {
    min-width: 100%;
}

.btn-search {
    padding: 12px 28px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
}

    .btn-search:hover {
        background-color: #333;
    }

.map-container {
    width: 100%;
    margin-bottom: 30px;
}

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeIn 0.8s ease;
}

.dealer-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
    cursor: pointer;
    border: 1px solid transparent;
}

    .dealer-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-6px);
        border-color: #000;
    }

    .dealer-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .dealer-card p {
        margin: 6px 0;
        color: #444;
        font-size: 15px;
    }

.btn-direction {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .btn-direction:hover {
        background-color: #333;
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
