/*=============================================
                Страница контактов
===============================================*/

.contacts-title {
    font-family: 'Onest', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #000000;
}

.contacts-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Onest', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.section-content {
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 20px;
}

.section-content > *:first-child {
    margin-top: 0;
}

.section-content > *:last-child {
    margin-bottom: 0;
}

.description-text {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
}

.description-text:last-of-type {
    margin-bottom: 10px;
}

.description-list {
    margin: 0;
    padding-left: 25px;
    list-style-type: disc;
}

.description-list li {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 5px;
}

.description-list {
    margin-bottom: 0;
}

.description-list li:last-child {
    margin-bottom: 0;
}

/* Адреса магазинов */
.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.address-card {
    background-color: #F5F5F5;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-title {
    font-family: 'Onest', sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.address-hours {
    font-family: 'Onest', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.address-link {
    font-family: 'Onest', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    margin-top: 5px;
}

.link-arrow {
    width: 16px;
    height: 16px;
}

/* Реквизиты и Телефон в одну линию */
.phone-requisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.phone-section,
.requisites-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phone-section .section-title,
.requisites-section .section-title {
    margin-bottom: 15px;
}

.phone-section .section-content,
.requisites-section .section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Контакты */
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.contact-label {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    color: #000000;
    min-width: 60px;
}

.phone-link,
.email-link {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    color: #000000;
    text-decoration: none;
}

.phone-link,
.email-link {
    text-decoration: underline;
}

/* Реквизиты */
.requisites-section .section-content {
    justify-content: center;
}

.requisites {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requisite-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.requisite-label {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    color: #000000;
    min-width: 100px;
}

.requisite-value {
    font-family: 'Onest', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    color: #000000;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contacts-title {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .contacts-section {
        margin-bottom: 40px;
    }

    .section-content {
        padding: 15px;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .address-card {
        padding: 15px;
    }

    .phone-requisites-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .requisite-item {
        flex-direction: column;
        gap: 5px;
    }

    .requisite-label {
        min-width: auto;
    }
}

