.header-toolbar__item > a.toolbar-btn-catalog {
    display: flex;
    align-items: center;
}

a.toolbar-btn-catalog:hover {
    /*border-color: #B20957!important;*/
    border-color: #8e0d38!important;
}

.fa {
    -webkit-transition: all 250ms ease-out;
    -moz-transition: all 250ms ease-out;
    -ms-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.color--hover-accent:hover {
    /*color: #B20957!important;*/
    color: #8e0d38!important;
}

/* NEW STYLES */

/* Catalog btn */
.header-toolbar__item > .toolbar-btn-catalog {
    padding: 14px 20px;
    width: fit-content;
    /*border: 2px solid #B20957;*/
    border: 2px solid #8e0d38;
    border-radius: 8px;
    gap: 10px;
}

.header-toolbar__item > .toolbar-btn-catalog > .toolbar-btn-text {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.dl-icon-menu2:before {
    color: #B20957;
}

/* Search on desctop */
@media screen and (min-width: 992px) {
    .header-toolbar__item > .search-btn {
        display: block;
        position: relative;
        padding: 0 26px;
        width: 100%;
        max-width: 400px;
        text-align: right;
        isolation: isolate;
        border: 2px solid var(--main-color);
        border-radius: 10px;
    }

    /*.header-toolbar__item > .search-btn:before {*/
    /*    content: '';*/
    /*    display: block;*/
    /*    position: absolute;*/
    /*    top: -1px;*/
    /*    left: -1px;*/
    /*    right: -1px;*/
    /*    bottom: -1px;*/
    /*    background: #B20957;*/
    /*    border-radius: 1rem;*/
    /*    z-index: -1;*/
    /*}*/

    /*.header-toolbar__item > .search-btn:after {*/
    /*    content: '';*/
    /*    display: block;*/
    /*    position: absolute;*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    background-color: #000;*/
    /*    border-radius: 1rem;*/
    /*    z-index: 0;*/
    /*}*/

    .header-toolbar__item > .search-btn > * {
        position: relative;
        z-index: 1;
    }
}

/* Catalog category */
.category-banner-wrap {
    display: flex;
    position: relative;
    padding-bottom: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 37px;
}

@media screen and (max-width: 47.94em) {
    .category-banner-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .category-banner-wrap > *:first-child {
        grid-column: 1 / -1;
    }
}

.category-banner-wrap:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 33.49vw;
    height: 1px;
    background-color: #48AD32;
    transform: translateX(-50%);
}

.category-banner {
    display: block;
    position: relative;
    padding: 27px 10px;
    min-width: 200px;
    background-color: #000000;
    box-shadow: 0px 3px 8px rgba(23, 55, 16, 0.25);
    border-radius: 5px;
    isolation: isolate;
    overflow: hidden;
}

@media screen and (max-width: 47.94em) {
    .category-banner {
        min-width: auto;
    }
}

.category-banner:before,
.category-banner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .35s;
    z-index: -1;
}

