  /*
Theme Name: flowers
*/
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Outfit, Satoshi, Monserat,sans-serif;
    
}

header{
    position: static;
    background-color: #0d2e12;
}
/* PRELOADER */
#site-preloader {
    position: fixed;
    inset: 0;
    background: #0d2e12;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#site-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo img {
    width: 180px;
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
    animation: logoReveal 1.5s ease forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.85);
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .preloader-logo img {
        width: 140px;
    }
}

.top-side {
    background-color: #1e2716;
    height: 59px;
    display: flex;
    align-content: center;
}
.woocommerce #payment #place_order{
    background-color: #6f9275;
}
.select2-selection{
    display: none !important;
}
#billing_state_field{
    display: none !important;
}

.conntainer h1{
    display: flex;
    justify-content: center
}
.woocommerce form .form-row .input-text{
    border: none !important;
}
.top_header {
    width: 78%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 15px;
}

.top_header a {
    font-size: 16px;
    margin-top: 5px;
    text-decoration: none;
    color: #fff;
}
.contacts{
    align-items: flex-start;
    display: flex;
    gap: 10px;
}
.contact{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.cont{
    display: flex;
    gap: 5px;
    align-items: center
}
.contacts img{
    width: 24px;
    height: 24px;
}
.bottom_container {
    display: flex;
    justify-content: center;
}
.logo img{
    width: 250px;
}

.comand_btn{
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.bottom_header {
    height: 100px;
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart {
    border: none;
    background: none;
}

.nav_bar {
    display: flex;
    gap: 20px;
    margin-top: 27px;
}

/* Общие стили для ссылок в навигации */
.nav_bar a {
    font-family: 'Montserrat';
    font-weight: 500;
    color: #c3a554; /* Чёрный цвет текста */
    text-decoration: none; /* Убираем стандартное подчёркивание */
    position: relative; /* Позиционирование для псевдо-элемента */
    padding-bottom: 5px; /* Отступ снизу для места, где будет чёрточка */
    font-size: 16px; /* Размер шрифта */
    transition: color 0.3s ease; /* Плавный переход для изменения цвета текста */
}

/* Чёрточка появляется при наведении */
.nav_bar a::after {
    content: ""; /* Псевдо-элемент для создания чёрточки */
    position: absolute;
    bottom: 0; /* Располагаем чёрточку снизу */
    left: 0;
    width: 100%;
    height: 2px; /* Толщина чёрточки */
    background-color: #c3a554; /* Цвет чёрточки */
    transform: scaleX(0); /* Изначально чёрточка скрыта */
    transform-origin: bottom right; /* Начало анимации с правого края */
    transition: transform 0.3s ease; /* Плавное появление чёрточки */
}

/* Появление чёрточки при наведении */
.nav_bar a:hover::after {
    transform: scaleX(1); /* Чёрточка появляется */
    transform-origin: bottom left; /* Появляется с левого края */
}

/* Стили при наведении на ссылку */
.nav_bar a:hover {
    text-decoration: none;
    color: #e4cf96; /* Изменение цвета текста при наведении */
}

/* Стили для контейнера выбора языка */
.language-selector {
    position: relative;
    font-family: 'Montserrat';
    display: flex;
    margin-left: 5px;
    align-items: center;
}

/* Кнопка выбора языка */
.lang-button {
    background-color: transparent;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.8s ease;
}
.current-language{
    color: wheat;
    margin-right: 8px;

}
.lang-button:hover {
    background-color: #c3a554;
}

/* Стрелочка вниз для кнопки */
.lang-button i {
    font-size: 12px;
    transition: transform 0.8s ease;
}

/* Выпадающий список с языками */
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #c3a554;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 60px;
    z-index: 1000;
}

/* Элементы выпадающего списка */
.lang-dropdown li a {
    display: block;
    color: wheat;
    text-decoration: none;
    text-align: center;
}
.top img {
    width: 100%;
    height: 125%;
    object-fit: cover; /* Чтобы изображение не искажалось */
}
.lang-dropdown li a:hover {
    background-color: #f0f0f0;
}

/* Показываем выпадающий список при наведении */
.language-selector:hover .lang-dropdown {
    display: block;
}

/* Эффект стрелочки при открытом списке */
.language-selector:hover .lang-button i {
    transform: rotate(180deg);
}

/* Стили для отображения выпадающего списка */
.lang-dropdown.show {
    display: block;
}
.burger-menu {
    display: none; /* Начнем с того, что скроем меню на десктопе */
}

.slider-container-box {
    position: relative;
    width: 100%;
    max-height: 757px;
    margin: auto;
    overflow: hidden; /* Это скроет слайды, которые выходят за пределы контейнера */
}

.slider {
    display: flex;
    max-height: 757px;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%; /* Каждый слайд будет занимать 100% ширины контейнера */
    position: relative;
}

.slide img {
    width: 100%;
    object-fit: cover;
    box-shadow: black;
    height: 100%;
}

.slider_text {
    width: 703px;
    position: absolute;
    bottom: 25%;
    left: 15%;
    color: white;
    font-family: Outfit;
    padding: 10px;
}
.show_more{
    width: 226px;
    height: 74px;
    border-radius: 50px;
    font-family: Outfit;
    background-color: white;
    color: black;
}
button.show_more {
    background-color: #fff; /* Исходный цвет фона (темный) */
    color: black; /* Цвет текста */
    border: 2px solid transparent; /* Начальная рамка без цвета */
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Плавный переход */
}

button.show_more:hover {
    background-color: #d3d3d3; /* Цвет фона при наведении (светло-серый) */
    border-color: #d3d3d3; /* Цвет рамки при наведении */
}
.show_more a{
    font-size: 18px;
    color: black;
    text-decoration: none;
}
.slider_text h3{
    font-size: 64px;
    line-height: 1;
    margin: 0;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 30px;
}
.slider_text p{
    width: 350px;
    font-size: 22px;
    font-weight: 300; /* Regular стиль */
    margin-bottom: 6%;
    line-height: 34.5px;
}
.controls {
    position: absolute;
    top: 60%;
    width: 100%;
    display: flex;
    gap: 75%;
    justify-content: space-around;
    transform: translateY(-50%);
}

button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: transparent;
}

.indicators {
    position: absolute;
    bottom: 7%;
    left: 18%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9A9A9A;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}
.call{
    border-radius: 5px;
    display: flex;
    gap: 20px;
    position: absolute;
    right: 15%;
    bottom: 15%;
    justify-content: space-evenly;
    align-content: stretch;
    flex-wrap: wrap;
    flex-direction: row;
}
button.calling {
    width: 216px;
    height: 80px;
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 13px;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Плавный переход */
}
button.calling:hover{
    background-color: #d3d3d3; /* Цвет фона при наведении (светло-серый) */
    border-color: #d3d3d3;
}
.call a{
    width: 80px;
    display: flex;
    background-color: white;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
}
.phone img{
    width: auto;
    height: 40px;
}
.catalog{
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 0.1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    justify-content: center;

}
.partner {
    width: 100%;
    background-color: #0d2e12;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.partner-container {
    gap: 10px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.partner-text h1 {
    color: white;
    font-size: 36px;
    font-family: Outfit;
    font-weight: 300;
    opacity: 85%;
}
.slider-container {
    width: 100%;
    margin: 0px 0px 50px 0px;
}
.slider-item {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
}
.slick-track {
    display: flex !important;
}
.support{
    margin: 125px 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.support-text{
    max-width: 933px;
    color: #050f27;
    font-weight: 400;
    margin-bottom: 40px;
}
.support-text h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 36px;
}
.support-text p {
    font-size: 22px;
    line-height: 2;
}
.woocommerce-checkout #payment ul.payment_methods li img{
    width: 200px;
}
.woocommerce-info{
    display: none;
}
button.require:hover {
    background-color: #ccc;
}

.footer{
    display: flex;
    background-color: #0d2e12;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content:center;
}
.footer-container{
    display: flex;
    width: 1200px;
    height: 100%;
    padding: 90px 5px;
    justify-content: center;
    flex-direction:column;
    align-items: flex-start;
}
.bottom-footer{
    width: 100%;
}
.politics{
    padding: 17px;
    border-top: 1px solid wheat;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.menu-item{
    list-style-type: none;
}
.columns{
    display: flex;
    gap: 90px;
}
.columns h3{
    color: wheat;
}
.columns a:hover{
    color: wheat;
}
.column1 {
    display: flex;
    width: 313px;
    padding-right: 30px;
    gap: 34px;
    flex-direction: column;
    color: #B4BBC5;
}
.map{
    background-color: #9cd1a7;
    width: 400px;
    height: 250px;
}
/* Основной контейнер для кнопки выбора языка */
.language-toggle {
    position: relative;
    display: inline-block;
}

/* Стили для кнопки выбора языка */
.dropdown-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 109px; /* Ширина кнопки */
    height: 47px; /* Начальная высота кнопки */
    background-color: transparent; /* Прозрачный фон */
    border: 1px solid white; /* Белая рамка */
    border-radius: 25px; /* Закругленные углы */
    color: white; /* Белый цвет текста */
    font-size: 16px;
    padding: 0 16px;
    cursor: pointer;
    position: relative;
    overflow: visible; /* Задаем видимость для элементов, выходящих за пределы кнопки */
    transition: height 0.3s ease; /* Плавное изменение высоты */
}
.single_add_to_cart_button {
    margin-top: 25px;
    background-color: #b8d191;
    border-radius: 25px;
}
.single_add_to_cart_button:hover {
    background-color: #879f70 !important;
 }

/* Иконка стрелки */
.dropdown-button i {
    margin-left: 10px;
    font-size: 14px;
}

/* Скрытые дополнительные языки */
.dropdown-button .other-languages {
    display: flex;
    flex-direction: column; /* Располагаем языки друг под другом */
    position: absolute;
    top: 100%; /* Сразу под кнопкой */
    left: 0;
    width: 100%;
    opacity: 0; /* Скрыты по умолчанию */
    visibility: hidden; /* Скрыты по умолчанию */
    background-color: transparent;
    padding: 5px 0;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Плавное появление */
}

/* Стили для каждого языка в списке */
.dropdown-button .other-languages span {
    padding: 5px 10px;
    color: white;
    text-align: center;
    cursor: pointer;
}

/* Эффект при наведении на кнопку */
.dropdown-button:hover { /* Увеличиваем высоту кнопки при наведении */
    border-color: #ccc; /* Подсветка границы при наведении */
}

/* Показываем дополнительные языки при наведении */
.dropdown-button:hover .other-languages {
    opacity: 1; /* Языки становятся видимыми */
    visibility: visible; /* Языки становятся видимыми */
}

/* Эффект при наведении на язык */
.dropdown-button .other-languages span:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Легкое затемнение фона при наведении на язык */
}
.column2,.column3,.column4 {
    font-family: Outfit;
    font-weight: 300;
    color: #fff;
    margin: 0 8px;
}

