:root {
    --brand-red: #ff0000;
    --brand-dark-red: #8b0000;
    --brand-light-red: #fce3e3;
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: #292929;
}
h1,
h2,
h3,
.btn-brand,
.service-price,
.navbar-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
input,
select {
    font-size: 16px !important;
}

.rounded-custom {
    border-radius: var(--radius);
}
.bg-grey {
    background-color: #f8f9fa;
}

/* Кнопки */
.btn-brand {
    border-radius: 30px;
    padding: 10px 30px;
    transition: 0.3s;
    border: 1px solid var(--brand-red);
    font-weight: 600;
}
.btn-red {
    background: var(--brand-red);
    color: #fff;
}
.btn-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@media (hover: hover) {
    .btn-red:hover {
        background: var(--brand-dark-red);
        border-color: var(--brand-dark-red);
        color: #fff;
    }
    .btn-white:hover {
        background: #fff;
        color: #000;
    }
}

/* Элементы формы и сетки времени */
.time-slot-btn {
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
    text-align: center;
}
.time-slot-btn.active {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
}

/* Главный экран: УКАЖИТЕ ТОЧНОЕ ИМЯ ВАШЕГО ФОНОВОГО ИЗОБРАЖЕНИЯ */
.hero-bg {
    height: 100vh;
    /* Например: url('../img/bg.jpg') или url('../img/main-photo.png') */
    background: url("../img/НАЗВАНИЕ_ВАШЕГО_ФОНА.jpg") center/cover no-repeat;
}

/* Подвал */
footer {
    background: #111;
    color: #adb5bd;
}
footer a {
    color: inherit;
    text-decoration: none;
}

.hero-bg {
    min-height: 80vh;
    background: url("../img/640bg.svg") center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.caption {
    position: relative;
    z-index: 1;
}

/* FAQ Аккордеон */
.accordion-item {
    border: none;
    background-color: #f8f9fa;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    background-color: #f8f9fa;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #292929;
    box-shadow: none !important;
    padding: 20px;
    font-size: 18px;
}
.accordion-button:not(.collapsed) {
    background-color: #fce3e3;
    color: red;
}
.accordion-body {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 16px;
}

/* Отзывы и Карта */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}
.review-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s;
    height: 100%;
}
.stars {
    color: #ffc107;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
}

/* Блок подбора шин */
.tire-selector-wrapper {
    background-color: #fce3e3;
    border-radius: 20px;
    padding: 40px 30px;
}