.category-banner:before {
    background: radial-gradient(100% 100% at 50% 100%, #48AD32 0%, #000000 58.85%);
}

.category-banner:after {
    opacity: 0;
}

.category-banner:hover:before {
    opacity: 0;
}

.category-banner:hover:after {
    opacity: 1;
}

.category-banner.green:after {
    background: radial-gradient(100% 100% at 50% 100%, #2EFF00 0%, #000000 58.85%);
}

.category-banner.yellow:after {
    background: radial-gradient(100% 100% at 50% 100%, #AA9C00 0%, #000000 58.85%);
}

.category-banner.white:after {
    background: radial-gradient(100% 100% at 50% 100%, #D9DBDC 0%, #000000 58.85%);
}

.category-banner.aqua:after {
    background: radial-gradient(100% 100% at 50% 100%, #70E9FD 0%, #000000 58.85%);
}

.category-banner.blue:after {
    background: linear-gradient(256.49deg, rgba(205, 0, 255, 0.3) 8.5%, rgba(169, 19, 206, 0) 32.26%), radial-gradient(100% 100% at 50% 100%, #7720F5 0%, #000000 58.85%);
}

.category-banner.blue .category-banner-img  {
    right: 0px;
    top: -4px;
}

.category-banner-img {
    display: block !important;
    position: absolute;
    top: -7px;
    right: 0;
}

@media screen and (max-width: 460px) {
    .category-banner-img {
        max-width: 85px;
        z-index: 0;
    }
}

.category-banner-text {
    display: block;
    position: relative;
    max-width: 120px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

@media screen and (max-width: 460px) {
    .category-banner-text {
        max-width: 70px;
        font-size: 14px;
    }
}

.site-menu {
    margin-left: -7px;
}

header .social-medium .social__item:not(:last-child) {
    margin-right: 10px;
}

header .social {
    margin-left: 9px;
}

.add-to-cart {
    border: none;
    color: #fff;
    font-weight: bolder;
    font-size: 1.8rem;
    background: var(--main-color);
}

.add-to-cart:hover,
.add-to-cart:focus {
    background-color: #2e2e2e;
}

@supports selector(*:focus-visible) {
    .add-to-cart:focus {
        background-color: var(--main-color);
    }
    .add-to-cart:hover,
    .add-to-cart:focus-visible {
        background-color: #2e2e2e;
    }
}

@media screen and (max-width: 47.94em) {
    .add-to-cart:hover {
        background-color: #2e2e2e;
    }
}

@media screen and (max-width: 992px) {
    .shop-toolbar__left-with-fitler {
        display: flex;
        justify-content: center;
    }

    .shop-toolbar .product-ordering:first-child {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .shop-toolbar__left-with-fitler {
        flex-direction: column;
    }

    .shop-toolbar .product-ordering {
        margin-left: 0;
        width: 100%;
    }
}

.product-ordering.mob {
    display: none;
    position: relative;
}

@media screen and (max-width: 992px) {
    .product-ordering.mob {
        display: flex;
    }
}

@media screen and (max-width: 400px) {
    .product-ordering.mob {
        width: 100%;
        margin-bottom: 10px;
    }
}

.product-ordering__filter {
    border: 2px solid #c5c5c5;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
    padding: 0.8rem 2.5rem;
    min-width: 15rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: #565656;
}

@media screen and (max-width: 400px) {
    .product-ordering__filter {
        width: 100%;
    }
}

.product-ordering__filter svg {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.close-filter {
    display: none;
    position: absolute;
    right: 20px;
    font-size: 23px;
}

@media screen and (max-width: 992px) {
    .close-filter {
        display: flex;
        width: 23px;
        height: 23px;
        position: fixed;
        background: #fff;
    }

    .close-filter i {
        font-size: 23px;
        width: 23px;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background: #fff;
        margin: 0!important;
        padding: 15px;
        overflow: auto;
        z-index: 100;
    }

    .filter-sidebar.filter-open {
        display: flex;
    }

    .filter-widget {
        max-width: 470px;
        width: 100%;

    }
}

.product-stock-3 {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    color: #8a8a8a;
    line-height: 1.3;
    font-weight: 400;
}

.product-stock-3 i {
    color: #8a8a8a;
}

.product-stock-0 {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    color: #8a8a8a;
    line-height: 1.3;
    font-weight: 400;
}

.product-stock-0 i {
    color: #8a8a8a;
}

.binct-phone-number-1 {
    color: var(--main-color);
}

.binct-phone-number-1 img {
    position: absolute;
    left: -20px;
    top: -3px;
}

.mobile-phone {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .schedule-mobile span {
        font-size: 10px;
        margin-left: 15px;
    }
    .binct-phone-number-1 {
        font-size: 10px;
    }

    .mobile-phone img {
        position: absolute;
        left: 18px;
        top: 12px;
        width: 25px;
    }

    .mobile-phone a {
        margin-left: 35px;
    }

    .mobile-navigation .header-component__language {
        display: flex;
        justify-content: space-between;
    }
    .mobile-navigation .header-component__language a:first-child {
        border-right: 1px solid #e8e8e8;
    }
    .mobile-navigation .header-component__language a {
        width: 50%;
    }
    .mobile-navigation .header-component__language a:after {
        content: none!important;
    }

    .header-mobile__inner .social__link {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.select-languages-popup {
    margin: 20px 0;
}

.select-languages-popup a {
    font-size: 12px;
    font-weight: 400;
    position: relative;
    color: #000;
}

.ai-newsletter-popup-content {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.ai-newsletter-popup-body {
    width: 100%;
    padding: 55px 25px 0 44px;
}

.ai-newsletter-popup-body p {
    font-size: 22px;
    color: #000;
    border-bottom: 1px solid #48AD32;
    padding-bottom: 50px;
    margin-bottom: 20px;
}

.select-languages-popup {
    font-weight: 400;
    text-align: center;
}

.select-languages-popup-separator {
    margin: 0 5px;
    font-size: 12px;
}

.select-languages-popup span.active {
    border-bottom: 1px solid #000;
}

.select-languages-popup-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 37px;
}

.select-languages-popup-buttons button {
    background-color: #000;
    color: #fff;
}

.select-languages-popup-buttons button:last-child {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.select-languages-popup-buttons button:first-child {
    margin-right: 45px;
}

.select-languages-popup-buttons button:hover:last-child {
    color: #000!important;
}

@media screen and (max-width: 768px) {
    .ai-newsletter-popup-body {
        padding: 55px 25px 0 25px;
    }

    .ai-newsletter-popup-body p {
        padding-bottom: 20px;
    }

    .select-languages-popup-buttons button:first-child {
        margin-right: 20px;
    }
}

#showMore {
    background: #282828;
    padding: 20px;
    text-align: center;
    color: #fff;
    margin: 10px 0;
    font-size: 18px;
    display: block;
}

@media screen and (min-width: 768px) {
    #showMore {
        width: 40%;
        margin: 10px auto;
    }
}

@media screen and (max-width: 768px) {
    .header-mobile {
        display: block;
        position: sticky;
        left: 0;
        top: 0;
        z-index: 10;
    }
}

.header-component__additional {
    display: flex;
    font-size:1.4rem;
}

.header-component__additional .mobile-phone {
    border-right: 1px solid #e8e8e8;
    padding: 0;
}

.header-component__additional .mobile-phone a {
    width: 100%;
    margin-left: 0;
    text-align: center;
}

.header-component__additional-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

@media screen and (max-width: 768px) {
    .product-gallery__thumb--image .slick-slider {
        width: 360px;
        height: 80px;
    }

    .product-gallery__thumb--image .slick-slider img {
        max-height: 80px;
        object-fit: contain;
    }

    .product-gallery__actions .action-btn {
        width: 50px;
        height: 50px;
    }
    .notice-text a {
        display: block;
        width: 360px;
        height: 60px;
    }
    .header-mobile .top-bar {
        height: 70px;
    }
    .breadcrumb-area {
        min-height: 43px;
    }
}

.single-post-details ul,
.single-post-details ol {
    list-style: auto;
}

.tagcloud label.checkbox {
    display: flex;
    width: 162px;
    font-weight: 400;
    align-items: center;
    justify-content: space-between;

}

.tagcloud label.checkbox .checkbox-value {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-right: 5px;
}

.tagcloud label.checkbox .checkbox-value-title {
    width: 100%;
}

.tagcloud label.checkbox .checkbox-value-input {
    margin-top: 2px;
    margin-right: 5px;
}

@media screen and (max-width: 992px) {
    .tagcloud label.checkbox {
        width: 100%;
        font-size: 1.4rem;
    }
}

.single-post-details .entry-title {
    font-size: 35px;
}

.single-post-details .entry-content ul {
    list-style: disc;
    padding-left: 40px;
}

@media screen and (max-width: 768px) {
    .homepage-slider-padding {
        padding: 0!important;
    }
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: block;    /* undo display:none          */
    height: 0;         /* height:0 is also invisible */
    overflow: hidden;  /* no-overflow                */
}
.tab-content > .active,
.pill-content > .active {
    height: auto;      /* let the content decide it  */
}

@media screen and (max-width: 1024px) {
    .mini-cart__product__title {
        width: 95%;
    }
    .mini-cart__product__content .quantity .qtybutton {
        height: 4rem!important;
        line-height: 4rem!important;
    }

    .quantity .qtybutton {
        height: 4rem!important;
        line-height: 4rem!important;
    }
}

@media screen and (max-width: 768px) {
    .filter-sidebar {
        padding: 0;
    }
    form#filters {
        padding: 15px;
    }
    .close-filter {
        padding: 15px 15px 0px 15px;
    }
    .categroy-widget {
        padding: 15px 15px 0 0;
    }
}

.filter__buttons-mobile {
    justify-content: space-evenly;
    position: static;
    width: 100%;
    bottom: 0;
    background: #fff;
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .filter__buttons-mobile {
        position: fixed;
        bottom: 57px;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .cl-launcher {
        display: none;
    }

    .main-content-wrapper .container > .row.pt--40 {
        padding-top: 0.5rem !important;
    }

    .main-content-wrapper .product-main-details {
        margin-top: 0.5rem !important;
    }

    .breadcrumb-area {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .header-mobile__inner {
        padding-top: 0;
        padding-bottom: 0;
    }

    .pt-sm--20 {
        padding-top: 0.5rem !important;
    }
}

/* CSS */

@media (max-width: 61.94em) {
    .mobile-footer {
        display: flex!important;
    }

    #miniCart, #loginModal, #profilePopup {
        margin: 0 auto;
        min-height: fit-content;
        top: auto;
        transform: translateY(0%);
        display: inline-table;
        z-index: 200003;
        bottom: 57px;
        width: 100%;
        min-width: 100%;
    }

    #сontinue-shopping-btn {
        display: none;
    }

    #go-to-checkout-btn {
        width: 100%;
        font-size: 1.7rem;
        background: var(--main-color);
    }

    .mini-cart__product__quantity {
        position: static!important;
    }

    .mini-cart__total span {
        font-size: 1.8rem;
        font-weight: 800;
    }

    .flex-column.cabinet-menu {
        border-bottom: 2px solid var(--main-color);
        flex-direction: row!important;
    }

    .flex-column.cabinet-menu .nav-item {
        margin-bottom: 0!important;
    }

    .flex-column.cabinet-menu .nav-item button {
        border-radius: 5px 5px 0 0;
    }
}

.cart-product-price {
    text-align: right;
    font-size: 2.2rem;
}

.mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3px;
    background-color: #f8f9fa;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}

.mobile-footer .footer-btn {
    position: relative;
    display: flex;
    flex-direction: column; /* Вертикальное расположение иконки и текста внутри кнопки */
    align-items: center; /* Горизонтальное выравнивание содержимого */
    justify-content: center; /* Вертикальное выравнивание содержимого */
    text-align: center;
    padding: 7px 2px 2px 2px;;
    background-color: transparent;
    border: none;
    color: #343a40;
    font-size: 1rem;
    flex: 1; /* Равномерное распределение пространства между кнопками */
    border-radius: 4px;
    /*margin: 3px 10px;*/
    margin: 0 10px 0 10px;
}

.mobile-footer .footer-btn.active {
    background-color: var(--main-color);
    /*background-color: #8e0d38;*/
    color: #fff;
    border-radius: 4px;
}

.mobile-footer .footer-btn i {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.mobile-footer .footer-btn span {
    font-size: 1.2rem;
}

.homepage-slider {
    overflow: hidden;
}

.airi-product .product-action {
    border-radius: 0.5rem;
}

.mini-cart__product__quantity {
    display: block;
    /*position: absolute;*/
    left: 100px;
    top: 1.1rem;
    width: 90px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.checkout-title h2:after {
    content: "";
    width: 100%;
    display: block;
    margin-top: 10px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-color: #6c757d;
}

.phone-form-group .input-group-text {
    font-size: 1.5rem;
    border: 1px solid #a3a3a3;
}

.phone-form-group input.form__input {
    width: auto;
    flex-grow: 1;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/*.product-badge.sale {*/
/*    background-image: url(./../img/pumpkin.png) !important;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-color: transparent;*/
/*    font-size: 0;*/
/*}*/

/*.product-badge.sale {*/
/*    background-image: url(./../img/pumpkin.png) !important;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-color: transparent;*/
/*    font-size: 0;*/
/*    box-shadow: none;*/
/*    width: 5.5rem;*/
/*    height: 5.5rem;*/
/*    line-height: 5.5rem;*/
/*}*/

.product-badge.sale-feb14 {
    background-image: url(./../img/sale-feb14.png) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffffaa;
    font-size: 0;
    box-shadow: none;
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
}

.product-image .product-badge.black-friday {
    background-image: url(./../img/free-delivery.png) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    font-size: 0;
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
}

.product-image .product-badge.feb14 {
    background-image: url(./../img/free-delivery-feb14.png) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffffbb;
    font-size: 0;
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
}

.product-image .product-badge.black-friday svg,
.product-image .product-badge.feb14 svg {
    display: none;
}


.category-masonry img {
    /*filter: grayscale(60%);*/
}

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

.grid-item {
    position: relative;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eee;
}

.grid-item div {
    background: #a3a3a352;
}

.grid-item:hover {
    background: #8e0d38;
}

.grid-item img {
    width: 100%;
    height: auto;
    /* opacity: .8; */
    /*padding: 1.5rem;*/
    /*bottom: 1rem;*/
    position: relative;
}

.grid-item:hover img {
    filter: grayscale(0%);
}

.grid-item h3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    /* text-shadow: 0 0 10px rgba(0, 0, 0, 80); */
    font-size: clamp(1rem, 4vw, 2.7rem);
    background-color: #1d1d1da8;
    color: #fff;
    z-index: 2;
    padding: 1rem 0.5rem;
    margin: 0;
    width: 100%;
    text-align: center;
    transition-duration: 0.3s;
    line-height: 2.4rem;
    box-shadow: 0 0 3px #1e5c11;
    /*box-shadow: 0 0 3px #8e0d38;*/
}

.grid-item.large h3 {
    padding: 1rem 1.5rem;
}

.grid-item:hover h3 {
    background-color: #000000e3;
    box-shadow: 0 0 3px #000;
}

.grid-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item.square {
    grid-column: span 1;
    grid-row: span 1;
}

.grid-item.small-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.grid-item.small-wide-long {
    grid-column: span 3;
    grid-row: span 1;
}


@media (max-width: 747px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

@media (max-width: 1168px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

/* Fix for product image sizing in grid layout */
/*.airi-product .product-image,*/
/*.product-image {*/
/*    height: 270px !important; !* Fixed height for image container *!*/
/*    width: 100% !important;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    background-color: #f8f8f8; !* Light background for better visual *!*/
/*}*/

/*.airi-product .product-image--holder,*/
/*.product-image--holder {*/
/*    height: 270px !important; !* Fixed height for image container *!*/
/*    width: 100% !important;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    background-color: #f8f8f8; !* Light background for better visual *!*/
/*}*/

/*!* Override main.css styles with more specific selectors *!*/
/*.airi-product .product-image--holder img,*/
/*.airi-product .product-image img,*/
/*.product-image--holder img,*/
/*.product-image img {*/
/*    width: 100% !important;*/
/*    height: 100% !important;*/
/*    object-fit: cover !important; !* Fills container completely, may crop image slightly *!*/
/*    object-position: center !important; !* Centers the image *!*/
/*    position: absolute !important;*/
/*    top: 0 !important;*/
/*    left: 0 !important;*/
/*}*/

/*!* Ensure both primary and secondary images follow the same sizing rules *!*/
/*.airi-product .product-image--holder .primary-image,*/
/*.airi-product .product-image--holder .secondary-image,*/
/*.airi-product .product-image .primary-image,*/
/*.airi-product .product-image .secondary-image,*/
/*.product-image--holder .primary-image,*/
/*.product-image--holder .secondary-image,*/
/*.product-image .primary-image,*/
/*.product-image .secondary-image {*/
/*    width: 100% !important;*/
/*    height: 100% !important;*/
/*    object-fit: cover !important;*/
/*    object-position: center !important;*/
/*    position: absolute !important;*/
/*    top: 0 !important;*/
/*    left: 0 !important;*/
/*}*/

/*!* Alternative: if you want images to maintain aspect ratio without cropping *!*/
/*!**/
/*.product-image--holder img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain; */
/*    object-position: center;*/
/*}*/
/**!*/

/* Responsive adjustments for product images */
@media (max-width: 768px) {
    /*.airi-product .product-image,*/
    /*.product-image,*/
    /*.airi-product .product-image--holder,*/
    /*.product-image--holder {*/
    /*    height: 200px !important; !* Smaller height on mobile *!*/
    /*}*/

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-gap: 5px;
    }

    .grid-item {
        grid-column: span 1;
        grid-row: span 1;
    }
/*}*/

/*@media (max-width: 480px) {*/
/*    .airi-product .product-image,*/
/*    .product-image,*/
/*    .airi-product .product-image--holder,*/
/*    .product-image--holder {*/
/*        height: 180px !important; !* Even smaller on very small screens *!*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .grid-item h3 {*/
/*        font-size: 2.1rem;*/
/*        !*bottom: 0.3rem;*!*/
/*        width: 97%;*/
/*    }*/

    .grid-item.small-wide h3,
    .grid-item.square h3 {
        font-size: 1.7rem;
        line-height: 1.7rem;
        padding: 0.8rem 0.5rem;
    }

    .grid-item.square.grid-tequila h3 {
        line-height: 1.5rem;
        padding: 0.2rem 0.2rem;
    }

    .category-masonry {
        margin-left: -10px;
        margin-right: -10px;
    }

    .catalog-container .grid {
        /*grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)) !important;*/
    }

    .grid-item.small-wide.grid-pivo {
        grid-column: span 3;
    }
}

.dl-menuwrapper button {
    height: 40px;
}

.dl-menu.dl-menuopen {
    margin-top: 0;
}


body #bingc-phone-button svg.bingc-phone-button-circle circle.bingc-phone-button-circle-outside {
    fill: #000;
    fill-opacity: .2;
}

body #bingc-phone-button svg.bingc-phone-button-circle circle.bingc-phone-button-circle-inside {
    fill: #8e0d38 !important;
    stroke: beige;
    stroke-width: 2;
}

body #bingc-phone-button div.bingc-phone-button-tooltip {
    background: #8e0d38 !important;
}

body #bingc-phone-button div.bingc-phone-button-tooltip svg.bingc-phone-button-arrow polyline {
    background: #8e0d38 !important;
}

body #bingc-phone-button div.bingc-phone-button-tooltip svg.bingc-phone-button-arrow polyline {
    fill: #8e0d38 !important;
}

.catalog-container .grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}




/*.grid-tequila h3 {*/
/*    line-height: 1.5rem;*/
/*    padding-bottom: 2.3rem;*/
/*}*/

.grid-item div {
    background: #95134f!important;
}

.grid-item h3 {
    /*background: none!important;*/
    box-shadow: none!important;
    border: 0!important;
}

.grid-item div {
    transition-duration: 0.3s;
    background: #fff;
}

.grid-item:hover div {
    /*background: #0b0b0b!important;*/
    background: #fff!important;
}

.grid-item:hover img {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mini-cart__content {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    }
}
@media (max-width: 602px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(151px, 1fr));
    }
}


.btn {
    background-color: var(--main-color);
    border-radius: 0.5rem;
}

.mini-cart__buttons a.btn-fullwidth {
    width: 100%;
}

.grid-item img {
    width: 100%;
    height: auto;
}

.cabinet-page-content .message-box {
    padding: 1.4rem 1.4rem;
}

#profilePopup .btn {
    border-radius: 0.5rem;
    font-size: 1.8rem;
    border: none;
    background-color: var(--main-color);
}

#profilePopup .logout-btn {
    background-color: #38393a;
}

#profilePopup .btn-close {
    display: none;
}