.column2 a,.column3 a,.column4 a{
    text-decoration: none;
    color: #B4BBC5;
    font-size: 13px;
    margin-bottom: 20px;
}
.column2 ul,.column3 ul,.column4  ul{
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.column2 li,.column3 li,.column4  li{
    margin-bottom: 20px;
}
.column2 h3,.column3 h3,.column4 h3{
    margin-bottom: 40px;
}
.footer-contacts{
    display: flex;
    gap: 10px;
}
.products{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
}
.product-card .top img {
    max-width: 100%;
    height: auto;
}
.product-card .details h1 {
    font-size: 18px;
    margin: 10px 0;
}
.product-card .details p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.product-card .buy a {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
/* Общий контейнер корзины */
.custom-cart-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.woocommerce-cart-form{
    margin: 0 auto;
    width: 50%;
    border-radius: 25px;
}
.product-remove{
    border-radius: 25px 0px 0px 0px;
}
/* Таблица корзины */
.woocommerce-cart-form .shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fafafa;
}
.product-subtotal{
    border-radius: 0px 25px 0px 0px;
}
/* Заголовки таблицы */
.woocommerce-cart-form th {
    background: #0d2e12;
    color: #fff;
    padding: 12px;
    text-align: center;
}

/* Ячейки таблицы */
.woocommerce-cart-form td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

/* Картинки товаров */
.woocommerce-cart-form .product-thumbnail img {
    width: 60px;
    height: auto;
    border-radius: 5px;
    display: table !important;
}
.product-thumbnail{
    display: flex !important;
}

/* Кнопки */
.woocommerce-cart-form button {
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.woocommerce-cart-form button:hover {
    background: #005580;
}

/* Кнопка удаления товара */
.woocommerce-cart-form .product-remove a {
    color: #ff4d4d;
    font-size: 18px;
    text-decoration: none;
}

.woocommerce-cart-form .product-remove a:hover {
    color: #cc0000;
}
/* Контейнер счетчика */
.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

/* Кнопки "-" и "+" */
.quantity button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.quantity button:hover {
    background: #005580;
}

/* Поле ввода */
.quantity input {
    width: 40px;
    height: 38px;
    text-align: center;
    border: none;
    font-size: 10px;
}
/* Стиль для контейнера с корзиной */
.header-cart a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #164e16;
    color: #c3a554;
    border-radius: 25px;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

/* Стиль иконки в кнопке */
.header-cart i {
    color: #c3a554; /* белая иконка */
    font-size: 24px; /* размер иконки */
    margin-right: 5px; /* отступ между иконкой и числом */
}

/* Стиль для счетчика корзины */
.header-cart .cart-count {
    background-color: #c3a554;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    
}

/* Эффект наведения на ссылку */
.header-cart a:hover {
    background-color: #c3a554; /* фон кнопки становится белым */
    color: white; /* текст кнопки становится светло-зелёным */
}

/* Эффект наведения на иконку */
.header-cart a:hover i {
    color: #164e16; /* иконка становится светло-зелёной */
}

/* Эффект наведения на счетчик */
.header-cart a:hover .cart-count {
    background-color: #164e16; /* фон счетчика становится белым */
    color: white; /* текст счетчика становится светло-зелёным */
}
/* Основной стиль для контейнера категорий */
.product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Отступы между элементами */
    padding: 20px 0;
    margin: 0;
}

/* Стили для списка категорий */
.product-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Стили для каждой категории */
.product-categories li {
    display: inline-block;
    width: calc(33.33% - 20px); /* 3 категории в строке на десктопе */
    margin-bottom: 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Стили для ссылки категории */
.product-categories a {
    display: block;
    text-align: center;
    padding: 15px;
    color: #fff; /* Белый цвет текста */
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

/* Цвета для категорий */
.product-categories .category-red {
    background-color: #ff5733; /* Красный */
}

.product-categories .category-blue {
    background-color: #0073e6; /* Синий */
}

.product-categories .category-green {
    background-color: #28a745; /* Зеленый */
}

.product-categories .category-yellow {
    background-color: #ffc107; /* Желтый */
}

.product-categories .category-purple {
    background-color: #6f42c1; /* Пурпурный */
}

.product-categories .category-orange {
    background-color: #fd7e14; /* Оранжевый */
}

/* Эффект при наведении */
.product-categories li:hover {
    transform: scale(1.05); /* Увеличение карточки */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Тень */
}

.product-categories a:hover {
    background-color: #4d6843;
    transform: scale(1.1); /* Увеличение категории при наведении */
    opacity: 0.9; /* Плавное затемнение */
}

/* Стили для заголовка категории */
.product-categories a h2 {
    font-size: 18px;
    margin-top: 10px;
    text-transform: uppercase;
    color: #fff; /* Белый текст для заголовка */
    transition: color 0.3s ease;
}

/* Адаптивность для планшетов */


/* Дополнительные стили для фона категории */
.product-categories a {
    background-color: #bf818e;
    border: 1px solid #ddd;
}

.product-categories a:hover {
    background-color: #d16767; /* Изменение фона при наведении */
}

/* Эффект размытия фона при фокусе */
.product-categories a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5); /* Эффект фокуса */
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transfo rm 0.6s ease;
}

.wrapper {
    opacity: 1;
    transform: translateY(0);
}
/* 1. Прозрачный фон и отсутствие флага */
#google_translate_element .gt_float_switcher {
    background-color: transparent !important;  /* Прозрачный фон */
    border: none !important;  /* Убираем границу */
    box-shadow: none !important;  /* Убираем тень */
    padding: 0;
}

