h1.title,
h1.entry-title
{
    display: inline-block;
    font: 700 36px/50px Comfortaa,cursive;
    color: #fff;
    margin: 3rem;
    margin-left: -15px;
    padding: 0 15px;
    background-image: linear-gradient(#e02020,#e02020);
    background-position: 0 bottom;
    background-repeat: no-repeat;
    background-size: 100% 13px;
}
/* Header styles */
.site-header-custom {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 90px;
    width: 100%;
    background-image: url('../img/footer-bg.png');
    background-size: cover;
    background-position: 50%;
    z-index: 10;
}

.header__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.header__inner {
    max-width: 1440px;
    height: 90px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__left {
    display: flex;
    flex: 50%;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    max-width: 160px;
    overflow: hidden;
    margin-right: 10px;
}

.header-logo__img {
    max-width: 100%;
}

.header__logo--mob {
    display: none;
}

.header__time {
    margin-right: 10px;
}

.worktime {
    font: 400 14px Montserrat, sans-serif;
    color: #fff;
    margin: 0;
}

.worktime + .worktime {
    margin-top: 5px;
}

.header__phone {
    font: 600 30px Montserrat, sans-serif;
    color: #fff;
    text-decoration: none;
}

.header__phone:hover {
    text-decoration: underline;
}

.header__top--mobile {
    display: none;
}

.header-right {
    position: relative;
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-right: 45px;
    white-space: nowrap;
}

.header-navigation li {
    position: relative;
    margin-right: 25px;
}

.header-navigation li:last-child {
    margin-right: 0;
}

/*.header-navigation a {*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    font: 600 20px Montserrat, sans-serif;*/
/*    color: #fff;*/
/*    padding: 10px;*/
/*    background-image: linear-gradient(#e02020, #e02020);*/
/*    background-position: 0 75%;*/
/*    background-repeat: no-repeat;*/
/*    background-size: 0 9px;*/
/*    transition: background-size .3s ease;*/
/*    text-decoration: none;*/
/*}*/

.header-navigation a {
    display: inline-block;
    position: relative;
    font: 600 20px Montserrat, sans-serif;
    color: #fff;
    padding: 10px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e02020), to(#e02020));
    background-image: linear-gradient(#e02020, #e02020);
    background-position: 0 75%;
    background-repeat: no-repeat;
    background-size: 0 9px;
    -webkit-transition: background-size .3s ease;
    transition: background-size .3s ease;
    text-decoration: none
}

.header-navigation a:hover,
li.current-menu-item a {
    color: #fff;
    background-size: 100% 9px;
    text-decoration: none;
}

.header-menu__btn--mob {
    display: none;
}

.header-btn__wrapper {
    display: none;
}

/* Mobile menu */
#mobile-menu {
    display: none;
}

#mobile-menu.is-open {
    display: block;
}

.mobile-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    margin: 15px 0;
}

.mobile-navigation a {
    display: inline-block;
    padding: 10px;
    font: 600 20px Montserrat, sans-serif;
    letter-spacing: .5px;
    color: #fff;
    text-decoration: none;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .header__inner {
        max-width: 1024px;
        padding: 0 20px;
    }
    
    .header__phone {
        display: none;
    }
    
    .header__left {
        flex: auto;
    }
    
    .header__time {
        display: none;
    }
    
    .header-right {
        flex: auto;
    }
    
    .header-navigation {
        margin-right: 20px;
    }
    
    .header-navigation li {
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .site-header-custom {
        height: 140px;
        top: -70px;
    }
    
    .header__wrapper {
        top: 70px;
    }
    
    .header__inner {
        height: 70px;
        padding: 0 10px;
        flex-direction: row-reverse;
    }
    
    .header__right {
        flex: 20%;
        justify-content: flex-start;
    }
    
    .header-btn__wrapper {
        display: flex;
        flex: 20%;
        justify-content: flex-end;
    }
    
    .header__left {
        flex: 60%;
        justify-content: center;
    }
    
    .header__top--mobile {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 70px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
    }
    
    .header__phone--mobile {
        font: 400 22px Montserrat, sans-serif;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        text-decoration: none;
    }
    
    .header-top__time .worktime {
        font-size: 13px;
        margin-top: 0;
    }
    
    .header__logo,
    .header-navigation {
        display: none;
    }
    
    .header__logo--mob {
        display: block;
    }
    
    .header-menu__btn--mob {
        display: block;
        width: 47px;
        height: 47px;
        background: url('../img/header-menu.svg');
        background-size: 47px 47px;
        border: none;
    }
    
    #mobile-menu {
        position: fixed;
        top: 140px;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow-y: auto;
        background: #232323;
        z-index: 20;
    }
    
    #mobile-menu.is-open {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 30px;
    }
}

/* Footer styles */
footer {
    height: auto;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/footer-bg.png');
    background-size: cover;
    background-position: 50%;
    background-repeat-y: no-repeat;
}

.footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 50px 45px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer__logo {
    margin-top: -5px;
    flex-basis: 20%;
}

.footer-logo__img {
    max-width: 100%;
}

.footer-top__middle {
    display: flex;
    flex-direction: column;
    flex-basis: 55%;
}

.footer__phone {
    font: 600 40px Montserrat, sans-serif;
    color: #fff;
    text-decoration: none;
}

.footer__phone:hover {
    text-decoration: underline;
}

.footer__social {
    flex-basis: 25%;
    text-align: right;
}

.footer-social__link {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transition: all .3s ease;
}

.footer-social__link:last-of-type {
    margin-right: 0;
}

.footer-social__link:hover {
    opacity: .5;
}

.footer-social__img {
    max-width: 100%;
}