#profilePopup .mini-cart-wrapper {
    padding-top: 0;
}

.checkout-order input:disabled {
    background: #eee;
}


.product-data-tab.tab-style-6 .nav-link {
    font-size: 1.7rem;
    margin-right: 0.1rem;
}

.product-data-tab.tab-style-6 .nav-link.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    border-radius: 5px 5px 0 0;
}

.product-data-tab.tab-style-6 .nav-tabs {
    border-bottom: 2px solid var(--main-color);
}

.header-toolbar__item a sup,
.header-toolbar__item a i {
    color: #fff;
    transition-duration: 0.2s;
}
.header-toolbar__item:hover a i {
    color: var(--main-color)!important;
}
.header-toolbar__item:hover a sup {
    background-color: var(--main-color)!important;
}

.mini-cart__buttons .btn {
    font-size: 1.6rem;
}

.mini-cart__buttons .btn-button-close {
    color: #fff;
}

.cabinet-product-title .alert {
    padding: .2rem 1.25rem;
    display: inline-block;
    top: -0.2rem;
}

.cabinet-product-title h4 {
    display: inline-block;
}

#pills-orders .table {
    margin-bottom: 2rem;
}

#pills-orders .table.order-table th {
    line-height: 2.2rem;
    margin: 0;
    padding: 0 0 10px 0;
    vertical-align: middle;
    font-size: 1.6rem;
    color: #282828;
}