#google_translate_element .gt_float_switcher select {
    background-color: transparent !important;  /* Прозрачный фон */
    border: none !important;  /* Убираем границу */
    appearance: none !important;  /* Убираем флаг */
    font-size: 14px !important;  /* Размер шрифта */
    color: wheat !important;  /* Цвет текста */
    font-weight: bold !important;  /* Жирный шрифт */
    padding: 5px 10px;  /* Немного отступов для удобства */
}

/* 2. Укороченные названия языков */
#google_translate_element .gt_float_switcher select option {
    text-transform: uppercase !important;  /* Преобразуем в верхний регистр */
    padding: 5px;
}

/* 3. Плавная смена цвета на золотой при наведении */
#google_translate_element .gt_float_switcher select:hover {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: gold !important;  /* Цвет фона при наведении */
    color: #fff !important;  /* Белый цвет текста при наведении */
}

/* 4. Без сдвига переключателя, просто меняем его стиль */
#google_translate_element .gt_float_switcher select:focus {
    background-color: gold !important;  /* Золотой фон при фокусе */
    color: #fff !important;  /* Белый текст */
    outline: none !important;  /* Убираем стандартный обвод */
}

#load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border-radius: 25px;
    background:  #c3a554;
    color: #164e16;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

#load-more:hover {
    background:  #164e16;
    color:  #c3a554;
}
.woocommerce table.shop_table {
    border-radius: 25px;
}
.product-name a {
    text-decoration: none;
    color: black;
}
.quantity-minus{
    width: 29px;
}
.quantity button{
    background:  #c3a554;
}
.actions{
    display: none;
}
/* Стиль кнопки удаления */
.product-remove a.remove {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ff4d4d; /* Красный фон */
    color: white; /* Белая иконка */
    border-radius: 50%;
    font-size: 20px;
    overflow: hidden;
    transition: transform 0.2s ease;
    cursor: pointer;
}

