.contacts-page {
    background: #ffffff;
    padding: 0 0 40px 0;
}

.contacts-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 22px 0 22px;
}

.contacts-title {
    margin: 0px 0px 26px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #4a5660;

}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 60px;
    align-items: flex-start;
}

.contacts-hint {
    margin: 0 0 14px 96px;
    color: #6f7b86;
    font-size: 15px;
}

.contacts-hint-left {
    margin-left: 0;
}

.store-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.store-pin {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    margin: 0 26px 0 34px;
}

.store-pin::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 28px;
    height: 38px;
    background: #ef2f17;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.store-pin::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 9px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
}

.store-text {
    padding-top: 2px;
}

.store-name {
    margin-bottom: 6px;
    color: #464646;
    font-size: 16px;
    font-weight: 700;
}

.store-address {
    color: #464646;
    font-size: 15px;
    text-decoration: none;
}

.store-address:hover {
   /* text-decoration: underline; */
}

.contacts-subtitle {
    margin: 4px 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #464646;
}

.contacts-list {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    overflow: hidden;
    background: #ffffff;
}

.contact-row {
    min-height: 52px;
    padding: 0 20px;
    border-bottom: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #222222;
    font-size: 15px;
    text-decoration: none;
}

.contact-row:last-child {
    border-bottom: none;
}

.phone-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 28px;
    padding: 0 12px;
    border-radius: 16px;
    background: #df3548;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.phone-badge:hover {
    background: #c92d3f;
    text-decoration: none;
    color: #fff;
}

.contact-social:hover {
    background: #f7f7f7;
    text-decoration: none;
}

.social-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.vk-icon {
    background: #4c7198;
}

.vk-icon::before {
    content: "vk";
    font-size: 18px;
    font-weight: 700;
}

.ok-icon {
    background: #f28c13;
}

.ok-icon::before {
    content: "ok";
    font-size: 17px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contacts-hint {
        margin-left: 74px;
    }

    .contacts-hint-left {
        margin-left: 0;
    }

    .contacts-block {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
   /* .stores-block {
     margin-top: -20px;
    }*/

   .contacts-layout {
    gap: 10px;
}


    .contacts-wrap {
        padding: 14px 14px 30px 14px;
    }

   .contacts-title {
        margin: 0 0 15px 0;
        font-size: 18px;
        font-weight: 700;
        color: #4a5660;
        text-align: center;
    }

    .contacts-hint {
        margin-left: 0;
        font-size: 14px;
    }

    .store-item {
        margin-bottom: 18px;
    }

    .store-pin {
        margin-left: 0;
        margin-right: 14px;
        flex-basis: 42px;
    }

    .store-name {
        font-size: 15px;
    }

    .store-address {
        font-size: 14px;
    }

    .contact-row {
        min-height: 58px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .phone-badge {
        min-width: auto;
        font-size: 12px;
        padding: 0 10px;
    }
}