#pills-orders .table.order-table td {
    margin: 0;
    padding: 0 0 10px 0;
    color: #282828;
}

#pills-orders .table.order-table {
    border-bottom: 2px dotted #eee;
    transform: translateY(-15px);
    background: #ffffff50;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

#pills-orders .table.order-table .cart-product-price {
    text-align: right;
    font-size: 1.6rem;
}

#cart-apply-bonuses {
    background: #47c326;
    padding: 0.5rem 2rem;
    color: #fff;
    border-radius: 0.3rem;
    border: 0;
    height: 4rem;
    line-height: 2rem;
    min-height: 2rem;
    margin-left: 5px;
}

#cart-apply-bonuses:hover,
#cart-apply-bonuses:active
{
    background: #323232;
    padding: 0.5rem 2rem;
    color: #fff;
    border-radius: 0.2rem;
}
#cart-apply-bonuses:disabled {
    background: #323232!important;
    padding: 0.5rem 2rem;
    color: #fff!important;
    border-radius: 0.2rem;
}

.apply-bonuses-section p {
    color: #000;
}

#cart-apply-bonuses-value {
    line-height: 2.1rem;
    height: 4rem;
}

.order-total-ammount-inner {
    line-height: 2rem;
    transition: transform 0.3s ease; /* Плавное увеличение размера */
}