/* Псевдоэлемент для эффекта всплеска */
.product-remove a.remove::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.3); /* Полупрозрачный эффект */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Иконка внутри кнопки */
.product-remove a.remove i {
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease-in-out, color 0.3s ease-in-out;
}

/* Анимация при наведении */
.product-remove a.remove:hover {
    transform: scale(1.1);
}

.product-remove a.remove:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.product-remove a.remove:hover i {
    color: #fff; /* Иконка остаётся белой */
    transform: rotate(90deg);
}

/* Анимация нажатия */
.product-remove a.remove:active {
    transform: scale(0.9);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart h1{
    display: flex;
    justify-content: center;
}
.cart-collaterals{
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}
.checkout-button.button.alt.wc-forward {
    display: inline-block;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white !important;
    background-color: #ff3636 !important;
    border: 2px solid transparent;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.checkout-button.button.alt.wc-forward::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #ff3636, #6f00ff, #00f0ff, #ff00c8);
    background-size: 300% 300%;
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
    animation: auraMove 8s ease-in-out infinite;
}

@keyframes auraMove {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}


.checkout-button.button.alt.wc-forward:hover {
    background-color: #c3a554; /* Цвет при наведении */
    color: #164e16;
    transform: scale(1.05); /* Увеличение размера при наведении */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Тень при наведении */
}

.checkout-button.button.alt.wc-forward:focus {
    outline: none; /* Убираем стандартное обводку при фокусе */
    box-shadow: 0 0 0 4px rgba(52, 87, 41, 0.5); /* Эффект фокуса */
}

.checkout-button.button.alt.wc-forward:active {
    transform: scale(0.98); /* Эффект сжатия кнопки при нажатии */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Легкая тень при нажатии */
}
#cart_mob{
    display: none;
}
.page{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}
.page_text{
    max-width: 50%;
    -webkit-box-shadow: 0px 0px 30px -17px rgba(0, 0, 0, 0.75);
    background: white;
    border-radius: 10px;
    display: flex;
    margin: 0 auto;
    padding: 60px;
    flex-direction: column;
}
.gtranslate_wrapper{
    display: flex;
    gap: 10px;
    color: white;
    padding: 10px;
}