.footer__middle {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.footer-middle__blank {
    flex-basis: 20%;
}

.footer__payments {
    flex-basis: 55%;
}

.payments__img {
    max-width: 581px;
}

.footer__bottom {
    display: flex;
}

.footer__copyright {
    flex-basis: 20%;
    font: 400 15px Montserrat, sans-serif;
    color: #fff;
}

.footer__legal {
    flex-basis: 55%;
}

.legal__p {
    font: 400 15px/20px Montserrat, sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.legal__p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    footer {
        height: auto;
    }
    
    .footer-logo__img {
        max-width: 120px;
    }
    
    .footer__phone {
        font-size: 30px;
    }
    
    .payments__img {
        width: 100%;
    }
    
    .footer__legal {
        flex-basis: 80%;
    }
}

@media (max-width: 767px) {
    footer {
        height: auto;
    }
    
    .footer__inner {
        padding: 20px 10px 30px;
    }
    
    .footer__top {
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .footer__logo {
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .footer__phone {
        font: 600 30px Montserrat, sans-serif;
        margin-bottom: 25px;
    }
    
    .footer__middle {
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-middle__blank,
    .footer__payments {
        display: none;
    }
    
    .footer__bottom {
        flex-direction: column-reverse;
        align-items: center;
    }
    
    .legal__p {
        font: 400 12px/18px Montserrat, sans-serif;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer__copyright {
        margin-top: 20px;
        font-size: 13px;
    }
}

/* Body styles for menu lock */
body.menu-show {
    overflow: hidden;
}

/* Basic app container */
#app {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#content.site-content {
    flex: 1 0 auto;
}

/* Стили для слайдера баннеров (Swiper) */
.banner-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 19 / 7;
    min-height: 200px;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 40px;
    box-sizing: border-box;
}

@supports not (aspect-ratio: 1 / 1) {
    .banner-slider {
        height: clamp(200px, 36vw, 700px);
    }
}

.banner-slider .swiper.banner-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slider .swiper-wrapper {
    align-items: stretch;
}

.banner-slider .swiper-slide {
    position: relative;
    max-width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Область картинки строго в границах слайда */
.banner-slider .banner-slide__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner-slider .banner-slide__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    object-fit: contain; /* вся картинка видна, без обрезки; по краям могут быть полосы */
    object-position: center;
    display: block;
}

.banner-slide__content {
    position: absolute;
    z-index: 2;
    color: white;
    max-width: min(800px, calc(100% - 40px));
    padding: 20px;
    box-sizing: border-box;
}

/* Позиционирование текста - 9 вариантов */
.banner-slide__content--top-left {
    top: 20px;
    left: 20px;
    text-align: left;
}

.banner-slide__content--top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.banner-slide__content--top-right {
    top: 20px;
    right: 20px;
    text-align: right;
}

.banner-slide__content--center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    text-align: left;
}

.banner-slide__content--center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-slide__content--center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-align: right;
}

.banner-slide__content--bottom-left {
    bottom: 20px;
    left: 20px;
    text-align: left;
}

.banner-slide__content--bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.banner-slide__content--bottom-right {
    bottom: 20px;
    right: 20px;
    text-align: right;
}

.banner-slide__text {
    background: rgba(0, 0, 0, 0.5);
    padding: 1em;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 100%;
    overflow-wrap: anywhere;
}

.banner-slide__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-slide__description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.banner-slide__custom-content {
    margin-top: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.banner-slide__custom-content h1,
.banner-slide__custom-content h2,
.banner-slide__custom-content h3,
.banner-slide__custom-content h4,
.banner-slide__custom-content h5,
.banner-slide__custom-content h6 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0 0 10px 0;
}

.banner-slide__custom-content p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0 0 10px 0;
}

.banner-slide__custom-content a {
    color: white;
    text-decoration: underline;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.banner-slide__custom-content a:hover {
    color: #f0f0f0;
}

.banner-slide__custom-content ul,
.banner-slide__custom-content ol {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.banner-slide__custom-content li {
    margin-bottom: 5px;
}

.banner-slide__custom-content strong,
.banner-slide__custom-content b {
    font-weight: 700;
}

.banner-slide__custom-content em,
.banner-slide__custom-content i {
    font-style: italic;
}

/* Навигация слайдера (Swiper) */
.banner-slider .swiper-button-prev.banner-slider__prev,
.banner-slider .swiper-button-next.banner-slider__next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-slider .swiper-button-prev.banner-slider__prev {
    left: 20px;
}

.banner-slider .swiper-button-next.banner-slider__next {
    right: 20px;
}

.banner-slider .swiper-button-prev.banner-slider__prev::after,
.banner-slider .swiper-button-next.banner-slider__next::after {
    content: none;
}

.banner-slider .swiper-button-prev.banner-slider__prev:hover,
.banner-slider .swiper-button-next.banner-slider__next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Пагинация (точки) */
.banner-slider__pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.banner-slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    opacity: 1;
}

.banner-slider__pagination .swiper-pagination-bullet-active {
    background: white;
    border-color: white;
}

/* Адаптивность слайдера баннеров */
@media (max-width: 1024px) {
    .banner-slider {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        min-height: 170px;
        margin-bottom: 24px;
    }

    .banner-slider .swiper-button-prev.banner-slider__prev,
    .banner-slider .swiper-button-next.banner-slider__next {
        display: none;
    }

    .banner-slider .swiper-button-prev.banner-slider__prev {
        left: 10px;
    }

    .banner-slider .swiper-button-next.banner-slider__next {
        right: 10px;
    }

    .banner-slider__pagination {
        bottom: 12px;
    }

    .banner-slider__pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .banner-slide__title {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem);
        margin-bottom: 0;
        line-height: 1.15;
    }

    .banner-slide__description {
        font-size: clamp(0.9rem, 4.2vw, 1.05rem);
        line-height: 1.35;
    }

    .banner-slide__text {
        padding: 12px;
        border-radius: 8px;
    }

    .banner-slide__content {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 34px;
        transform: none;
        max-width: none;
        max-height: calc(100% - 48px);
        overflow-y: auto;
        padding: 0;
    }

    .banner-slide__content--top-left,
    .banner-slide__content--top-center,
    .banner-slide__content--top-right {
        top: 10px;
    }

    .banner-slide__content--bottom-left,
    .banner-slide__content--bottom-center,
    .banner-slide__content--bottom-right {
        bottom: 10px;
    }

    .banner-slide__content--top-left,
    .banner-slide__content--center-left,
    .banner-slide__content--bottom-left {
        left: 10px;
    }

    .banner-slide__content--top-right,
    .banner-slide__content--center-right,
    .banner-slide__content--bottom-right {
        right: 10px;
    }

    .banner-slide__custom-content h1,
    .banner-slide__custom-content h2,
    .banner-slide__custom-content h3 {
        font-size: 1.2rem;
    }

    .banner-slide__custom-content h4,
    .banner-slide__custom-content h5,
    .banner-slide__custom-content h6 {
        font-size: 1rem;
    }

    .banner-slide__custom-content p {
        font-size: clamp(0.85rem, 3.8vw, 0.95rem);
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        min-height: 140px;
        margin-bottom: 20px;
    }

    .banner-slider .swiper-button-prev.banner-slider__prev,
    .banner-slider .swiper-button-next.banner-slider__next {
        width: 36px;
        height: 36px;
    }

    .banner-slider .swiper-button-prev.banner-slider__prev svg,
    .banner-slider .swiper-button-next.banner-slider__next svg {
        width: 20px;
        height: 20px;
    }

    .banner-slide__title {
        font-size: clamp(1rem, 5.6vw, 1.35rem);
    }

    .banner-slide__description {
        font-size: clamp(0.82rem, 4.2vw, 0.95rem);
    }

    .banner-slide__text {
        padding: 10px;
    }

    .banner-slider .banner-slide__image img {
        object-fit: cover;
    }
}

