.contacts-company {
    --clr: #b2d235;
    --primary: #662d91;
    --primary-hover: #8f48c6;
    --text-dark: #333;
    --text-light: #676767;
    --white: #fff;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --btn-light: #f5f5f5;
}

.contacts-company__section {
    margin-bottom: 60px;
}

.contacts-company__title {
    margin-bottom: 35px;
    font-size: 32px;
    font-family: "toxy", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ====contacts section=======*/
.contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.contacts__card {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 8px;
    padding: 25px 20px;
    background-color: var(--primary);
    box-shadow: var(--shadow);
    color: var(--white);
    text-align: center;
    transition: background-color .25s ease;
}

.contacts__card:hover {
    background-color: var(--primary-hover);
}

.card__icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.card__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.contacts__card a {
    color: var(--clr);
    text-decoration: none;
    transition: color .25s ease;
}

.contacts__card a:hover {
    color: var(--white);
} 

.contacts__card a,
.contacts__card p {
    font-size: 18px;
}

/* ====payment section=======*/
.payment__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.payment__item {
    border-radius: 8px;
    padding: 10px;
    position: relative;
    z-index: 5;
}

.highlight {
    position: absolute;
    background: var(--clr);
    border-radius: 8px;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.payment__link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.payment__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
}

.payment__title {
    width: 100%;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}

/* ======section map==== */
.map__wrap {
    border: 4px solid var(--primary);
    border-radius: 8px;
    max-height: 428px;
    overflow: hidden;
}

.map .map__wrap .contacts-page-map .bx-yandex-view-layout {
    padding-left: 15px;
    padding-right: 15px;
}

.map .map__wrap .ymaps-map {
    width: 100% !important;
}

/* ======section stores==== */
.stores {
    border-bottom: 4px solid var(--primary);
    padding-bottom: 30px;
}

.stores-tabs {
    display: flex;
    gap: 25px;
    padding-bottom: 50px;
}

.stores-tabs__btn {
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    background-color: var(--btn-light);
    color: var(--text-dark);
    font-family: "toxy", sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .01em;
    cursor: pointer;
}

.stores-tabs__btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.stores__title {
    margin-top: 45px
}

.stores__inner {
    display: none;
}

.stores__inner.active {
    display: block;
    animation: showGrid .4s linear;
    animation-delay: 0s;
}

@keyframes showGrid {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 25px;
}

.store-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.store-card:hover {
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.10);
}

.store-info p {
    margin: 0;
}

.store-card__img {
    border: 4px solid var(--primary);
    border-radius: 8px;
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: border-color .3s;
}

.store-card:hover .store-card__img {
    border-color: var(--clr);
}

.store-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
    position: relative;
}

.store-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 1.2;
    font-family: "muller regular", sans-serif;
}

.store-card__link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color .25s;
}

.store-card__link:hover {
    color: var(--primary-hover);
}

.store-card__schedule {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 10px;
}

.store-card__schedule-title {
    font-weight: 600;
}

.store-card__time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-card__schedule-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: background-color .25s;
}

.store-card__schedule-btn:hover {
    background-color: var(--primary-hover);
}

.schedule-btn__arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--white);
    transition: transform .3s;
}

.store-card__schedule-btn.active > .schedule-btn__arrow {
    transform: rotate(180deg);
}

.schedule-list {
    position: absolute;
    width: 100%;
    top: 95%;
    left: 0;
    height: 0px;
    border-radius: 0 0 8px 8px;
    padding: 0px 15px 20px;
    border-top: 2px solid var(--primary);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    opacity: .5;
    visibility: hidden;
    transition: height .2s, padding .2s, opacity .2s, visibility .15s;
    overflow: hidden;
    z-index: 1;
}

.schedule-list.active {
    padding: 10px 15px 20px;
    height: 270px;
    opacity: 1;
    transition: height .2s, padding .2s, opacity .1s, visibility .2s;
    visibility: visible;
}

.schedule-list__item{
    display: flex;
    justify-content: space-between;
    padding: 5px;
    border-radius: 4px;
}

.schedule-list__item.today {
    background-color: var(--primary);
    color: var(--clr);
}
/* ====section requisites============ */
.requisites-box {
    border-radius: 8px;
    padding: 30px 18% 30px 20px;
    background-color: var(--clr);
    background-image: url(https://eqvator.ru/images/media/illustrations/man.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 15% auto;
}

.requisites__text {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.requisites__text span {
    font-family: "muller bold", sans-serif;
    font-weight: 900;
}


@media (max-width: 569px) {
    .payment__title {
        text-align: left;
    }
}