a.glink{
    color: wheat;
    padding: 10px 0px;
}
a.gt-current-lang{
    display: flex;
    color: #f6e7ca;
    gap: 10px;
    /* margin-right: 10px; */
    padding: 10px;
    justify-content: space-between;
}
.category-slider {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.category-item {
    text-align: center;
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
    text-decoration: none;
    background: #cf9d9d;
    transition: transform 0.3s;
}
.category-item a{
    text-decoration: none;
    color: white;
}
.category-item a h4{
    margin: 10px;
}
.category-item img {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Заполняет контейнер, обрезая лишнее */
    border-radius: 10px; /* Закругленные углы (по желанию) */
    transition: transform 0.3s;
}
.category-item img:hover {
    transform: scale(1.05);
}
.category-item:hover{
    transform: scale(1.05);
}
.custom-sorting {
    position: relative;
    display: inline-block;
    margin: 20px;
}

#sort-button {
    padding: 10px 8px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #879a68;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sort-button:hover {
    background-color: #b8d191;
}

#sort-menu {
    position: absolute;
    top: 100%;
    left: -25%;
    z-index: 999;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

#sort-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#sort-menu.show{
    background-color: #879a68;
}
#sort-menu li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}
#sort-menu a{
    text-decoration: none;
    color: white;
}
#sort-menu li:hover {
    background-color: #b8d191;
}
.sort-btn{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.buy_single{
    display: flex;
    background: #ef6060;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
#psg{
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    color: white;
}
.num_cat{
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eb9898;
    color: white;
    justify-content: center;
    align-items: center;
}
.category-dropdown {
    position: relative;
    display: flex;
    width: 220px;
    font-family: sans-serif;
    justify-content: center;
}

.category-menu-button {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #dfa3a3;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-menu-button .arrow {
    font-size: 14px;
}
.category-menu-button:hover{
    background-color: #f7baba;
}

.category-slider {
    display: flex;
    scrollbar-width: none; /* Firefox */
    flex-direction: column;
    position: absolute;
    margin: 0 auto;
    top: 100%;
    left: -20px;
    background: #dfa3a3;
    border: 1px solid #ccc;
    width: 250px;
    z-index: 1000;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.category-slider.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.clear-button {
    background: none;
    border: 1px solid #888;
    padding: 4px 10px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
}
.partner-text {
    font-size: 32px;
    font-weight: bold;
    color: white;
    padding: 1px 17px;
    position: relative;
    display: inline-block;
    background: #ff3636;
    border-radius: 10px;
    overflow: hidden;
}

/* Анимация градиента по тексту */
.partner-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff3636, #ed3a3a, #de4a4a, #fb0000);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 4s linear infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}

.category-item {
    background: #ff3636;
    padding: 10px 15px;
    cursor: pointer;
}

.category-item:hover {
    background-color: #ff3636;
}
.category-item a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.category-item.selected,
.category-item:has(a:focus) {
    background-color: #ff3636;
    color: white;
}

.category-item.selected a {
    color: white;
}
button[name="submit_review"]{
    background: #164e16;
    color: #c3a554;
    font-size: 16px;
    margin: 15px;
    padding: 14px;
    border-radius: 25px;
    transition: background 0.3s;
}
button[name="submit_review"]:hover{
    background: #c3a554;
    color: #164e16;
}
input::placeholder,
textarea::placeholder {
    color: #aaa;
    padding-left: 10px; /* отступ внутри поля */
    transform: translateY(2px); /* смещение вниз */
}
.review-form{
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
textarea[name="review_content"]{
    width: 260px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 13px;
}
input[name="review_title"]{
    width: 260px;
    height: 34px;
    border: 1px solid transparent;
    border-radius: 13px;
}
.marquee-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 60s linear infinite;
}

.review-item {
    min-width: 300px;
    max-width: 300px;
    margin-right: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.marquee-slider:hover .marquee-track {
    animation-play-state: paused;
    cursor: grab;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }

#ship-to-different-address h3{
    display: none !important;
}
