/* Информационный блок вместо баннеров на главной.
   Чтобы вернуть баннеры: в header.php поставьте $SHOW_STORE_NOTICE_INSTEAD_OF_BANNERS = false; */

.homepage-store-notice #stocks {
    display: none !important;
}

.store-notice {
    background: #FAFAFA;
    padding: 16px 0 8px;
}

.store-notice__wrapper {
    max-width: 1270px;
    margin: 0 auto;
}

.store-notice__card {
    background: #fff;
    border-radius: 4px;
    padding: 20px 16px 18px;
    box-sizing: border-box;
}

.store-notice__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.store-notice__eyebrow {
    margin: 0 0 8px;
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #F95632;
}

.store-notice__title {
    margin: 0 0 12px;
    font-family: "MuseoSansCyrl-Bold", sans-serif;
    font-size: 22px;
    line-height: 26px;
    color: #000;
}

.store-notice__lead,
.store-notice__text {
    margin: 0 0 10px;
    font-family: "MuseoSansCyrl-Light", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #222;
}

.store-notice__lead {
    font-family: "MuseoSansCyrl-Regular", sans-serif;
}

.store-notice__facts {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.store-notice__fact {
    display: grid;
    gap: 2px;
}

.store-notice__fact-label {
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #868686;
}

.store-notice__fact-value {
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.store-notice__fact-value a {
    color: #0065DC;
    text-decoration: none;
}

.store-notice__fact-value a:hover {
    text-decoration: underline;
}

.store-notice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.store-notice__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 100px;
    box-sizing: border-box;
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 13px;
    line-height: 18px;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.store-notice__btn-icon {
    flex-shrink: 0;
}

.store-notice__btn--maps {
    background: #FC3F1D;
    color: #fff;
}

.store-notice__btn--maps:hover {
    background: #e13214;
    color: #fff;
}

.store-notice__btn--route {
    background: #fff;
    color: #0065DC;
    border: 1px solid #DADADA;
}

.store-notice__btn--route:hover {
    border-color: #0065DC;
    color: #0065DC;
}

.store-notice__btn--phone {
    background: #fff;
    color: #000;
    border: 1px solid #DADADA;
}

.store-notice__btn--phone:hover {
    border-color: #000;
}

.store-notice__map {
    position: relative;
    min-height: 240px;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
    background: #F5F5F5;
}

.store-notice__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.store-notice__map-link {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 11px;
    line-height: 14px;
    color: #0065DC;
    text-decoration: none;
}

.store-notice__map-link:hover {
    text-decoration: underline;
}

.store-notice__brands {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #EDEDED;
}

.store-notice__brands-title {
    margin: 0 0 14px;
    font-family: "MuseoSansCyrl-Bold", sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.store-notice__groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.store-notice__group-title {
    margin: 0 0 8px;
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #555;
}

.store-notice__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-notice__tags li {
    padding: 6px 10px;
    border-radius: 100px;
    background: #F6F7FB;
    font-family: "MuseoSansCyrl-Regular", sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: #000;
}

.mayday__container a.mayday__link {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .store-notice {
        padding: 20px 0 4px;
    }

    .store-notice__card {
        padding: 28px 24px 24px;
    }

    .store-notice__title {
        font-size: 26px;
        line-height: 30px;
    }

    .store-notice__lead,
    .store-notice__text,
    .store-notice__fact-value {
        font-size: 15px;
        line-height: 22px;
    }

    .store-notice__facts {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .store-notice__map {
        min-height: 280px;
        height: 280px;
    }

    .store-notice__groups {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }
}

@media (min-width: 1024px) {
    .store-notice__wrapper {
        padding: 0 8px;
        width: 1270px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .store-notice__card {
        padding: 32px 28px 28px;
    }

    .store-notice__top {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        gap: 28px;
        align-items: stretch;
    }

    .store-notice__map {
        min-height: 360px;
        height: auto;
        align-self: stretch;
    }

    .store-notice__groups {
        grid-template-columns: 1fr 1.2fr 1fr 1.1fr;
    }

    .store-notice__btn {
        min-height: 44px;
        font-size: 14px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .store-notice__actions .store-notice__btn {
        width: 100%;
    }
}