.order-total-ammount-inner.increase {
    color: #47c326;
}

.order-total-ammount-inner {
    display: inline-block!important;
}

.apply-bonuses-section .error {
    color: red;
}

#cart-apply-bonuses-value-error {
    position: absolute;
    top: 44px;
    background: white;
    padding-bottom: 20px;
    width: 100%;
}

#filters .alert-error{
    display: none;
}

#applyFormFilter {
    /*margin-bottom: 80px;*/
}

.filter-search-container {
    position: relative;
    width: 100%;
}

.filter-search-field {
    width: 100%;
    margin-bottom: 5px;
    position: relative;
    font-size: 1.4rem;
    font-family: "Roboto Condensed", serif;
    color: #8a8a8a;
}

.filter-search-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* Скрыт по умолчанию */
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
}

.filter-search-clear-btn:hover {
    color: #000;
}

/*.product-filter-widget-2-category-sale,*/
/*.product-filter-widget-7-category-sale,*/
/*.product-filter-widget-9-category-sale,*/
/*.product-filter-widget-10-category-sale,*/
/*.product-filter-widget-37-category-sale*/
/*{*/
/*    !*display: none;*!*/
/*}*/

.binct-phone-number-1 img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.header a {
    color: var(--main-light-color)!important;
}

/*.form--checkout .user-actions__coupon {
    display: none;
}*/

.item-additional-info ul,
.product-additional-info ul {
    list-style: disc;
}
.item-additional-info ul li,
.product-additional-info ul li {
    margin: 5px 0 9px 15px;
    font-size: 1.6rem;
    line-height: 2.5rem;
}

.item-additional-info strong,
.product-additional-info strong,
.item-additional-info b,
.product-additional-info b {
    color: #6e6e6e;
}

.item-additional-info p,
.product-additional-info p {
    font-size: 1.6rem;
}

.item-additional-info h2,
.product-additional-info h2 {
    font-size: 2rem;
    margin: 20px 0 10px;
    line-height: 1.2;
}

.category-info-table caption {
    caption-side: top;
}

.category-info-table tr:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.category-info-table td {
    text-align: right;
}

.single-post .entry-content a {
    color: #4F81BD;
}

.shop-products .product-image .product-image--holder a img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  display: block;
}
