.children{
    list-style: none;
}
#glt-translate-trigger{
    position: sticky;
    width: 150px;
    height: 25px;
    text-align: center;
    margin-bottom: 150px !important;
}
#wp-comment-cookies-consent{
    margin-left: -47%;
}
#getIpButton{
    font-size: 12px;
    padding: 10px;
    margin-left: 10px;
}


@media (min-width: 1200px)
.contact__box {
    max-width: 100%;
}
.text__mail__box{
    max-width: 100%;
}
.content-area{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.contact-form input[type=email], .contact-form input[type=tel], .contact-form input[type=text], .contact-form input[type=url]{
    width: 100% !important;
}
.blog-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.comment-form-cookies-consent, .comment-subscription-form, .comment-subscription-form{
    display: none;
}

.slider__title{
    color: white;
}





code{
    padding: 1% 1% 1% 1% !important;
    background-color: black !important;
    color: wheat !important;
}





/* woocommerce-style.css */

/* woocommerce-shop.css */

/* ================================
   Общие Стили для Страницы Магазина
   ================================ */

.shop-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Фоновый цвет для секции магазина */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

/* ================================
   Боковая Панель Фильтров (Sidebar)
   ================================ */

.shop-sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.shop-sidebar .widget {
    margin-bottom: 30px;
}

.shop-sidebar .widget-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 15px;
}

/* ================================
   Контролы Магазина (Сортировка, Навигация)
   ================================ */

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-controls .woocommerce-result-count {
    font-size: 1rem;
    color: #6c757d;
}

.shop-controls .woocommerce-ordering {
    font-size: 1rem;
}

.shop-controls .woocommerce-ordering select {
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

/* ================================
   Сетка Продуктов
   ================================ */

.products-grid .product {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.products-grid .product .product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-grid .product .product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.products-grid .product .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.products-grid .product .product-card .card-body {
    padding: 15px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.products-grid .product .product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    flex: 1 1 auto;
}

.products-grid .product .product-card .price {
    font-size: 1rem;
    color: #28a745;
    margin-bottom: 10px;
}

.products-grid .product .product-card .button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
    font-size: 0.95rem;
}

.products-grid .product .product-card .button:hover {
    background-color: #218838;
}

/* ================================
   Пагинация
   ================================ */

.woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.woocommerce-pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.woocommerce-pagination ul li {
    display: inline;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span.current {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.woocommerce-pagination ul li a:hover {
    background-color: #28a745;
    color: #fff;
}

.woocommerce-pagination ul li span.current {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

/* ================================
   Адаптивные Стили
   ================================ */

@media (max-width: 992px) {
    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .shop-controls .woocommerce-ordering {
        width: 100%;
    }
}

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

    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .shop-controls .woocommerce-ordering select {
        width: 100%;
    }

    .products-grid .product .product-card img {
        height: 200px;
    }

    .shop-sidebar {
        margin-bottom: 20px;
    }
}