@media (max-width: 360px) {
    .banner-slider {
        min-height: 120px;
    }

    .banner-slide__title {
        font-size: 1.25rem;
    }
}

/* ===== СТИЛИ ДЛЯ БЛОКА НОВОСТЕЙ ===== */

/* Основные стили для блока новостей */
.news-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    font-family: 'Comfortaa', cursive;
}

/* Стили для списка новостей на главной странице */
.news__list {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.news-list__item {
    display: block;
    width: 50%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.news-list__item:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.news-list__img,
.news-item__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-list__title {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Comfortaa', cursive;
    min-height: 3em;
}

.news-list__next {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    color: #ffd700;
    text-decoration: none;
    font-family: 'Comfortaa', cursive;
    transition: color 0.3s ease;
}

.news-list__next:hover {
    color: #ffed4e;
    text-decoration: none;
}

/* Стили для архива новостей */
.inner {
    max-width: 940px;
    margin: 45px auto 75px;
    padding: 0 20px;
}

.inner a {
    color: #ffd700;
}

.inner a:hover {
    text-decoration: underline;
}

.news {
    column-count: 2;
    column-gap: 80px;
}

.news__item {
    display: block;
    cursor: pointer;
    break-inside: avoid;
    padding-bottom: 10px;
    margin-bottom: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='2' width='6'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23636363'/%3E%3C/svg%3E");
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: bottom left;
    text-decoration: none;
    color: inherit;
}

.news__item:hover {
    text-decoration: none !important;
}

.news-item__date {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.news-item__title {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
    min-height: 3em;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Стили для детальной страницы новости */
.news__detail {
    text-align: left;
}

.news-detail__date {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.news-detail__title {
    font-weight: 300;
    font-size: 1.875rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 45px;
    font-family: 'Comfortaa', cursive;
}

.news-detail__p {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.news-detail__p:last-of-type {
    margin-bottom: 0;
}

.news-detail__img {
    margin-top: 60px;
    max-width: 100%;
    border-radius: 8px;
}

/* Адаптивные стили для блока новостей */
@media (max-width: 1024px) {
    .inner {
        padding: 0 60px;
    }

    .news {
        column-gap: 60px;
    }

    .news-item__img {
        margin-bottom: 25px;
    }

    .news-item__date {
        font-family: 'Comfortaa', cursive;
        margin-bottom: 20px;
    }

    .news-item__title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .news__item {
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .news-detail__p {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 40px 0;
    }

    .news-section .title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .news__list {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .news-list__item {
        width: 100%;
        max-width: 400px;
    }

    .news-list__title {
        margin-top: 10px;
    }

    .news-list__next {
        margin-top: 15px;
    }

    .inner {
        padding: 0 20px;
        text-align: center;
    }

    .news {
        column-count: 1;
    }

    .news__item {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .news-item__date {
        text-align: left;
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .news-item__title {
        text-align: left;
    }

    .news-detail__title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .news-detail__img {
        margin-top: 30px;
    }
}
.delivery__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px
}

.delivery__items.delivery__items--map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.delivery__item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.delivery__item + .delivery__item {
    margin-left: 70px
}

.delivery__item--site {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.delivery-item__left {
    -ms-flex-preferred-size: 96px;
    flex-basis: 96px
}

.delivery__img {
    max-width: 100%
}

.delivery__apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 40px
}

.delivery-app__link {
    width: 160px
}

.delivery-app__link + .delivery-app__link {
    margin-top: 15px
}

.delivery-app__img {
    display: block;
    width: 100%
}

.delivery__link {
    font: 700 24px Comfortaa, cursive;
    color: #f9c623;
    margin-bottom: 10px
}

.delivery__link:hover {
    text-decoration: underline
}

.delivery-site__link {
    max-width: 365px
}

.delivery-site__img {
    display: block;
    width: 100%
}

.delivery__check {
    background: none;
    padding: 7px 25px;
    border: 1px solid #fff;
    border-radius: 3px;
    font: 400 20px Montserrat, sans-serif;
    color: #fff;
    outline: none;
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-top: 20px
}

.delivery__check::-webkit-input-placeholder {
    font: 400 16px Montserrat, sans-serif;
    color: #999
}

.delivery__check::-moz-placeholder {
    font: 400 16px Montserrat, sans-serif;
    color: #999
}

.delivery__check:-ms-input-placeholder {
    font: 400 16px Montserrat, sans-serif;
    color: #999
}

.delivery__check::-ms-input-placeholder {
    font: 400 16px Montserrat, sans-serif;
    color: #999
}

.delivery__check::placeholder {
    font: 400 16px Montserrat, sans-serif;
    color: #999
}

.delivery__check:active, .delivery__check:focus {
    border-color: #f9c623
}

@media (max-width: 676px) {
    .delivery p {
        font: 400 20px/32px Montserrat, sans-serif;
        letter-spacing: .87px;
        text-align: left
    }

    .delivery__items {
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 30px
    }

    .delivery__item, .delivery__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .delivery__item {
        margin-bottom: 40px;
        padding-bottom: 40px;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' height='2' width='6'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23636363'/%3E%3C/svg%3E");
        background-size: 6px 2px;
        background-repeat: repeat-x;
        background-position: 0 100%;
        width: 100%
    }

    .delivery__item + .delivery__item {
        margin-left: 0;
        background-image: none;
        margin-bottom: 0;
        padding-bottom: 0
    }

    .delivery-item__left {
        margin-bottom: 15px
    }

    .delivery__apps {
        margin-left: 0
    }

    .delivery__item--site {
        padding-left: 20px;
        padding-right: 20px;
        background: none;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-bottom: 0
    }

    .delivery__item--site + .delivery__item--site {
        margin-bottom: 0
    }

    .delivery__check {
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        max-width: none
    }
}

.contacts__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contacts__block_2side {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.contacts__item {
    width: calc(50% - 20px);
    margin-bottom: 50px
}

.contacts__item:first-of-type {
    margin-right: 20px
}

.contacts__item.\--mail_bottom {
    width: 100%
}

.contacts__title {
    font: 700 18px Comfortaa, cursive;
    color: #f9c623;
    margin-bottom: 15px
}

.contacts__email {
    font: 400 24px Montserrat, sans-serif;
    color: #fff;
    letter-spacing: 1.04px
}

.contacts__email:hover {
    text-decoration: underline
}

.contacts__text {
    font: 400 24px Montserrat, sans-serif;
    color: #fff;
    letter-spacing: 1.04px
}

.contacts__phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.contacts__phone {
    font: 400 24px Montserrat, sans-serif;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1.04px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.contacts__phone:hover {
    text-decoration: underline
}

.contacts__messengers {
    margin-top: 10px
}

.contact__messenger {
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contact__messenger:hover {
    opacity: .6
}

.contact__messenger.\--skype {
    background: url(/img/phone-skype.svg);
    background-size: cover
}

.contact__messenger.\--whatsapp {
    background: url(/img/phone-whatsapp.svg);
    background-size: cover
}

.contact__messenger.\--fb {
    background: url(/img/phone-fb.svg);
    background-size: cover
}

.contact__messenger.\--viber {
    background: url(/img/phone-viber.svg);
    background-size: cover
}

.contact__messenger.\--telegram {
    background: url(/img/phone-telegram.svg);
    background-size: cover
}

.contact__messenger:last-of-type {
    margin-right: 0
}

.contact-social__link {
    width: 50px;
    height: 49px;
    display: inline-block;
    background-size: cover;
    margin-right: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.contact-social__link:hover {
    opacity: .6
}

.contact-social__link.\--fb {
    background-image: url(../img/soc-f.svg)
}

.contact-social__link.\--vk {
    background-image: url(../img/soc-vk.svg)
}

.contact-social__link.\--tw {
    background-image: url(../img/soc-tw.svg)
}

.contact-social__link.\--ig {
    background-image: url(../img/soc-ig.svg)
}

.contact-social__link:last-of-type {
    margin-right: 0
}

.contacts__map {
    height: 500px;
    margin-bottom: 4rem;
}

 .ymap-container {
     height: 100%
 }

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumbs {
    margin: 40px auto 10px;
    font: 400 14px/1.4 'Montserrat', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s ease;
}

.breadcrumbs a:hover {
    opacity: .6;
}

.breadcrumbs__divider {
    margin: 0 8px;
    color: #f9c623;
}
/* ===== КАТАЛОГ ТОВАРОВ ===== */
.catalog-page {
    padding: 60px 0 80px;
}

.catalog-page .title {
    margin-top: 0;
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    padding-top: 35px;
    margin-left: -20px;
    margin-right: -20px;
}

.catalog__item {
    flex-basis: calc(100% / 3);
    text-align: center;
    padding: 0 20px 70px;
    display: flex;
    flex-direction: column;
}

.catalog__item:hover .catalog__name {
    background-size: 100% 9px;
}

.catalog__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
    height: 100%;
}

.catalog-img__unavailable {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 29, 29, 0.73);
    font: 400 16px 'Montserrat', sans-serif;
    color: #fff;
    padding: 15px;
    z-index: 2;
}

.catalog-page .catalog__img {
    height: 250px;
    width: 80%;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.catalog__name {
    display: inline-block;
    margin-top: 15px;
    font: 700 26px/38px 'Comfortaa', cursive;
    color: #fff;
    text-transform: uppercase;
    background-image: linear-gradient(#e02020, #e02020);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 9px;
    transition: background-size .3s ease;
    text-decoration: none;
    padding: 0 5px;
}

.catalog__period {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 180px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #000;
    border: 3px solid #f9c623;
    font: 600 17px 'Montserrat', sans-serif;
    color: #f9c623;
    text-transform: uppercase;
}

.menu__p {
    font: 400 18px/22px 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.category-description {
    max-width: 940px;
    margin: 0 auto;
}

.dotted-hr {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='1' viewBox='0 0 12 1'%3E%3Cpath d='M0,.5H12' fill='none' stroke='%23979797' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1' stroke-dasharray='6'/%3E%3C/svg%3E");
    background-size: 12px 1px;
    background-repeat: repeat-x;
    background-position: left top;
    width: 100%;
    height: 1px;
    margin: 70px 0;
}

@media (max-width: 1024px) {
    .catalog {
        margin-left: 0;
        margin-right: 0;
    }

    .catalog__item {
        padding: 0 15px 50px;
    }

    .catalog__name {
        padding: 0;
    }

    .catalog__period {
        left: 0;
    }

    .dotted-hr {
        display: none;
    }
}

@media (max-width: 767px) {
    .catalog {
        padding-top: 25px;
    }

    .catalog__item {
        flex-basis: 100%;
        padding-bottom: 30px;
    }

    .catalog__img {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }

    .catalog__name {
        font: 700 20px/34px 'Comfortaa', cursive;
    }

    .catalog__period {
        left: 50%;
        transform: translateX(-100px);
        top: 150px;
    }

    .catalog-page {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .category-description {
        padding: 0 15px;
    }

    h1.title, h1.entry-title {
        font: 700 26px/34px 'Comfortaa', cursive;
    }
}

/* ===== КАТЕГОРИИ ТОВАРОВ ===== */
.product-category-page {
    padding-bottom: 80px;
}

.product-category-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 70px;
    position: relative;
}

.product-category__sidebar {
    width: 260px;
    flex-shrink: 0;
    margin-right: 50px;
}

.product-category__menu {
    list-style: none;
    padding: 0;
    margin: 0 0 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-category__menu-item {
    margin: 0;
}

.product-category__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    word-break: break-word;
    text-transform: uppercase;
    font: 700 18px/25px 'Comfortaa', cursive;
    color: #fff;
    padding: 10px 0;
    background-image: linear-gradient(#e02020, #e02020);
    background-position: 0 70%;
    background-repeat: no-repeat;
    background-size: 0 9px;
    transition: background-size .3s ease;
    text-decoration: none;
}

.product-category__menu-item.is-active .product-category__menu-link,
.product-category__menu-link.--active,
.product-category__menu-link:hover {
    background-size: 100% 9px;
}

.side-icon__wrapper {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.side-menu__icon {
    max-width: 100%;
    max-height: 100%;
}

.product-category__content {
    flex: 1;
}

.product-category__content h1.title,
.product-category__content h1.entry-title {
    margin-top: 0;
}

.menu__main {
    display: flex;
    margin-bottom: 50px;
}

.menu__body {
    width: 100%;
}

.menu__items {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 60px;
}

.menu__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: 25px 20px;
}

.menu-item__top {
    cursor: pointer;
    position: relative;
}

.menu-img__wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.menu-item__img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.menu-item__name {
    display: inline-block;
    font: 700 30px 'Comfortaa', cursive;
    color: #fff;
    text-transform: uppercase;
    background-image: linear-gradient(#e02020, #e02020);
    background-position: 0 90%;
    background-repeat: no-repeat;
    background-size: 0 7px;
    transition: background-size .3s ease;
}

.menu-item__name a {
    color: inherit;
    text-decoration: none;
}

.menu-item__top:hover .menu-item__name {
    background-size: 100% 7px;
}

.menu-item__schedule-note {
    margin: 10px 0 0;
    font: 400 14px/1.4 'Montserrat', sans-serif;
    color: #f9c623;
}

.menu-item__descr {
    font: 400 16px/1.3 'Montserrat', sans-serif;
    color: #fff;
    margin: 1em 0 1em;
}

.menu-item__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.menu-item__price {
    font: 700 30px 'Comfortaa', cursive;
    color: #fff;
    grid-column: 1;
    grid-row: 1;
}

.menu-item__weight {
    font: 700 16px 'Montserrat', sans-serif;
    color: #e02020;
    grid-column: 2;
    grid-row: 1;
}

.menu-item__bottom .menu-item__btn {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
}


.menu-item__actions {
    flex-shrink: 0;
    min-width: 200px;
}

/* Стили кнопок только для карточек товаров в категории */
.product-category-page .menu__item .menu-item__bottom .menu-item__btn,
.menu__item .menu-item__bottom .menu-item__btn {
    width: 50%;
    height: 2.5em;
    background-color: #e02020;
    font: 700 17px 'Montserrat', sans-serif;
    text-transform: none;
    color: #fff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color .3s ease, color .3s ease;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
}

.product-category-page .menu__item .menu-item__bottom .menu-item__btn:hover,
.menu__item .menu-item__bottom .menu-item__btn:hover {
    background-color: #f9c623;
    color: #000;
    text-decoration: none;
}

.product-category-page .menu__item .menu-item__bottom .menu-item__btn.disabled,
.menu__item .menu-item__bottom .menu-item__btn.disabled,
.product-category-page .menu__item .menu-item__bottom .menu-item__btn.disabled:hover,
.menu__item .menu-item__bottom .menu-item__btn.disabled:hover {
    background-color: #b8b8b8;
    color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.menu-item__actions .added_to_cart {
    display: none !important;
}

.menu__p--tablet {
    display: none;
}

.category-description > p {
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .product-category-layout {
        padding: 0 40px;
    }

    .product-category__sidebar {
        width: 230px;
    }
}

@media (max-width: 1024px) {
    .product-category-layout {
        flex-direction: column;
        padding: 0 30px;
        margin-top: 20px;
    }

    .product-category__sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .menu__items {
        margin-left: 0;
        margin-right: 0;
    }

    .menu__item {
        width: 100%;
        padding: 20px 0;
    }

    .menu__p--tablet {
        display: block;
        font: 300 18px/20px 'Comfortaa', cursive;
        color: #fff;
        margin-bottom: 30px;
    }

    .menu__p {
        display: none;
    }
}

@media (max-width: 767px) {
    .product-category-layout {
        padding: 0 15px;
    }

    .breadcrumbs {
        margin: 20px auto;
        font-size: 12px;
        letter-spacing: .08em;
    }

    .menu__p--tablet {
        display: none;
    }

    .product-category__sidebar {
        display: none;
        /*position: fixed;*/
        /*top: 140px;*/
        /*bottom: 0;*/
        /*width: 75px;*/
        /*background: #f9c623;*/
        /*overflow-y: auto;*/
        /*padding: 20px 5px;*/
        /*z-index: 15;*/
    }

    .product-category__menu {
        gap: 15px;
        align-items: center;
    }

    .product-category__menu-item {
        width: 100%;
    }

    .product-category__menu-link {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: none;
        color: #000;
        font: 600 10px 'Comfortaa', cursive;
        text-align: center;
    }

    .side-icon__wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 5px;
        background: rgba(0, 0, 0, 0.1);
    }

    .product-category__content {
        margin-left: 0;
    }

    .menu__items {
        margin-bottom: 30px;
    }

    .menu__item {
        padding: 15px 0;
    }

    .menu-item__name {
        font-size: 22px;
    }

    .menu-item__price {
        font-size: 24px;
    }

    .menu-item__actions {
        width: 100%;
    }

    .menu-item__btn {
        width: 100%;
        font-size: 16px;
    }
}

/* ---------- Single product card ---------- */
.single-product-card {
    padding: 60px 0 80px;
}

.single-product-card__gallery {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.single-product-card__gallery .woocommerce-product-gallery {
    width: 100%;
}

.single-product-card__gallery .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 {
    width: 100% !important;
}

.single-product-card__gallery .woocommerce-product-gallery__wrapper,
.single-product-card__gallery .woocommerce-product-gallery__image {
    width: 100%;
}

.single-product-card__gallery .woocommerce-product-gallery__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-card__gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.single-product-card__summary {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-product-card__summary .product_title {
    font: 700 2rem/1.2 'Comfortaa', cursive;
    margin-bottom: 10px;
}

.product-single__description {
    font: 400 18px/1.6 'Comfortaa', cursive;
    color: #fff;
    margin-bottom: 10px;
}

.usey-product-schedule-message,
.usey-category-schedule-message {
    font: 500 16px/1.4 'Montserrat', sans-serif;
    color: #f9c623;
    margin: 0 0 5px;
}

.single-product-card__summary .price {
    font: 700 32px 'Comfortaa', cursive;
    color: #fff;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
    color: #f9c623;
}

.woocommerce div.product form.cart {
    display: flex;
    justify-content: space-between;
}

.woocommerce div.product form.cart div.quantity {
    border-radius: 4px;
    box-sizing: content-box;
    display: flex;
    margin: 0 0 .25em;
    position: relative;
    width: 107px;
    height: 40px;
}

.woocommerce div.product form.cart div.quantity:after {
    border: 1px solid;
    border-radius: 4px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .3;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.woocommerce div.product form.cart div.quantity input.input-text.qty {
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    flex: 1 1 auto;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    min-width: 40px;
    padding: .4em 0;
    text-align: center;
    vertical-align: middle;
}

.woocommerce div.product form.cart div.quantity input::-webkit-outer-spin-button,
.woocommerce div.product form.cart div.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.woocommerce div.product form.cart div.quantity .wc-block-components-quantity-selector__button {
    background: none transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    cursor: pointer;
    font-size: .9em;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    min-width: 30px;
    opacity: .6;
    padding: 0;
    text-align: center;
    text-decoration: none;
    border-radius: 4px 0 0 4px;
}

.woocommerce div.product form.cart div.quantity .wc-block-components-quantity-selector__button:disabled {
    box-shadow: none;
    cursor: default;
    opacity: .6;
}

/*.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus {*/
/*    border-radius: 4px 0 0 4px;*/
/*    order: 1;*/
/*}*/

/*.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus {*/
/*    border-radius: 0 4px 4px 0;*/
/*    order: 3;*/
/*}*/

.single-product-card__summary form.cart .single_add_to_cart_button.button {
    width: 50%;
    height: 40px;
    background-color: #e02020;
    font: 700 17px 'Montserrat', sans-serif;
    text-transform: none;
    color: #fff;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color .3s ease, color .3s ease;
    text-decoration: none;
    padding: 0;
    cursor: pointer;
}

.single-product-card__summary form.cart .single_add_to_cart_button.button:hover,
.single-product-card__summary form.cart .single_add_to_cart_button.button:focus {
    background-color: #f9c623;
    color: #000;
    text-decoration: none;
    outline: none;
}

.single-product-card__after {
    margin-top: 70px;
}

.single-product-card__after .related > h2 {
    font: 700 32px 'Comfortaa', cursive;
    margin-bottom: 30px;
}

.single-product-card__after .related ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce .related ul.products::after,
.woocommerce .related ul.products::before {
    content: none;
}

.single-product-card__after .related .menu__item {
    margin: 0;
    width: 100%;
    padding: 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.single-product-card__after .related .menu-item__descr {
    display: none;
}

.single-product-card__after .related .menu-item__bottom {
    margin-top: auto;
}

@media (max-width: 1199px) {
    .single-product-card__summary,
    .single-product-card__gallery {
        padding: 25px;
    }

    .single-product-card__summary .product_title {
        font-size: 32px;
    }

    .single-product-card__after .related ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .single-product-card {
        padding: 40px 0 60px;
    }

    .single-product-card__summary,
    .single-product-card__gallery {
        padding: 20px;
    }

    .single-product-card__summary .product_title {
        font-size: 28px;
    }

    .single-product-card__after .related ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .single-product-card__summary,
    .single-product-card__gallery {
        padding: 15px;
    }

    .single-product-card__summary .product_title {
        font-size: 24px;
    }

    .single-product-card__after .related ul.products {
        grid-template-columns: 1fr;
    }
}

/* ===== СТРАНИЦЫ КАТЕГОРИЙ ===== */
.product-category-page {
    padding: 60px 0 80px;
}

.product-category-layout {
    display: flex;
    gap: 40px;
}

.product-category__sidebar {
    flex: 0 0 260px;
}

.product-category__sidebar-title {
    font: 700 22px/1.4 'Comfortaa', cursive;
    color: #fff;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.product-category__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-category__menu-item {
    margin: 0;
}

.product-category__menu-link {
    display: block;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font: 600 16px/1.3 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.product-category__menu-item.is-active .product-category__menu-link,
.product-category__menu-link:hover {
    border-color: #f9c623;
    background: rgba(249, 198, 35, 0.1);
}

.product-category__content {
    flex: 1;
}

@media (max-width: 1024px) {
    .product-category-layout {
        flex-direction: column;
    }

    .product-category__sidebar {
        flex: unset;
    }
}

/*
* Custom Checkout Page Styles
* --------------------------------------------------
*/

/* ===== GENERAL LAYOUT ===== */
.woocommerce-checkout .col2-set {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    flex: 1 0 100%;
    margin: 0;
}

.woocommerce-checkout #customer_details {
    margin-bottom: 2em;
}

/* ===== SECTION STYLING ===== */
/*.woocommerce-checkout .col-1,*/
/*.woocommerce-checkout .col-2,*/
/*#order_review,*/
/*.woocommerce-checkout-payment {*/
/*    background: #2c2c2c;*/
/*    border-radius: 12px;*/
/*    border: 1px solid #444;*/
/*}*/

.woocommerce-checkout h3 {
    font-family: 'Comfortaa', cursive;
    color: #f9c623;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #444;
}

/* ===== FORM ELEMENTS ===== */
.woocommerce form .form-row {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 0 16px;
}

.woocommerce form .form-row label {
    font-family: 'Montserrat', sans-serif;
    color: #eee;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.woocommerce form .form-row label .required {
    color: #e02020;
}

.woocommerce form .form-row .optional {
    color: #999;
}

.woocommerce-input-wrapper {
    width: 100%;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background-color: #1a1a1a;
    border: 1px solid #555;
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    height: 50px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row textarea {
    height: auto;
    min-height: 120px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #f9c623;
    outline: none;
    box-shadow: 0 0 5px rgba(249, 198, 35, 0.5);
}

/* Select2 styles */
.select2-container--default .select2-selection--single {
    background-color: #1a1a1a;
    border: 1px solid #555;
    border-radius: 8px;
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff;
    line-height: 48px;
    padding-left: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}

.select2-dropdown {
    background-color: #2c2c2c;
    border: 1px solid #555;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f9c623;
    color: #000;
}

/* Fields layout */
.woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#billing_country_field,
#billing_city_field,
#billing_building_field {
    display: none !important;
}

.address-field span.optional,
.woocommerce-additional-fields span.optional,
.woocommerce-additional-fields h3 {
    display: none;
}


/* ===== ORDER REVIEW TABLE ===== */
#order_review {
    padding: 0;
}

#order_review_heading {
    font-family: 'Comfortaa', cursive;
    color: #f9c623;
    font-size: 24px;
    margin-top: 2em;
    margin-bottom: 1em;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    background: none;
    border-radius: 0;
    border: none;
}

.woocommerce-checkout-review-order-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid #444;
    padding: 1em 2em;
}

.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
    padding: 1.5em 2em;
    border-top: 1px solid #444;
    color: #eee;
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-quantity {
    color: #ccc;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td strong {
    font-size: 1.5em;
    color: #fff;
}

/* ===== PAYMENT & SHIPPING METHODS ===== */
.woocommerce-checkout-payment ul.payment_methods,
#shipping_method {
    padding: 0;
    border: none;
}

.woocommerce-checkout-payment .wc_payment_method,
#shipping_method li {
    background: #1a1a1a;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #555;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout-payment .wc_payment_method:has(input:checked),
#shipping_method li:has(input:checked) {
    border-color: #f9c623;
    background-color: rgba(249, 198, 35, 0.1);
}

.woocommerce-checkout-payment .wc_payment_method label,
#shipping_method li label {
    color: #eee;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

.woocommerce-checkout-payment .payment_box {
    background-color: #2c2c2c;
    color: #ccc;
    margin-top: 15px;
    padding: 1em;
    border-radius: 6px;
}

.woocommerce-checkout-payment .payment_box::before {
    display: none;
}

/* ===== BUTTONS ===== */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce .button.alt,
a.wc-block-cart__submit-button {
    background-color: #e02020;
    color: #fff;
    border-radius: 8px;
    height: 2em;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    padding: 0 30px;
    width: 100%;
    transition: background-color .3s ease, color .3s ease;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce .button.alt:hover,
a.wc-block-cart__submit-button:hover {
    background-color: #f9c623;
    color: #000;
    text-decoration: none;
}

.woocommerce .checkout #payment #place_order {
    height: 4em;
}

.woocommerce-info, .woocommerce-form-coupon-toggle .woocommerce-info {
    border-top-color: #f9c623;
    background-color: #2c2c2c;
    color: #eee;
    border-radius: 8px;
}

.woocommerce-info a, .woocommerce-form-coupon-toggle a {
    color: #f9c623;
    font-weight: 700;
}

form.checkout_coupon {
    background: #2c2c2c;
    padding: 2em;
    border-radius: 12px;
    border: 1px solid #444;
    margin-bottom: 2em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout #customer_details .woocommerce-billing-fields,
    .woocommerce-checkout .col-2,
    #order_review,
    .woocommerce-checkout-payment {
        padding: 1.5em;
    }

    .woocommerce-checkout-review-order-table thead {
        display: none;
    }

    .woocommerce-checkout-review-order-table tbody tr,
    .woocommerce-checkout-review-order-table tfoot tr {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .woocommerce-checkout-review-order-table tbody td,
    .woocommerce-checkout-review-order-table tfoot th,
    .woocommerce-checkout-review-order-table tfoot td {
        border: none;
        padding: 0.5em 0;
    }

    .woocommerce-checkout-review-order-table tr {
        padding: 1em 0;
        border-bottom: 1px solid #444;
    }
    .woocommerce-checkout-review-order-table tr:last-child {
        border-bottom: none;
    }

    .woocommerce-checkout-review-order-table .product-name {
        flex-basis: 70%;
    }
    .woocommerce-checkout-review-order-table .product-total {
        flex-basis: 30%;
        text-align: right;
    }
    .woocommerce-checkout-review-order-table .cart-subtotal th,
    .woocommerce-checkout-review-order-table .order-total th {
        flex-basis: 50%;
    }
    .woocommerce-checkout-review-order-table .cart-subtotal td,
    .woocommerce-checkout-review-order-table .order-total td {
        flex-basis: 50%;
        text-align: right;
    }
}

/*
* Yandex Maps Suggests Styles
* --------------------------------------------------
*/
ymaps[class*="search__suggest"] {
    background-color: #000 !important;
    /*border: 1px solid #555 !important;*/
    border-radius: 8px !important;
}

ymaps[class*="suggest-item"] {
    color: #eee !important;
}

ymaps[class*="suggest-item-hl"] {
    color: #1a1a1a !important;
}

ymaps[class*="suggest-item"]:hover {
    background-color: #f9c623 !important;
    color: #000 !important;
}

ymaps[class*="suggest-item-active"] {
    background-color: #f9c623 !important;
    color: #000 !important;
}
ymaps[class*="suggest-highlight"] {
    background-color: initial !important;
    color: #d3d3d3 !important;
}

/* ===== СТИЛИ ДЛЯ КАТЕГОРИИ ТОВАРОВ WOOCOMMERCE ===== */

/* Убираем стандартную обертку товаров WooCommerce */
.woocommerce ul.products {
    list-style: none;
    padding: 0;
    margin: 0;
}

div.product-category-page div.menu__item.product {
    margin-bottom: 4em;
    box-shadow: 0 1px 8px hsla(210,6%,42%,.250226);
    padding: 1em;
}

/* Стили для карточки товара в категории */
.product-category-page .menu__item {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.product-category-page .menu-item__top {
    margin-bottom: 0px;
}

.product-category-page .menu-item__img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.product-category-page .menu-item__name,
.related.products .menu-item__name {
    font: 700 17px 'Comfortaa', cursive;
    color: #fff;
    text-transform: none;
    margin-bottom: 10px;
    height: 2.2em;
    line-height: 1.4em;
}

.product-category-page .menu-item__name a,
.related.products .menu-item__name a {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(#e02020, #e02020);
    background-position: 0 90%;
    background-repeat: no-repeat;
    background-size: 0 7px;
    transition: background-size .3s ease;
}

.product-category-page .menu-item__name a:hover,
.related.products .menu-item__name a:hover {
    background-size: 100% 7px;
}

.product-category-page .menu-item__descr,
.related.products .menu-item__descr {
    font: 400 14px/1.5 'Montserrat', sans-serif;
    color: #ccc;
    margin-top: 10px;
}

.product-category-page .menu-item__bottom,
.related.products .menu-item__bottom {
    display: flex;
    flex-direction: row;
    gap: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-category-page .menu-item__price-weight,
.related.products .menu-item__price-weight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-category-page .menu-item__price,
.related.products .menu-item__price {
    font: 700 18px 'Comfortaa', cursive;
    color: #fff;
}

.product-category-page .menu-item__weight,
.related.products .menu-item__weight {
    font: 400 16px 'Montserrat', sans-serif;
    color: #ccc;
}

.product-category-page .menu-item__actions,
.related.products .menu-item__actions {
    width: 100%;
}

/* Стили для хлебных крошек под шапкой */
.breadcrumbs {
    margin: 20px auto;
    padding: 0 20px;
    font: 400 14px/1.4 'Montserrat', sans-serif;
    color: #fff;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease;
}

.breadcrumbs a:hover {
    opacity: .6;
    text-decoration: none;
}

.breadcrumbs__divider {
    margin: 0 8px;
    color: #f9c623;
}

/* Адаптивность для карточек товаров */
@media (max-width: 991px) {
    .product-category-page .menu__item {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .product-category-page .menu-item__name {
        font-size: 20px;
    }
    
    .product-category-page .menu-item__price {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .product-category-page .menu__item {
        padding: 0 5px;
        margin-bottom: 20px;
    }
    
    .product-category-page .menu-item__img {
        max-height: 250px;
    }
    
    .product-category-page .menu-item__name {
        font-size: 18px;
    }
    
    .product-category-page .menu-item__price {
        font-size: 18px;
    }
    
    .product-category-page .menu__item .menu-item__bottom .menu-item__btn,
    .menu__item .menu-item__bottom .menu-item__btn {
        height: 45px;
        font-size: 14px;
        line-height: 45px;
    }
}

/* Стили для блока каталога на главной странице */
.section__list-wrapper {
    margin-top: 20px;
}

.section__list-container {
    width: 1140px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.section__list-container.section__list-container--catalog {
    margin-top: 0;
}

.section__list-title-block {
    margin-top: 20px;
    margin-bottom: 15px;
}

.section__list-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
}

.section__list-element-wrapper {
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 75%;
    background-color: #000;
    max-width: 262px;
    mask-image: -webkit-radial-gradient(white, black);
}

/*.section__list-element-wrapper:nth-child(4):nth-last-child(n+2) {*/
/*    grid-row: span 2;*/
/*}*/

.section__list-element-wrapper--span2 {
    grid-column: span 2;
    max-width: none;
    padding-top: 40%;
}

.section__list-element {
    display: block;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: initial;
    text-decoration: none;
}

.section__list-element-name-desktop {
    display: block;
}

.section__list-element-name-mobile {
    display: none;
}

.section__list-element-name-block {
    position: absolute;
    left: 20px;
    top: 15px;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Градиентный overlay снизу для улучшения читаемости текста */
.section__list-element-name-block::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);*/
    pointer-events: none;
    z-index: -1;
}

.section__list-element-name {
    line-height: 1;
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.section__list-element-image-block {
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.section__list-element-image-block picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section__list-element-image-block__img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Переопределяем стили WooCommerce для блоков категорий
 * WooCommerce добавляет height: auto и max-width: 100% для всех img,
 * что ломает отображение изображений в блоках категорий
 */
.woocommerce .section__list-element-image-block__img,
.woocommerce-page .section__list-element-image-block__img,
.section__list-wrapper .section__list-element-image-block__img {
    height: 100% !important;
    max-width: none !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Защита для picture элементов от стилей WooCommerce */
.woocommerce .section__list-element-image-block picture,
.woocommerce-page .section__list-element-image-block picture {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
}

.section__list-element:hover .section__list-element-image-block {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.section__list-element .section__list-element-image-block {
    transition: all 0.2s ease;
}

.section__list-element-period {
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 767px) {
    .section__list-container {
        width: 100%;
        padding: 0 10px;
    }

    .section__list-title-block--catalog {
        padding: 0 10px;
    }

    .section__list-block {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
    }

    .section__list-element-wrapper {
        max-width: none;
    }

    .section__list-element-wrapper--span2 {
        padding-top: 45.5%;
    }

    .section__list-element-name-block {
        left: 10px;
        top: 10px;
        right: 10px;
        bottom: 10px;
    }

    .section__list-element-name {
        font-size: 14px;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    }

    .section__list-element-image-block {
        background-size: cover;
    }

    /* Переопределяем стили WooCommerce для мобильной версии */
    .woocommerce .section__list-element-image-block__img,
    .woocommerce-page .section__list-element-image-block__img,
    .section__list-wrapper .section__list-element-image-block__img {
        height: 100% !important;
        max-width: none !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .woocommerce .section__list-element-image-block picture,
    .woocommerce-page .section__list-element-image-block picture {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
    }

    .section__list-element-name-desktop {
        display: none;
    }

    .section__list-element-name-mobile {
        display: block;
    }

    .wpwc-dz-address {
        display: flex;
        flex-wrap: wrap;
    }

    .woocommerce form .wpwc-dz-address .form-row {
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .section__list-element-name {
        font-size: 12px;
    }
}

.delivery-switch {
    gap: 2em;
}

#deliverySwitch .delivery-switch-button input[type=radio]:checked+label {
    border-color: #f9c623;
    background-color: rgba(249, 198, 35, 0.1);
}

#deliverySwitch .delivery-switch-button label {
    background: #1a1a1a;
    color: #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #555;
    transition: border-color 0.3s ease;
}

.checkout .col-bg {
    background: #2c2c2c;
    border-radius: 12px;
    border: 1px solid #444;
}

#customer_details .column {
    padding: 1.5em;
}

.wc-iikocloud-complete-before {
    padding-left: 15px;
    padding-right: 15px;
}

.wc-iikocloud-complete-before .complete_before_types {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    gap: 0.5em;
}

.wc-iikocloud-complete-before .complete_before_type {
    margin: 0 0 .5em;
    line-height: 1.5em;
    list-style: none outside;
    background: #1a1a1a;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #555;
    transition: border-color 0.3s ease;
    max-width: 48%;
}

.wc-iikocloud-complete-before .complete_before_type label {
    margin: 0;
}

.wc-iikocloud-complete-before .complete_before_type:has(input:checked) {
    border-color: #f9c623;
    background-color: rgba(249, 198, 35, 0.1);
}

.woocommerce-checkout #payment ul.payment_methods {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-checkout #payment ul.payment_methods li {
    display: flex;
}

.woocommerce-checkout-payment .wc_payment_method label {
    margin: 0;
}

.woocommerce-checkout a#wpwcMapExpand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
}

/* sidebar-cart
*/

.vi-wcaio-sidebar-cart-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-header-wrap,
.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products-wrap,
.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-footer-wrap {
    background: #2c2c2c;
    border-color: #444;
}
.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-header-wrap .vi-wcaio-sidebar-cart-header-title-wrap {
    color: #f9c623;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-header-wrap .vi_wcaio_cart_icon-clear-button {
    color: #fff;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-content-wrap {
    background-color: rgba(249, 198, 35, 0.1);
    border-left: 1px solid #f9c623;
    border-top: 1px solid #f9c623;
    border-bottom: 1px solid #f9c623;
    border-right: 0;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-info-wrap .vi-wcaio-sidebar-cart-pd-name-wrap .vi-wcaio-sidebar-cart-pd-name,
.vi-wcaio-sidebar-cart-footer-pd-name * {
    color: #eee;
}

.vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-info-wrap div {
    margin-bottom: 4px;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi-wcaio-sidebar-cart-pd-quantity {
    border: 1px solid #444;
}

.vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi_wcaio_qty {
    background-color: unset;
    color: #eee;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi_wcaio_minus,
.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi_wcaio_plus {
    color: #eee;
    opacity: .6;
    font-size: 1.2em;
    min-width: 30px;
    cursor: pointer;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi_wcaio_minus {
    border-right: none;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-desc .vi_wcaio_plus {
    border-left: none;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-footer-wrap .vi-wcaio-sidebar-cart-footer-cart_total > div:nth-child(1) {
    color: #f9c623;
    font-size: 1rem;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-footer-wrap .vi-wcaio-sidebar-cart-footer-cart_total span {
    color: #f9c623;
    font-size: 1rem;
}

/* Стили для таблицы КБЖУ */
.nutritional-value {
    margin-top: 20px;
    color: #fff;
}

.nutritional-value-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 16px;
}

.nutritional-value-table th,
.nutritional-value-table td {
    padding: 0.2em 1em;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nutritional-value-table th {
    font-weight: 700;
    color: #958e09;
    font-size: 14px;
}

.nutritional-value-table td:first-child {
    font-weight: 600;
}

.nutritional-value-table tr:last-child td {
    border-bottom: none;
}

.nutritional-value-table .nutritional-fat__item {
    color: #f9c623;
}
.nutritional-value-table .nutritional-carbohydrates__item {
    color: #e02020;
}
.nutritional-value-table .nutritional-energy__item {
    color: #ccc;
}

.product-weight {
    font-size: 16px;
    margin-top: 10px;
}

.product-weight .item-title {
    font-weight: 700;
}

.vi-wcaio-sidebar-cart .vi-wcaio-sidebar-cart-products .vi-wcaio-sidebar-cart-pd-info-wrap .vi-wcaio-sidebar-cart-pd-price *,
.vi-wcaio-sidebar-cart-footer-pd-price * {
    color: #f9c623;
}

.wpwc-dz .wpwc-dz-message-wrapper.woocommerce-info {
    width: 100%;
}

tr.coupon-10-na-samovyvoz a.woocommerce-remove-coupon {
    display: none;
}