/*
Theme Name: Meat store
Theme URI: http://myasnyi
Author: Ilya
Author URI: http://example.com/
Description: Meat store site
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, theme, etc
Text Domain: my-custom-theme
*/
body {
    margin: 0;
    overflow-x: hidden;
}
.burger-menu, .mobile-nav {
    display: none;
}
.ruslan-display-regular {
  font-family: "Ruslan Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.woocommerce #content {
    width: 100%;
}
.product-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3%;
}
.product-item {
    margin-bottom: 1%;
}
.product-item > a {
    font-family: 'Ruslan Display' !important;
    font-size: 32px !important;
    color: red;
}
.woocommerce #sidebar {
    display: none;
}
header { 
    margin-top: 40px;
}
.header-container {
    display: flex;
    justify-content: center;
}
.header-container > a > img {
    width: 682px;
    position: relative;
}
.Roboto-Slab {
    font-family: 'Roboto Slab';
}
.red-color {
    color: red;
}
nav {
    display: flex !important;
    padding: 2% 1%;
    justify-content: space-between;
} 
nav > ul {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    width: 55%;
    margin-right: 5%;
}
nav > ul > li {
    list-style-type: none;
    margin-right: 5%;
}
nav > ul > li:last-child {
    margin-right: 3%;
}
nav > ul > li > a {
    color: red;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.2s ease-in-out;
}
.footer-content-section > div > ul > li {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.2s ease-in-out;
    width: fit-content;
}
nav > .product-list > li > a::after {
    background-color: unset;
    transition: unset;
    height: unset;
    bottom: 0;
}
nav > ul > li > a::after, .footer-content-section > div > ul > li::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px; /* высота полоски */
    background-color: red; /* цвет полоски */
    transition: width 0.2s ease-in-out;
}
.footer-contacts > li::after {
    transition: unset !important;
    background-color: unset !important;
}
.footer-content-section > div > ul > li::after {
    bottom: 0;
}
nav > ul li a:hover::after, .footer-content-section > div > ul > li:hover::after {
    width: 100%;
}
.contact-info {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    padding-right: 5%;
}
.social-icons-container {
    width: 20%;
    margin-right: 10%;
    padding-left: 5%;
}
.social-icons-container > a {
    width: 25.75px;
    height: 25.75px;
    margin-right: 10px;
}
.contact-info > p {
    display: block;
    margin: 0;
    margin-right: 5%;
    font-weight: 500;
    font-size: 18px;
}
.contact-info > a {
    display: block;
    margin: 0;
    margin-right: 10px;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}
.contact-info > a > img {
    width: 30.75px;
    height: 30.75px;
    margin-right: 10px;
}
.page-option {
    position: relative;
    right: 44%
}
.page-option-blog {
    right: -5%;
    padding-top: 1%;
}
.page-option > a > h2{
    color: #FFFFFF;
    font-family: 'Roboto Slab';
    font-size: 20px;
    font-weight: 400;
}
.page-option > a {
    text-decoration: none;
    
}
.first-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    background-repeat: no-repeat;
    background-size: cover;
}

.meat-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2024/04/meat-front-page.png);
    background-size: cover;
    z-index: -1;
    border-bottom: 3px solid red
}

.meat-background::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); 
    position: absolute;
}

.content {
    position: relative;
    z-index: 1; 
    display: flex;
    align-items: center;
    flex-direction: column;
}
.border-red {
    border-radius: 25px;
    border: 2px solid red;
}
.border-text-container {
    margin-top: 10%;
    color: whitesmoke;
    width: fit-content;
    padding: 1% 2.5%;
    text-align: center;
}
.content > h1 {
    font-size: 70px;
    color: whitesmoke;
    text-align: center;
    margin: 0;
    width: 80%;
}
.default-text { 
    font-family: 'Roboto Slab';
    font-weight: 200;
    font-size: 35px;
    text-align: center;
    color: whitesmoke;
    margin: 0;
}
.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5%;
    margin-bottom: 10%;
}
.button-container > a {
    width: 45%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-decoration: none;
}
.submit_button {
    background-color: red;
    color: whitesmoke;
    border-radius: 5px;
    margin-right: 5%;
    padding: 3% 3%;
    border: 1px solid red;
    width: 50%;
    font-family: 'Roboto Slab';
    font-size: 25px;
    cursor: pointer;
}
.submit_button:hover {
    background-color: unset;
}
.second-section {
    position: relative;
    height: fit-content;
}
.graphic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1400px 1400px;
    z-index: -1;
    background-image: url(/wp-content/uploads/2024/04/raw-chicken-1.png);
    background-position: 0px -200px;
    background-repeat: no-repeat;
}
.graphic-background::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #323131, #131313);
    opacity: 95%;
    position: absolute;
    
}
.content-second-section {
    padding: 0 5%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.card-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.card-front-page {
    width: 20%;
    border-radius: 10px;
    border: 3px solid red;
    position: relative;
    top: -40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1% 1%;
}
.card-front-page-image-container {
    margin-top: 10%;
}
.card-front-page-image-container > img {
    height: 90px;
}
.card-front-page-header {
    font-family: 'Roboto Slab';
    font-size: 35px;
    color: red;
    font-weight: 500;
    text-align: center;
}
.card-front-page-paragraph {
    font-weight: 400;
    font-family: 'Roboto Slab';
    font-size: 16px;
    text-align: center;
    padding: 0 5%;
    margin-top: auto;
}
.express-delivery {
    margin-top: 0%;
}
.express-delivery-header {
    margin-top: 4%;
}
.row-wrap-card {
    flex-direction: row;
    flex-wrap: wrap;
}
.card-front-page-production {
    width: 40%;
    border: 3px solid white;
    border-radius: 10px;
    height: 320px;
    margin-bottom: 10%;
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
    background-position: center center;
}
@keyframes zoomBackground {
    0% {
        background-size: 100% 100%;
    }
    10% {
        background-size: 105%;
    }
    20% {
        background-size: 110%;
    }
    30% { 
        background-size: 115%;
    }
    40% {
        background-size: 120%;
    }
    50% {
        background-size: 125%;
    }
    60% {
        background-size: 130%;
    } 
    70% {
        background-size: 135%;
    }
    80% {
        background-size: 140%
    }
    90% {
        background-size: 145%
    }
    100% {
        background-size: 150%;
    }
}
.card-front-page-production:hover {
    animation: zoomBackground 0.3s forwards; /* Анимация зума */
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Тень с прозрачностью */
    opacity: 0; /* Скрываем оверлей по умолчанию */
    transition: opacity 0.2s ease;
    z-index: 1; /* Отображаем над фоновым изображением */
}
.card-front-page-production:hover .card-overlay {
    opacity: 1; /* Отображаем оверлей при наведении */
}

.card-front-page-production:hover {
    background-size: 140%; /* Увеличиваем фоновое изображение */
}

.view-products, h2 {
    position: relative;
    z-index: 2; /* Располагаем текст над оверлеем */
}
.card-front-page-production > h2 {
    font-size: 51px;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: whitesmoke;
    position: relative;
    top: 285px;
}
.card-front-page-production:hover {
    border: 3px solid red;
    background-size: 120% 120%;
}

.card-front-page-production .view-products {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    z-index: 2;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}
.view-products {
    opacity: 0;
}
.view-products {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-decoration: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}
.view-products:hover {
    display: block;
}
.semi-finished {
    background-image: url(/wp-content/uploads/2024/04/sausage-assortment-salami-pepperoni-ham-wooden-board.png);
}
.natural-meat {
    background-image: url(/wp-content/uploads/2024/04/top-view-meat-with-tomatoes-spices.png);
    background-position: -10px 0px;
}
.fish {
    background-image: url(/wp-content/uploads/2024/04/two-raw-seabass-with-spices-1.png);
    background-position: -5px 0px;
}
.cheese {
    background-image: url(/wp-content/uploads/2024/04/close-up-delicious-traditional-variety-cheese-table.png);
}
.bottom-image-background {
    background-image: url(/wp-content/uploads/2024/05/bottom-image-bg.png);
    width: 110%;
    height: 350px;
    position: relative;
    /* left: -10%; */
    top: -240px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 100% 95%;
}
.images-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5%;
    margin-bottom: 10%;
}

.image-wrapper {
    width: 15%;
    margin-bottom: 2%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
}
.top-image-background {
    background-image: url(/wp-content/uploads/2024/04/background-top.png);
    width: 115%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: 100% 110%;
    position: relative;
    bottom: -1px;
}
.chicken-background {
    background-image: url();
    height: 3100px;
    width: 100%;
    position: absolute;
    background-size: 1400px 1400px;
    background-repeat: no-repeat;
    top: -310px;
    left: 0%;
    background-color: #272727;
}
.chicken-background::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(182deg, #272727, #252525);
    opacity: 90%;
    position: absolute;
    top: 200px;
}
.third-section {
    position: relative;
    height: fit-content;
    background-color: #272727;
}
.third-section-content {
    padding: 0 5%;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-bottom: 7.5%
}
.caveat-display-regular {
    font-size: 51px;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: whitesmoke;
    text-align: center;
    margin-top: 0;
}
.text-align-start {
    text-align: start;
    font-size: 40px;
    margin-bottom: 0;
}
.questions-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.questions-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.questions-card {
    border: 3px solid red;
    width: 45%;
    padding: 1% 1%;
    position: relative;
    margin-bottom: 5%;
    border-radius: 5px;
    height: 70px;
    transition: height 0.5s ease;
    cursor: pointer; /* Добавляем курсор указатель */
}

.questions-card > h2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questions-card h2 img {
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}

.questions-card > p {
    font-size: 20px;
    font-family: 'Roboto Slab';
    font-weight: 400;
    color: whitesmoke;
    max-height: 0;
    transition: opacity 0.5s ease; /* Переход только для opacity */
    opacity: 0;
    display: none;
}

.questions-card.active > p {
    display: block;
    opacity: 1;
}
.about-us-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.about-us-image-container {
    border: 3px solid red;
    width: 45%;
    border-radius: 10px;
    height: fit-content;
}
.about-us-text-container {
    width: 50%;
}
.about-us-text-container > p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Roboto Slab';
    color: white;
    margin-bottom: 5%;
}
.about-us-text-container > h2 {
    position: relative;
    left: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 255px;
    
}
.about-us-text-container > h2 > a {
    text-decoration: none;
    font-family: 'Caveat';
    font-size: 35px;
    color: red;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.about-us-text-container h2 img {
    position: absolute;
    right: 0;
    cursor: pointer;
}
.about-us-image-container > img {
    width: 100%;
    height: 90%;
}
.seo-text { 
    font-size: 20px;
    font-weight: 300;
    font-family: 'Roboto Slab';
    color: white;
    margin-bottom: 2%;
}
.seo-text:last-child {
    margin-bottom: 7%;
}

/* page-production.php */

.production-first-section {
    position: relative;
    height: 340px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
/* page-about-us.php */

.page-about-us {
    background-image: url(/wp-content/uploads/2024/04/photo_2024-03-14_10-51-43-1.png);
}
.page-about-us-text-section {
    background-color: #252525;
}
.page-about-us-container {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    padding-top: 5%;
}
.page-about-us-text-container {
    width: 45%;
}
.page-about-us-text-container > p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Roboto Slab';
    color: white;
    margin-bottom: 1.5%;
}
.page-about-us-img-container {
    width: 50%;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    height: fit-content;
}
.page-about-us-img-container > img {
    width: 100%;
    height: 90%;
}
.page-about-us-just-text {
    width: 90%;
    padding: 5% 5%;
}
.page-about-us-just-text > p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Roboto Slab';
    color: white;
    margin-bottom: 1.5%;
}
.our-shops-media-main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5% 5%;
    padding-bottom: 15%;
}
.our-shops-media {
    width: 23%;
}
.our-shops-media > a > p {
    font-size: 24px;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: whitesmoke;
}
.our-shops-media > div > img {
    width: 100%;
    height: 100%;
}
.learn-more {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 300px;
}
.learn-more > h2 > a {
    text-decoration: none;
        color: red;
}
.learn-more > h2 {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    margin-bottom: 0;
}

/* footer.php */
footer {
    background-image: url(/wp-content/uploads/2024/04/background-white-footer-up.png);
    position: relative;
    background-repeat: no-repeat;
    color: red;
    background-size: 120% 100%;
    top: -190px;
    background-position: center;
}
.footer-content-section {
    padding-top: 4%;
    padding-right: 5%;
    padding-left: 5%;
    display: flex;
    justify-content: space-between;
}
.footer-image-container {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.footer-image-container > h2 {
    font-family: 'Ruslan Display';
    font-size: 100px;
    font-weight: lighter;
}
.footer-image-container > img {
    width: 100%;
    height: 25%;
}
.footer-ul {
    padding-left: 0;
}
.footer-ul > li {
    list-style-type: none;
    font-family: 'Roboto Slab';
    font-size: 22px;
    font-weight: 400;
}
.footer-ul > li > a {
    text-decoration: none;
    color: red;
}
.footer-header { 
    font-size: 32px;
    margin-bottom: 0;
}
.footer-ul > li > img {
    position: relative;
    top: 7px;
}
.footer-social-icons-container > a {
    text-decoration: none;
}

/* product pages */
.product-header-image { 
    width: 110%;
    position: relative;
    left: -10%;
}
.product-header-image > img {
    width: 110%;
    height: 600px;
}
.product-header-title-ruslan {
    font-family: 'Ruslan Display';
    font-size: 70px !important;
    color: white !important;
    position: absolute;
    top: 35%;
    text-align: center;
    width: 100%;
    font-weight: 400;
}
.woocommerce-breadcrumb {
    justify-content: flex-start;
    padding-left: 5% !important;
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: #E3000F;
}
.woocommerce-breadcrumb-subcategory a.active {
    color: white;
    background-color: #2C2C2C;
    padding: 10px 10px;
    border-radius: 5px;
}
.woocommerce-breadcrumb > a {
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: #E3000F;
    text-decoration: none;
    cursor: pointer;
}
.woocommerce-breadcrumb > a:hover {
    color: black;
}
.woocommerce-breadcrumb-subcategory {
    padding-top: 0;
}
.product-list-subcat {
    margin-top: 2%
}
.woocommerce-result-count {
    display: none;
}
.woocommerce-ordering {
    display: none;    
}
#subcategory-template-page {
    display: flex;
    flex-wrap: wrap;
}
#subcategory-template-page > li {
    margin-bottom: 5%;
    border: 3px solid red;
    padding-bottom: 2% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    width: 21.7% !important;
    height: 595px !important;
    overflow: hidden;
    padding-bottom: 0 !important;
}
#subcategory-template-page > li:hover {
    border: 3px solid black;
}
.woocommerce-products-header__title {
    text-align: center;
    font-size: 60px;
    color:  #E3000F;
    font-family: 'Ruslan Display';
    margin: 0;
}
.product-list-container {
    height: fit-content;
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
}
ul.products > li > span {
    font-size: 20px !important;
    font-family: 'Roboto Slab';
    color: black !important;
    padding-left: 2%;
}
ul.products > li > a >  span {
    font-size: 20px !important;
    font-family: 'Roboto Slab';
    color: black !important;
    padding-left: 2%;
}
ul.products > li > a > img {
    margin-bottom: 0 !important;
}
.product > a > img {
    width: 100% !important;
    height: 350px !important;
}

.product-custom-buttons-container {
    display: none !important;
    width: 101%;
    align-items: center;
    /* margin-top: auto; */
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 5%;
}
.custom-add-to-cart-button {
    background-color: red;
    color: whitesmoke;
    border-radius: 5px;
    margin-right: 5%;
    padding: 2% 2%;
    border: 1px solid red;
    width: 100%;
    font-family: 'Roboto Slab';
    font-size: 30px;
    height: fit-content;
    position: relative;
    text-align: center;
}
.custom-add-to-cart-button:hover {
    background-color: unset;
    color: black;
}
.custom-view-button > img {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 0 !important;
}
ul.products {
    padding: 3% 5% !important;
}
ul.products > li {
    border: 3px solid red;
    padding-bottom: 2% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    width: 21.7% !important;
    height: 600px !important;
    overflow: hidden;
    padding-bottom: 0 !important;
    float: none !important;
}
ul.products > li:hover {
    border: 3px solid black;
}
ul.products > li > a > h2 {
    font-family: 'Ruslan Display';
    font-size: 32px;
    color: red ;
    padding: 0 0 0 2% !important;
    margin-top: 1% !important;
}
ul.products > li > h2 {
    display: none;
}
.product-custom-order-info {
    font-size: 16px !important;
    color: gray !important;
    font-family: 'Roboto Slab';
    padding-left: 2%;
}
ul.products > li > a {
    width: 100% !important;
}
.star-rating span::before {
    padding-left: 2%;
}
.woocommerce .star-rating::before {
    left: 6px;
}
.woocommerce .star-rating span::before {
    left: 5px
}
.price-notification {
    padding-left: 1%;
    font-family: 'Roboto Slab';
    color: #E3000F;
    font-size: 12px;
}
.star-rating {
    width: 100px !important;
    margin-top: 2% !important;
    margin-bottom: 2% !important;
}
/* Карточка товара */

.product-top-section-container {
    display: flex;
    justify-content: center;
}
.product-top-section { 
    position: relative;
    padding: 5% 5%;
    display: flex;
    justify-content: space-between;
    width: 45%;
    height: fit-content;
}
.woocommerce-product-gallery{
    width: fit-content;
    margin-right: 5%;
    height: initial;
}
.woocommerce-product-gallery__wrapper {
    height: 400px;
    width: 400px;
}
.woocommerce-product-gallery__image {
    border: 3px solid red;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.woocommerce-product-gallery__image > a {
    display: block;
    width: 100%;
    height: 100%;
}
.woocommerce-product-gallery__image > a > img {
    height: 105%;
    width: 105%;
    position: relative;
    top: -5px;
    left: -5px;
}
.product_title {
    font-family: 'Ruslan Display';
    color: red;
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 0;
    margin-top: 0;
}
.woocommerce-product-details__short-description > h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Roboto Slab';
    font-size: 26px;
}
.woocommerce-product-details__short-description > p {
    margin-top: 0;
    font-family: 'Roboto Slab';
    font-size: 14px;
    color: black;
    font-weight: 400;
}
.availability-in-stock {
    color: green;
}

.availability-out-of-stock {
    color: red;
}

.product-availability {
    color: black;
    font-family: 'Roboto Slab';
    font-size: 26px;
}
.price {
    font-family: 'Roboto Slab';
    font-size: 26px;
}
.custom-quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.qty-label {
    font-family: 'Roboto Slab';
    font-size: 26px;
}
.custom-quantity > input {
    height: 25px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
    font-family: 'Roboto Slab';
    font-size: 20px;
    margin-left: 5%;
    width: 50px;
}
.single_add_to_cart_button {
    margin-top: 30px;
    background-color: red;
    border-radius: 10px;
    border: 2px solid red;
    font-size: 25px;
    font-family: 'Roboto Slab';
    color: white;
    padding: 2% 3%;
    cursor: pointer;
}
.single_add_to_cart_button:hover {
    background-color: unset;
    color: black;
}
.related > h2 {
    font-family: 'Ruslan Display';
    color: red;
    font-weight: 400;
    font-size: 70px;
    text-align: center;
}
.related > ul {
    display: flex;
    justify-content: space-between;
}
.wc-tabs-wrapper > ul {
    display: none;
}
.woocommerce-Reviews-title {
    font-family: 'Ruslan Display';
    color: red;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
}
/* .woocommerce-noreviews {
    display: none;
} */
.woocommerce-Tabs-panel:first-of-type {
    display: none !important;
}
.woocommerce-LoopProduct-link {
    text-decoration: none;
}
.woocommerce-LoopProduct-link:hover {
    text-decoration: none;
}
.custom-add-to-cart-button {
    text-decoration: none;
}
.custom-add-to-cart-button:hover {
    text-decoration: none;
}
/* #comments {
    display: flex;
    justify-content: space-between;
} */
.star-rating {
    display: none;
}
.woocommerce-review-link {
    display: none;
}
#comments {
    margin-bottom: 10%;
}

/* блог */
.post-content {
    background-image: url(/wp-content/uploads/2024/04/Group-249.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
}
.post-content > h1 {
    font-family: 'Ruslan Display';
    color: white;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
    padding-top: 5%;
}
.entry-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2% 15%;
    padding-bottom: 15%;
}
.entry-content > p {
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: whitesmoke;
    font-weight: 300;
}
.entry-content > ul {
    width: 100%;
    padding: 0;
}
.entry-content > ul > li {
    list-style-type: none;
    color: white;
    font-size: 24px;
    font-family: 'Roboto Slab';
}
.blog-container {
    background-image: url(/wp-content/uploads/2024/04/Group-249.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 10%;
}
.blog-posts {
    padding: 2% 5%;
    padding-bottom: 10%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-right: 2% !important;
}
.post {
    width: 21%;
    margin-right: 4%;
    margin-bottom: 7%;
}
.post > img {
    width: 100%;
    height: 240px;
}
.post > h2 > a {
    text-decoration: none;
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: whitesmoke;
}
.entry {
    font-family: 'Roboto Slab';
    font-size: 14px;
    color: whitesmoke;
    font-weight: 300;
}
.post-meta {
    margin-top: 2%;
    display: flex;
    position: relative;
    align-items: center;
}
.post-meta > span {
    font-family: 'Roboto Slab';
    font-size: 14px;
    color: whitesmoke;
    font-weight: 300;
    position: relative;
    top: 7px;
}
.product-header-image-container {
    overflow-x: hidden;
}
.more-link {
    text-decoration: none;
    position: relative;
    margin-left: auto;
    color: red;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    margin-bottom: 0;
}
.more-link > img {
    top: 11px;
    position: relative;
}
.woocommerce-message {
    border: none;
    display: none;
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: red;
    position: relative;
    background-color: unset;
    position: relative;
    padding-left: 0;
}
.woocommerce-message::before {
    display: none;
}
.wc-forward {
    text-decoration: none;
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: red;
    position: relative;
    right: 40%;
}
.wc-forward:hover {
    color: black;
}
.woocommerce-column__title {
    color: red;
    font-family: 'Roboto Slab';
    padding-left: 2.5%;
}
.woocommerce-customer-details > address {
    color: red;
    font-size: 16px;
    font-family: 'Roboto Slab';
}

/* user-account */
.my-account-sidebar {
    background-color: #272727;
    border: 2px solid red;
    width: 25%;
    position: relative;
    height: fit-content;
}
.my-account-sidebar-content {
    position: relative;
    left: 40%;
    margin-top: auto;
    bottom: 275px;
    width: fit-content;
}
.my-account-header {
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: whitesmoke;
    margin-bottom: 2.5%;
}
.my-account-sidebar-content > ul {
    padding-left: 5%;
    margin-top: 0;
}
.my-account-sidebar-content > ul > li {
    list-style-type: none;
    border-bottom: 1px solid #E3000F;
    padding: 5% 0;
}
.my-account-sidebar-content > ul > li > a {
    font-family: 'Roboto Slab';
    font-size: 22px;
    color: white;
    font-weight: 300;
    text-decoration: none;
}
.my-account-sidebar-content > ul > li > a:hover {
    color: red;
}
.my-account-main-container {
    display: flex;
    margin-bottom: 5%;
    padding-bottom: 10%;
}
.woocommerce-ResetPassword {
    margin-bottom: 10%;
    padding: 0 5%;
}
.woocommerce-ResetPassword p {
    font-family: 'Roboto Slab';
}
.woocommerce-ResetPassword input {
    border-radius: 5px;
    border: 2px solid red;
    padding: 1% 2%;
    font-size: 16px;
    font-family: 'Roboto Slab'
}
.woocommerce-MyAccount-content {
    width: 50%;
    margin-left: 5%;
    padding-top: 1.5%;
}
.edit-accout-header {
    font-family: 'Ruslan Display';
    color: #E3000F;
    font-size: 50px;
}
.my-account-input {
    height: 50px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
}
.my-account-label {
    font-size: 14px;
    font-family: 'Roboto Slab';
    color: #000000;
    opacity: 20%;
}
.my-account-form-container {
    width: 48% !important;
}
.my-account-form-change-main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.my-account-submit-button {
    background-color: #E3000F !important;
    border: 2px solid #E3000F !important;
    font-family: 'Roboto Slab' !important;
    font-size: 20px !important;
    border-radius: 5px !important;
    color: white !important;
    font-weight: 400 !important;
}
.my-account-submit-button:hover {
    background-color: unset !important;
    color: black !important;
}
.address-header {
    font-family: 'Ruslan Display';
    color: #E3000F;
    font-size: 50px;
}
.woocommerce-address-fields__field-wrapper > p > label {
    font-size: 14px;
    font-family: 'Roboto Slab';
    color: #000000;
    opacity: 20%;
}
.woocommerce-address-fields__field-wrapper > p > span > input {
    height: 50px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
    margin-bottom: 3%;
}
.woocommerce-address-fields__field-wrapper > p > span > span {
    height: 50px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
    margin-bottom: 3%;
}
.select2-selection--single {
    border: none !important; 
    position: relative;
    top: -50%;
    background-color: unset !important;
}
#_state_field {
    height: 75px;
}
#_country_field {
    height: 75px;
}
#select2-_country-container {
    padding-left: 0;
}
#select2-_state-container {
    padding-left: 0;
}
#togglePasswordChange {
    border: none !important;
    font-family: 'Roboto Slab' !important;
    font-size: 20px !important;
    border-radius: 5px !important;
    color: black !important;
    font-weight: 400 !important;
    background-color: unset !important;
    cursor: pointer;
}
#passwordChangeForm {
    border: none;
    padding: 0;
}
.my-account-input {
    width: 100%;
}
.edit-account-header-pass {
    margin-bottom: 0;
}
.edit-account-header-pass:hover {
    color: black;
}
.woocommerce-MyAccount-content > p {
    display: none;
}
#my-account-billing {
    display: none;
}
#my-account-shipping {
    float: unset;
    display: block !important;
}
.woocommerce-Address-title > h3 {
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: red;
    margin-bottom: 0;
}
.woocommerce-Address-title > a {
    text-decoration: none;
    font-family: 'Roboto Slab';
    color: red;
    font-size: 24px;
    font-weight: 400;
}
.woocommerce-Address-title > a:hover {
    color: black;
}
#my-account-shipping > address {
    display: none;
}
#my-account-shipping {
    width: 100% !important;
}
.myaccount-button {
    font-size: 25px !important;
    font-family: 'Roboto Slab' !important;
    background-color: #E3000F !important;
    border: 2px solid #E3000F !important; 
    color: white !important;
    border-radius: 5px !important;
}
.myaccount-button:hover {
    background-color: unset !important;
    color: white !important;
}
#select2-shipping_country-container {
    padding-left: 0;
}
#select2-shipping_state-container {
    padding-left: 0;
}
.my-account-order-details {
    display: flex;
    margin-bottom: 3%;
}
.order-card {
    border: 2px solid #E3000F;
    margin-bottom: 7%;
    border-radius: 10px;
    padding: 4% 2%;
    padding-bottom: 0;
}
.my-account-order-details > img {
    border: 2px solid #E3000F;
    border-radius: 10px;
    width: 20%;
}
.my-account-orders-history-price-card {
    padding-left: 5%;
}
.my-account-orders-history-price-card > h2 {
    font-family: 'Ruslan Display';
    font-size: 32px;
    color: #E3000F;
    margin: 0;
}
.my-account-orders-history-price-card > p {
    font-family: 'Roboto Slab';
    font-size: 20px;
    margin: 5%;
}
#payed { 
    color: #E3000F;
    font-weight: 500;
}
.my-account-orders-history > p {
    font-family: 'Roboto Slab';
    font-size: 20px;
    font-weight: 300;
    color: #000000;
    opacity: 50%;
    text-align: right;
}
.my-account-orders-history > h4 {
    font-family: 'Roboto Slab';
    font-size: 20px;
    font-weight: 300;
    text-align: right;
    margin-bottom: auto;
}
.status-cancelled {
    text-decoration: line-through;
}

.status-warning {
    color: orange;
}

.status-success {
    color: green;
}

.status-danger {
    color: red;
}
.cart-bottom-margin {
    width: fit-content !important;
    border: 2px solid #E3000F !important;
    border-radius: 10px !important;
    padding: 2% 2%;
    display: flex;
    justify-content: center;
    height: fit-content;
}
.cart-my-goods-header {
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: red;
    text-align: center;
}
.flex-cart-item {
    display: flex;
    border: 2px solid #E3000F;
    border-radius: 10px;
    margin-bottom: 2.5%;
    padding: 2.5% 2.5%;
    justify-content: space-between;
}
.woocommerce-cart-form {
    width: 65%;
}
.my-cart-main-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5%;
    padding: 2% 5%;
    padding-bottom: 10%;
}
.cart-item-thumbnail {
    display: flex;
}
.cart-item-details {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 5%;
}
.cart-item-name {
    font-family: 'Ruslan Display';
    font-size: 32px;
    color: red;
    margin-bottom: 0;
}
.cart-item-quantity > input {
    border-radius: 6px;
    border: 1px solid red;
    width: 40px;
    text-align: center;
    font-family: 'Roboto Slab';
    -moz-appearance: textfield; /* Для Firefox */
    -webkit-appearance: none; /* Для Chrome, Safari, Edge */
    appearance: none; /* Для стандартных браузеров */
}
.cart-item-quantity > input::-webkit-outer-spin-button,
.cart-item-quantity > input::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Убираем спиннеры для WebKit-браузеров (Chrome, Safari) */
    margin: 0;
}
.cart-item-price {
    font-family: 'Roboto Slab';
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    text-wrap: nowrap;
}
.cart-item-thumbnail > a > img {
    width: 100%;
    height: 100%;
}
.cart-item-thumbnail > a {
    border: 2px solid #E3000F;
    border-radius: 10px;
    overflow: hidden;
    height: 166px;
}
.quantity-minus, .quantity-plus {
    cursor: pointer;
    padding: 1% 1%;
    margin: 0 5px;
    align-items: center;
    border: 1px solid #ccc;
    background-color: red !important;
    border: none !important;
    color: white !important;
    border-radius: 5px;
    height: 20px;
    width: 20px;
}
.wc-proceed-to-checkout {
    position: relative;
    left: 63%;

}
.wc-proceed-to-checkout > a {
    background-color: #E3000F !important;
    border: 2px solid #E3000F !important;
    border-radius: 10px !important;
    color: white;
}
.wc-proceed-to-checkout > a:hover {
    background-color: unset !important;
    color: black !important;
}
.cart_totals  {
    width: 100% !important;
}
.cart_totals > h2 {
    font-family: 'Ruslan Display';
    font-size: 32px;
    color: red;
    text-align: center;
}
.cart_totals > table {
    border: none !important;
}
.cart-subtotal > th, td {
    font-family: 'Roboto Slab';
    font-size: 18px;
    font-weight: 400;
}
#ship-to-different-address {
    display: none;
}
#ship-to-different-address > label > span {
    font-family: 'Roboto Slab';
    font-size: 18px;
    font-weight: 400;
}
.checkout-wrapper {
    margin-bottom: 5%;
}
.hidden {
    display: none;
}
#billing_country_field {
    display: none;
}
#billing_address_1_field {
    display: none !important;
}
#billing_address_2_field {
    display: none !important;
}
#billing_city_field {
    display: none !important;
}
#billing_state_field {
    display: none !important;
}
#billing_postcode_field {
    display: none !important;
}
.woocommerce-order {
    padding: 2% 2%;
}
.woocommerce-order > p {
    text-align: center;
    font-family: 'Roboto Slab';
    font-size: 32px;
    color: red;
}
.woocommerce-thankyou-order-received, .woocommerce-order-details__title {
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: red;
    text-align: center;
}
.woocommerce-thankyou-order-details{ 
    display: flex;
    justify-content: center;
}
.woocommerce-thankyou-order-details > li {
    font-family: 'Roboto Slab';
    font-size: 32px;
    color: red;
    text-align: center;
}
.woocommerce-order-details > table > thead {
    display: none;
}
.woocommerce-order-details {
    margin-bottom: 10% !important;
}
.woocommerce-order-details > table {
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: red;
    border: none !important;
}
.woocommerce-table__product-name > a {
    text-decoration: none;
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: red;
}
.woocommerce-column--billing-address {
    display: none !important;
}
.woocommerce-customer-details {
    display: none;
}
.woocommerce-column--shipping-address {
    float: left !important;
}
.woocommerce-column--shipping-address > h2 {
    text-decoration: none;
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: #E3000F;
}
.woocommerce-column--shipping-address > address {
    text-decoration: none;
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: #E3000F;
}
.woocommerce-form-coupon-toggle {
    display: none !important;
}
.contact-info-checkout {
    font-size: 18px;
    color: #E3000F;
    font-family: 'Roboto Slab';
}
.checkout-wrapper {
    padding: 2% 5%;
    padding-bottom: 10% !important;
}
.checkout-wrapper-header {
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: #E3000F;
    text-align: center;
    margin-top: 0;
}
.woocommerce-billing-fields__field-wrapper > p > label, .woocommerce-shipping-fields__field-wrapper > p > label, .woocommerce-additional-fields__field-wrapper > p > label, #custom_delivery_date_field label {
    font-size: 14px;
    font-family: 'Roboto Slab';
    color: #000000;
    opacity: 20%;
}
.woocommerce-billing-fields__field-wrapper > p > span > input, .woocommerce-shipping-fields__field-wrapper > p > span > input, .woocommerce-shipping-fields__field-wrapper > p > span > span, .woocommerce-additional-fields__field-wrapper > p > span > textarea, #custom_delivery_date_field input {
    height: 50px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
}
.woocommerce-shipping-methods {
    font-size: 18px;
    color: #E3000F;
    font-family: 'Roboto Slab';
    font-weight: 500;
    border-bottom: 0.5px solid rgb(211, 209, 209);
}
#shipping_method {
    display: flex;
    justify-content: flex-start;
}
#shipping_method > li {
    margin-right: 5% !important;
    display: flex;
    align-items: center;
}
#select2-shipping_state-container, #select2-shipping_country-container {
    position: relative;
    top: 10px;
}
.cart-item-checkout {
    display: flex;
    border: 2px solid #E3000F;
    padding: 2% 2%;
    border-radius: 10px;
    margin-bottom: 2%;
}
.cart-item-checkout > div > img {
    border: 2px solid #E3000F;
    height: 160px;
    width: 160px;
    border-radius: 10px;
}
.cart-item-checkout-remove {
    margin-left: auto;
}
.recommended-product-container {
    display: flex;
    justify-content: space-between;
}
.recommended-product-container > li {
    padding-top: 0 !important;
    border: 3px solid red;
    padding-bottom: 2% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    overflow: hidden;
    width: 44%;
    height: 600px;
}
.recommended-product-container > li:hover {
    border: 3px solid black;
}
.recommended-product-container > li > a > div > img {
    height: 321px !important;
}
.recommended-product-container > li > a {
    width: 100%;
}
.recommended-product-container > li > div {
    padding-left: 2%;
}
.recommended-product-container > li > a > h2 {
    font-family: 'Ruslan Display';
    font-size: 28px;
    color: #E3000F;
    margin-top: 0;
    padding-left: 2%;
    margin-bottom: 2%;
}
.recommended-product-container > li > a > span {
    font-family: 'Roboto Slab';
    font-size: 20px;
    color: black;
    font-weight: 600;
    padding-left: 2%;
}
.custom-image-wrapper {
    height: 335px;
}
.recommended-product-container > li > a > div {
    padding-left: 2%;
}
.recommended-product-container > li > a > .custom-image-wrapper {
    padding-left: 0 !important;
    width: 100%;
    height: 320px !important;
}
.custom-image-wrapper > img {
    width: 100%;
    height: 100% !important;
}

.recommended-product-container .product-custom-order-info {
    padding-left: 0;
}
#order_review > table {
    border: none !important;
    font-family: 'Roboto Slab';
    font-weight: 400 !important;
}
.cart-subtotal > th, .cart-discount > th > .order-total > th {
    font-family: 'Roboto Slab';
    font-weight: 400 !important;
}
#payment {
    background-color: unset !important;
}
.wc_payment_methods {
    display: flex;
}
.wc_payment_methods > li {
    margin-right: 5% !important;
}
.wc_payment_methods > li > label {
    font-family: 'Roboto Slab';
    font-size: 16px;
}
#place_order {
    float: left !important;
    background-color: #E3000F !important;
    border: 2px solid #E3000F !important;
    border-radius: 10px !important;
    color: white !important;
    height: 58px;
    font-family: 'Roboto Slab';
    font-size: 18px;
}
#place_order:hover {
    background-color: unset !important;
    color: black !important;
}
.woocommerce-privacy-policy-text > img {
    width: 24px !important;
    height: 24px !important; 
}
.woocommerce-privacy-policy-text {
display: flex;
align-items: center;
}
.woocommerce-privacy-policy-text > p {
    font-family: 'Roboto Slab';
    color: #E3000F;
    font-size: 14px;
}
.my-account-order-details > img {
    margin-bottom: 2%;
}
#order-details-section {
    height: fit-content;
}
#order-details-section > h2 {
    text-align: center;
    font-family: 'Ruslan Display';
    color: white;
    font-size: 70px;
    margin-top: 0;
    padding-top: 5%;
}
#order-details-text-container {
    padding: 2.5% 7.5% 15% 7.5%;
    display: flex;
    justify-content: space-between;
}
#order-details-text-container > p {
    width: 48%;
    color: white;
    font-family: 'Roboto Slab';
    font-size: 20px;
    font-weight: 300;
}
#contacts-page, #order-details-section{
    background-repeat: no-repeat;
    background-size: cover;
}
#contacts-page {
    padding-bottom: 10%;
}
#contacts-page > h2 {
    text-align: center;
    font-family: 'Ruslan Display';
    color: white;
    font-size: 70px;
    margin-top: 0;
    padding-top: 5%;
}
#contacts-page-main-container {
    padding: 5% 5%;
    display: flex;
    justify-content: space-between;
}
#contacts-page-container {
    width: 35%;
    border: 2px solid #E3000F;
    border-radius: 10px;
    padding: 2.5% 2.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#contacts-page-phone-subcontainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contacts-page-phone-subcontainer > p {
    width: 50%;
    display: flex;
    align-items: center;
}
#contacts-page-phone-subcontainer > p > span, #contacts-page-worktime-container > p  {
    padding-left: 5%;
    color: white;
    font-family: 'Roboto Slab';
    font-size: 26px;
}
#contacts-page-worktime-main-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#contacts-page-worktime-container {
    width: 50%;
}
#contacts-page-worktime-container > p {
    font-size: 18px;
}
#social-icons-contacts-container {
    width: 50%;
    display: flex;
    align-items: center;
}
#social-icons-contacts-container > a {
    margin-right: 5%;
}
#customer_login {
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10%;
}
.u-column1, .u-column2 {
    display: none; /* Изначально скрыть обе формы */
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
}
#login-form-custom > h2, #register_form_container > h2 {
    text-align: center;
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: #E3000F;
    margin-bottom: 0;
}
.woocommerce-form-login, .woocommerce-form-register {
    border: 2px solid #E3000F !important;
}

.woocommerce-form-login > p > label, .woocommerce-form-register > p > label {
font-size: 14px;
font-family: 'Roboto Slab';
color: #000000;
opacity: 20%;
}
.woocommerce-form-login > p > input, .woocommerce-form-login > p > span > input, .woocommerce-form-register > p > input, .woocommerce-form-register > p > span > input  {
height: 50px;
border: 1.5px solid #E3000F;
border-radius: 10px;
padding: 2% 2%;
}
.woocommerce-form-login__rememberme > span {
    color: black;
    opacity: 100% !important;
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit, .woocommerce-cart-empty > a {
    background-color: #E3000F !important;
    border: 2px solid #E3000F !important;
    border-radius: 10px !important;
    color: white !important;
    font-family: 'Roboto Slab';
    font-size: 18px;
}
.woocommerce-form-login__submit:hover, .woocommerce-form-register__submit:hover, .woocommerce-cart-empty > a:hover {
    background-color: unset !important;
    color: black !important;
}
.woocommerce-LostPassword > a, .woocommerce-register-link > a {
    font-size: 14px;
    font-family: 'Roboto Slab';
    color: #000000;
}
.woocommerce-cart-empty { 
    margin-bottom: 5%;
}
.woocommerce-cart-empty > h2 {
    text-align: center;
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: #E3000F;
}
.woocommerce-cart-empty > a {
    position: relative !important;
    left: 45% !important;
}
#shipping_country_field > span > span > span > span > span, #shipping_state_field > span > span > span > span > span {
    top: 0;
}
.cart-count-mobile-burger {
    display: none;
}

/* reviews */
.comment-form-rating, .comment-form-comment, #rating {
    font-family: 'Roboto Slab';
    font-size: 24px;
    color: red;
}
#reply-title { 
    display: none !important;
}
#rating, #comment {
    margin-left: 1%;
    border: 1px solid red;
    border-radius: 10px;
}
#commentform {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.comment-form-rating, .comment-form-comment {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.comment-form-comment {
    flex-direction: column;
}
.comment-form-comment > label {
    text-align: center;
}
#comment {
    margin-left: 0;
    width: 60%;
    border: 2px solid red;
    height: 60px;
}
.form-submit > input {
    border-radius: 5px;
    margin-right: 5%;
    padding: 5% 5%;
    border: 1px solid red;
    width: fit-content;
    font-family: 'Roboto Slab';
    font-size: 20px;
    height: fit-content;
    position: relative;
    background-color: red;
    color: white;
    cursor: pointer;
}
.form-submit > input:hover {
    background-color: unset;
    color: black;
}
.commentlist {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 !important;
}
.product-custom-meta-product-page {
    padding-left: 0 !important;
}
.commentlist > li {
    width: 25% !important;
    border: 2px solid red;
    border-radius: 10px;
    margin-right: 4%;
    list-style-type: none;
    padding: 2% 2%;
    margin-bottom: 5%;
}
.woocommerce-review__verified {
    display: none;
}
.comment-form-comment > label > span, .comment-form-rating > label > span, .comment-form-comment > label {
    display: none !important;
}
.recommended-product-container .card-count-input-quantity {
    width: 95%;
    margin-bottom: 3%;
}
#shipping_country_field {
    display: none !important;
}
#reviews {
    padding: 0 5%;
}
.product-custom-buttons-container > a {
    display: none;
}
.custom-add-to-cart-button {
    display: block !important;
}
.custom-view-button { 
    display: block !important;
}
.cart-count {
    /* position: relative; */
    top: -25px;
    right: -5px;
    background-color: #E3000F;
    color: white;
    border: 2px solid #d2d2d2;
    border-radius: 50%;
    /* padding: 3px 6px; */
    font-size: 12px;
    font-weight: bold;
    font-family: 'Roboto Slab';
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    position: absolute;
}
.recommended-product-container .content-input-button {
    margin-left: 2%;
}
.recommended-product-container .card-count-input-form {
    position: relative;
}
.product-search-container {
    margin: 20px 0;
    position: relative;
    width: 30%;
    padding-left: 5%;
    display: flex;
}
.search-image {
    position: relative;
    left: -10px;
    width: 10%;
}
#product-search {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    width: 100%;
    border: 2px solid #E3000F;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 14%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000;
    display: none;
    margin-top: 2%;
    width: 100%;
}

.search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 300px;
    overflow-y: scroll;
}

.search-results li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.search-results li:last-child {
    border-bottom: none;
}

.search-results img {
    max-width: 50px;
    margin-right: 10px;
}

.search-results a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.search-results a:hover {
    background-color: #f0f0f0;
}

.search-results .product-title {
    font-size: 16px;
    margin: 0;
    font-family: 'Ruslan Display';
    color: #E3000F;
}

.search-results .product-price {
    margin-left: auto;
    font-weight: bold;
    font-family: 'Roboto Slab';
}
.product-search-container-header {
    width: 100%;
    margin: 20px 0;
    position: relative;
    margin-top: 0;
    display: flex;
}
.product-search-container-header #product-search-header {
    width: 43%;
    left: 27%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    border: 2px solid red;
}
.search-image {
    width: 42px;
    height: 42px;
}
.product-search-container-header #search-results-header {
    width: 44.7%;
    left: 27%;
    margin-top: 0.5%;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1000;
    display: none;
}
.search-results-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 300px;
    overflow-y: scroll;
}

.search-results-header li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.search-results-header li:last-child {
    border-bottom: none;
}

.search-results-header img {
    max-width: 50px;
    margin-right: 10px;
}

.search-results-header a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.search-results-header a:hover {
    background-color: #f0f0f0;
}

.search-results-header .product-title-header {
    font-size: 14px;
    margin: 0;
    font-family: 'Ruslan Display';
    color: #E3000F;
}

.search-results-header .product-price-header {
    margin-left: auto;
    font-weight: bold;
}
.product-search-container-header .search-image {
    left: 25%;
}
.woocommerce-pagination {
    width: 100%;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 11%;
}
.woocommerce-pagination > ul > li {
    border: unset !important;
    font-family: 'Roboto Slab';
}
.woocommerce-pagination > ul {
    border: unset !important;
}
.woocommerce-pagination ul {
    width: 100%;
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
}
.woocommerce-pagination ul li span, a {
    font-family: 'Roboto Slab';
}
ul.products > li > form { 
    padding: 0 2%;
    width: 100%;
}
.recommended-product-container > li > form > .card-count-input-quantity {
    padding-left: 2%;
}
#shipping_postcode_field {
    display: none !important;
}
@media (min-width: 1980px) and (max-width: 2880px) {
    .select2-selection--single { 
        top: -100%;
    }
    .recommended-product-container {
        justify-content: space-around;
    }
    .chicken-background {
        background-image: url();
        height: 3800px;
        width: 100%;
        position: absolute;
        background-size: 1400px 1400px;
        background-repeat: no-repeat;
        top: -310px;
        left: 0%;
        background-color: #272727;
    }
    ul.products > li {
        height: 600px !important;
    }
    .product-custom-buttons-container {
        position: relative;
        top: -20px;
    }
    .custom-image-wrapper > img {
        height: 100% !important;
    }
    .footer-image-container > img {
        width: 100%;
    }
    .footer-image-container {
        width: 25%;
    }
    .production-first-section {
        height: 541px;
    }
    ul.products > li, #subcategory-template-page > li {
        width: 17% !important;
        margin-right: 2% !important;
    }
    
}
@media (min-width: 1366px) and (max-width: 1750px) {
    .select2-selection--single { 
        top: 0%;
    }
    .recommended-product-container {
        justify-content: space-between;
    }
    .recommended-product-container > li {
        width: 46%;
    }
    .my-account-sidebar {
        width: 35%;
    }
    .custom-add-to-cart-button {
        font-size: 24px;
        width: 100%;
    }
    ul.products > li {
        width: 21% !important;
    }
    .custom-view-button > img {
        width: 45px !important;
        height: 45px !important;
    }
    .woocommerce-cart-form {
        width: 60%;
    }
    .social-icons-container {
        margin-right: 7%;
    }
    nav > ul {
        width: 65%;
    }
    .card-count-input-container {
    width: 45% !important;
    }
    .woocommerce ul.products li.product a img {
        height: 80%;
    }
    .footer-image-container {
        width: 30%;
    }
    .footer-image-container > img {
        height: 20%;
        width: 100%;
    }
}

.woocommerce-cart-form-container-mobile {
    display: none;
}
.orders-history-header {
    text-align: center;
    font-family: 'Ruslan Display';
    font-size: 50px;
    color: #E3000F;
}
.woocommerce-order {
    padding-bottom: 5%;
}
.woocommerce ul.order_details li {
    border-right: unset !important;
}
.subcategory-link {
    color: black;
    background-color: white;
    text-decoration: none;
}

.subcategory-link.active {
    color: white;
    background-color: #2C2C2C;
    padding: 10px 10px;
    border-radius: 5px;
}
#subcat-template-section {
    margin-bottom: 10%;
}
#prod-section {
    position: relative;
    top: -2px;
}
.woocommerce-message > p {
    text-align: center;
}
.woocommerce-message > a {
    text-align: center;
}
.create-account > p > label {
    font-size: 14px;
    font-family: 'Roboto Slab';
    color: #000000;
    opacity: 20%;
}
.create-account > p > span > input {
    height: 50px;
    border: 1.5px solid #E3000F;
    border-radius: 10px;
    padding: 2% 2%;
}
.card-count-input-form {
    width: 98%;
    height: 100%;
    padding: 0 1%;
    display: flex;
    flex-wrap: wrap;
}
.card-count-input-quantity {
    justify-content: space-between;
    margin-right: 5%;
    width: 100%;
}
.card-count-input-quantity > label {
    font-size: 20px;
}
.card-count-input-container > button {
    background-color: #E3000F;
    color: white;
    border: 1px solid #E3000F;
    border-radius: 4px;
    width: 24.5px;
    height: 27px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.card-count-input-container {
    width: 35%;
    display: flex;
    justify-content: space-between;
}
.card-count-input-container > input {
    font-family: 'Roboto Slab';
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #E3000F;
    width: 45px !important;
    text-align: center;
}
.content-input-button {
    margin-top: auto !important;
    background-color: red ;
    border-radius: 10px !important;
    border: 2px solid red !important;
    font-size: 25px !important;
    font-family: 'Roboto Slab' !important;
    color: white;
    padding: 3% 3%;
    cursor: pointer !important;
    width: 95% !important;
}
.content-input-button:hover {
    background-color: unset !important;
    color: black !important;
}
.woocommerce .star-rating span::before {
    color: gold;
}

/* toast */
#toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #E3000F;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: 10px;
    top: 10px;
    font-size: 18px;
    font-family: 'Roboto Slab';
    border-radius: 4px;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 10px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 10px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 10px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 10px; opacity: 1;}
    to {top: 0; opacity: 0;}
}
.woocommerce-no-products-found {
    margin: 15% 0;
    margin-top: 5%;
}
.woocommerce-terms-and-conditions-wrapper > p {
    display: none;
}
@media (min-width: 1366px) and (max-width: 1550px) {
    
    ul.products > li {
        height: 520px !important;
    }
    .custom-image-wrapper {
        height: 250px;
    }
    .woocommerce-cart-form {
        width: 55%;
    }
    .recommended-product-container > li {
        width: 48% !important;
    }
    .footer-image-container > img {
        width: 100%;
        height: 18%;
    }
    .product-search-container-header #product-search {
        width: 40%;
        left: 20%;
    }
    .product-search-container-header .search-image {
        left: 25%;
    }
    .product-search-container-header #search-results {
        left: 23%;
    }
}
@media (min-width: 1366px) and (max-width: 1432px) {
    .content-input-button {
        padding: 3% 0%;
    }
}
.woocommerce .products ul, .woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
@media (min-width: 340px) and (max-width: 768px) {
    .header-container > a > img {
        width: 80%;
    }
    .product-search-container {
        width: 90%;
    }
    .product-search-container-header #search-results-header {
        width: 96%;
        left: 2%;
    }
    #product-search {
        width: 90%;
    }
    .search-results {
        width: 90.5%;
        left: 5%;
    }
    .product-search-container-header {
        margin-top: 5%;
    }
    .search-image {
        width: 12%;
        height: auto;
    }
    .header-container {
        border-bottom: 2px solid #E3000F;
        padding: 2% 4%;
    }
    .header-nav {
        display: none !important;
    }
    header  {
        margin-top: 0;
    }
    .burger-menu {
        display: block;
    }
    .burger-menu {
        width: 58px;
        height: 4px;
        background-color: #E3000F;
        position: relative;
        cursor: pointer;
        transition: transform 0.4s ease;
        margin-top: 3%;
    }
    
    .burger-menu::before,
    .burger-menu::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #E3000F;
        transition: transform 0.4s ease, top 0.4s ease, bottom 0.4s ease;
    }
    
    .burger-menu::before {
        top: -8px; /* Расположение верхней линии */
    }
    
    .burger-menu::after {
        bottom: -8px; /* Расположение нижней линии */
    }
    
    /* Изменения стилей для крестика при активном меню */
    .burger-menu.open {
        transform: rotate(45deg);
        background-color: #E3000F;
    }
    
    .burger-menu.open::before {
        top: 0;
        transform: rotate(90deg);
        background-color: #E3000F;
    }
    
    .burger-menu.open::after {
        bottom: 0;
        transform: rotate(90deg);
        background-color: #E3000F;
    }
    .contact-info {
        width: 100%;
    }
    .mobile-nav {
        padding: 2% 2%;
        padding-left: 0;
    }
    .mobile-nav-list {
        padding-left: 0;
    }
    .toggle > span {
        font-family: 'Ruslan Display';
        color: #E3000F;
        font-size: 32px;
        padding-left: 5%;
    }
    .mobile-nav-list > li {
        font-family: 'Ruslan Display';
        color: #E3000F;
        font-size: 32px;
        list-style-type: none;
        padding-left: 5%;
        font-weight: 600;
        margin-bottom: 3%;
    }
    .category-burger-menu {
        list-style-type: none;
        border-bottom: 2px solid #E3000F;
        margin-bottom: 3%;
    }
    .category-burger-menu > a {
        text-decoration: none;
        font-family: 'Roboto Slab';
        font-size: 22px;
        color: #E3000F;
        padding-left: 5%;
    }
    .product-subcategories {
        padding-left: 0;
        display: block !important;
        margin-top: 5%;
    }
    .toggle {
        padding-left: 0 !important;
    }
    #li-info {
        padding-top: 2%;
    }
    .sub-li > a {
        text-decoration: none;
        font-family: 'Roboto Slab';
        font-size: 22px;
        color: #E3000F;
    }
    .sub-li {
        border-bottom: 2px solid #E3000F;
    }
    #contact-li {
        margin-top: 25%;
    }
    #contact-li { a {
        font-family: 'Ruslan Display';
        color: #E3000F;
        font-size: 32px;
        list-style-type: none;
        font-weight: 600;
        text-decoration: none;
    }}
    #header-phones-contacts > p {
        display: flex;
        align-items: center;
        margin: 2% 0;
    }
    #header-phones-contacts > p > span {
        padding-left: 5%;
        font-family: 'Roboto Slab';
        font-size: 22px;
        color: #E3000F;
    }
    .page-option {
        display: none;
    }
    .border-text-container {
    font-size: 19px;
    margin-bottom: 45%;
    width: 90%;
    padding: 3% 3%;
    }
    .content > h1 {
        text-align: start;
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 5%;
    }
    .default-text {
        font-size: 20px;
        text-align: start;
        width: 80%;
    }
    .button-container, .button-container > a {
        width: 80%;
    }
    .submit_button {
        width: 100%;
    }
    .content-second-section {
        padding: 0 2%;
    }
    .card-container {
        flex-wrap: wrap;
        margin-top: 5%;
    }
    .card-front-page {
        width: 43%;
        margin-bottom: 5%;
    }
    .card-front-page-header {
        font-size: 18px;
    }
    .card-front-page-paragraph {
        font-size: 12px;
    }
    .content-second-section > h1 {
        text-align: start !important;
        font-size: 32px !important;
        width: 95%;
        margin-bottom: 0;
    }
    .row-wrap-card {
        justify-content: flex-start;
    }
    .card-front-page-production {
        width: 100%;
        margin-top: 10% !important;
        height: 184px !important;
    }
    .card-front-page-production > h2 {
        width: 100% !important;
        top: 15px !important;
        text-align: center;
    }
    #partners {
        position: relative;
        top: -100px;
    }
    .our-partners {
        margin-top: 0;
    }
    .image-wrapper {
        width: 32%;
    }
    .third-section-content {
        position: relative;
        top: -100px;
    }
    .third-section-content > h1 {
        font-size:40px !important;
        text-align: start !important;
        width: 100%;
    }
    .third-section-content > h2 {
        font-size: 32px;
        text-align: start;
    }
    .questions-card {
        width: 100%;
        height: fit-content;
    }
    .about-us-container {
        flex-wrap: wrap;
    }
    .about-us-image-container {
        order: 1;
        width: 100%;
    }
    .about-us-text-container {
        order: 2;
        width: 100%;
    }
    .about-us-text-container > h2 {
        left: 0;
    }
    .chicken-background {
        height: 4300px;;
    }
    footer {
        background-size: 470% 98%;
        top: -155px;
    }
    .footer-content-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40%;
    }
    .footer-image-container {
        width: 100%;
    }
    .footer-social-icons-container {
        display: none;
    }
    .footer-production, .footer-info, .footer-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-about-us {
        background-repeat: no-repeat;
        background-image: url(/wp-content/uploads/2024/05/photo_2024-03-14_10-51-43-1.png);
        background-size: 101% 101%;
    }
    .about-us-first-section {
        height: 270px;
    }
    .about-us-first-section > h1 {
        font-size: 42px !important;
        margin: 0;
        top: 40% !important;
        width: 90%;
    }
    .page-about-us-container, .our-shops-container {
        flex-wrap: wrap;
        padding: 2% 2%;
    }
    .page-about-us-img-container {
        order: 1;
        width: 100%;
    }
    .page-about-us-text-container {
        order: 2;
        width: 100%;
    }
    .page-about-us-text-container > h1 {
        text-align: start;
        font-size: 42px !important;
        margin-bottom: 1% !important;
        margin-top: 3% !important;
        display: none;
    }
    .our-shops-container > h1 {
        text-align: start !important;
        font-size: 42px !important;
    }
    .our-shops-media-main-container {
        padding: 5% 2%;
        margin-bottom: 30%;
    }
    .page-about-us-just-text {
        width: 98%;
        padding: 2% 2%;
    }
    .our-shops-media {
        width: 48%;
    }
    .post {
        width: 100%;
    }
    .entry-content {
        padding: 1% 2%;
        padding-bottom: 40%;
    }
    .wp-block-image > img {
        width: 350px !important;
        height: 350px !important;
        border-radius: 10px;
        border: 1px solid white;
    }
    .img-contacts {
        display: none;
    }
    #contacts-page {
        padding-bottom: 65%;
    }
    #contacts-page-container {
        width: 100%;
    }
    #contacts-page-phone-subcontainer {
        flex-direction: column;
        width: 100%;
    }
    #contacts-page-phone-subcontainer > p {
        width: 100%;
    }
    #contacts-page-worktime-main-container {
        flex-direction: column;
    }
    #contacts-page-worktime-container {
        width: 100%;
    }
    #order-details-section > h2 {
        font-size: 32px;
    }
    #order-details-text-container {
        flex-direction: column;
        padding: 2.5% 7.5% 40% 7.5%;
    }
    #order-details-text-container > p {
        width: 100%;
        font-size: 14px;
    }
    .product-header-image > img {
        width: 100%;
        height: 240px;
    }
    .product-header-title-ruslan {
        font-size: 32px !important;
    }
    .product-item {
        background-color: #E3000F;
        border: 1px solid #E3000F;
        padding: 1% 4%;
        border-radius: 10px;
        margin-bottom: 5%;
    }
    /* .product-item.active {
        background-color: black;
    } */
    .product-item > a {
        color: white;
        display: block;
        padding: 4% 1%;
        position: relative;
        top: 5px;
        font-size: 24px !important;
        text-wrap: nowrap;
        background-color: unset;
    }
    ul.products > li {
        width: 45% !important;
        height: 400px !important;
    }
    ul.products > li > a div > img {
        width: 100% !important;
        height: 100% !important;
    }
    ul.products > li > a > h2 {
        font-size: 20px !important;
    }
    ul.products > li > a > span {
        font-size: 14px !important;
    }
    .product-custom-order-info {
        font-size: 13px !important;
    }
    .custom-add-to-cart-button {
        font-size: 14px;
        padding-top: 5%;
        padding-bottom: 5%;
    }
    .product-top-section-container {
        width: 100%;
    }
    .product-top-section {
        flex-direction: column;
        width: 100%;
        padding: 5% 5%;
        padding-top: 0;
    }
    .product_title {
        font-size: 42px;
        margin-bottom: 2%;
        margin-top: 5%;
    }
    .product-availability, .price {
        font-size: 20px;
        margin: 2% 0;
    }
    .qty-label {
        font-size: 20px;
    }
    .woocommerce-ResetPassword {
        margin-bottom: 35%;
    }
    .single_add_to_cart_button {
        font-size: 20px;
        margin-top: 5px;
        width: 75%;
        position: relative;
        left: 10%;
        margin-top: 5%;
    }
    .related > h2, .woocommerce-Reviews-title {
        font-size: 42px;
    }
    .related > ul {
        flex-wrap: wrap;
    }
    ul.products > li {
        margin-bottom: 8%;
        margin-right: 3% !important;
    }
    #comment {
        width: 98%;
        height: 40px;
    }
    .commentlist > li {
        width: 95% !important;
        margin-right: 0;
    }
    .woocommerce-message {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        padding-top: 5%;
        width: 100%;
        margin-bottom: 0;
    }
    .woocommerce-message > a {
        position: static;
        float: unset !important; 
        display: block ;
        color: white;
        background-color: #E3000F;
        border: 2px solid #E3000F;
        width: 70%;
        border-radius: 10px;
        text-align: center;
        padding: 2% 2%;
        margin-bottom: 5%;
    }
    .my-cart-main-container {
        flex-direction: column;
        padding-bottom: 30%;
    }
    .woocommerce-cart-form {
        width: 100%;
        order: 1;
        margin-top: 5%;
    }
    .cart-bottom-margin {
        width: 95% !important;
    }
    .woocommerce table.shop_table tbody:first-child tr:first-child td {
        display: flex;
        flex-wrap: wrap;
    }
    .cart-item-name {
        margin-top: 2.5%;
        font-size: 26px;
    }
    .cart-item-price {
        font-size: 16px;
        width: 110%;
    }
    #shipping_state_field > span > span > span > span > span {
        top: 20px;
    }
    .recommended-product-container > li {
        width: 45%;
        padding: 0 0;
        overflow: hidden;
        height: 295px;
        padding-bottom: 0 !important;
    }
    .recommended-product-container > li > a > img {
        height: 150px !important;
    }
    .product > a > img {
        height: 180px !important;
    }
    .recommended-product-container > li > a > h2 {
        font-size: 28px;
        text-align: start;
        margin: 0;
        padding-left: 2%;
    }
    .recommended-product-container > li > a > span {
        font-size: 14px;
    }
    .custom-view-button > img {
        height: 39px !important;
    }
    .recommended-product-container > li > div {
        align-items: unset;
        margin-top: auto;
        margin-bottom: 1%;
    }
    .my-account-main-container {
        flex-direction: column;
        padding-bottom: 30%;
    }
    .my-account-sidebar {
        width: 100%;
        height: 460px;
        border-left: unset;
    }
    .woocommerce-MyAccount-content {
        width: 100%;
        margin-left: 0;
        padding: 2% 2%;
    }
    .woocommerce-MyAccount-content > .woocommerce-Message--info > .woocommerce-Button {
        display: none;
    }
    .my-account-form-change-main-container {
        flex-direction: column;
    }
    .my-account-form-container {
        width: 95% !important;
    }
    #passwordChangeForm {
        width: 95%;
    }
    .my-account-submit-button {
        width: 95%;
    }
    .edit-account-header-pass {
        font-size: 32px;
    }
    .woocommerce-MyAccount-content > form {
        width: 95%;
    }
    .woocommerce-EditAccountForm {
        width: 100% !important;
    }
    .myaccount-button {
        width: 100%;
    }
    .woocommerce ul.order_details {
        display: flex;
        flex-direction: column;
    }
    .order-card {
        width: 90%;
    }
    .my-account-order-details {
        flex-wrap: wrap;
    }
    .my-account-order-details > img {
        width: 45%;
        height: 160px;
    }
    .my-account-orders-history-price-card {
        width: 45%;
        padding-left: 2%;   
    }
    .my-account-orders-history-price-card > h2 {
        padding-left: 5%;
        font-size: 22px;
    }
    .my-account-orders-history-price-card > p {
        font-size: 16px;
    }
    .my-account-orders-history {
        margin-left: unset !important;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .my-account-orders-history > p:first-child {
        width: 100%;
        text-align: left;
    }
    .my-account-orders-history > h4 {
        text-align: left;
        width: fit-content;
        margin-bottom: 5%;
        margin-top: 2%;
    }
    .my-account-orders-history > p {
        margin-top: 2%;
        margin-bottom: 5%;
    }
    .my-account-order-details {
        margin-top: 5%;
    }
    .woocommerce-product-gallery__wrapper {
        border-bottom: 2px solid #E3000F;
        position: relative;
        left: -2%;
        width: 110%;
        height: 100%;
    }
    .custom-quantity > input {
        height: 15px;
    }
    .custom-quantity, .product-availability, .price {
        margin: 5% 0;
    }
    .entry-summary {
        padding: 0 2%;
    }
    .woocommerce-product-gallery__image {
        border: unset;
        position: relative;
        left: -5%;
        width: 110%;
    }
    .blog-posts {
        padding-bottom: 40%;
        padding-right: 5% !important;
    }
    .post {
        margin-bottom: 8%;
        margin-right: 0 !important;
    }
    #primary {
        padding-bottom: 10%;
    }
    .woocommerce-breadcrumb a.active {
        color: white;
        background-color: #2C2C2C;
        padding: 10px 10px;
        border-radius: 5px;
        top: -5px;
        width: 100%;
        height: 100%;
        left: -5px;
        padding: 5px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #reviews {
        padding-bottom: 25%;
    }
    .checkout-wrapper {
        padding-bottom: 35% !important;
    }
    .custom-add-to-cart-button {
        font-size: 14px;
        padding-top: 5%;
        padding-bottom: 5%;
        width: 100%;
        padding: 0% 0%;
        height: 33px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .custom-view-button > img{
        width: 35px !important;
        height: 35px !important;
    }
    .product-header-image {
        width: 150%;
        left: 0;
    }
    .cart-item-thumbnail > a {
        width: 160px !important;
        min-width: 157px;
    }
    .custom-placeholder {
    width: 150px; /* Желаемая ширина */
    height: 150px; /* Желаемая высота */
    object-fit: cover; /* Это свойство сохранит пропорции изображения, подгоняя его под заданные размеры */
    }
    .cart-item-details {
        padding-left: 2%;
    }
    .cart-item-checkout > div > img {
        min-width: 160px;
    }
    .recommended-product-container > li > a > h2 {
        font-size: 20px;
    }
    .woocommerce-cart-form-container {
        display: none;
    }
    .woocommerce-cart-form-container-mobile {
        display: block !important;
        margin-bottom: 10%;
    }
    .contact-info-checkout {
        text-align: center;
        margin-bottom: 10%;
    }
    .wc_payment_methods {
        display: flex;
        flex-direction: column;
    }
    #shipping_method {
        margin-top: 5% !important;
        display: flex;
        flex-direction: column;
    }
    .woocommerce-shipping-methods {
        text-align: center;
        margin-top: 5%;
    }
    .checkout-wrapper-header {
        font-size: 32px;
        margin-top: 10%;
    }
    #shipping_method > li {
        margin-bottom: 5% !important;
    }
    .my-account-sidebar-content {
        left: 35%;
    }
    .my-account-sidebar > img {
        position: relative;
        left: -10%;
    }
    .orders-history-header {
        font-size: 32px !important;
        width: 50%;
    }
    .orders-history-header-container {
        display: flex;
        justify-content: center;
    }
    #contacts-page > h2 {
        font-size: 32px;
        padding-top: 10%;
    }
    #social-icons-contacts-container {
        margin-top: 10%;
    }
    #contacts-page-worktime-container > p {
        padding-left: 1%;
    }
    .woocommerce-order {
        padding-bottom: 30% !important;
    }
    .footer-image-container > img {
        width: 100% !important;
    }
    .production-first-section {
        background-size: cover;
        background-position: center;
        height: 200px;
        display: flex;
        justify-content: center;
    }
    .production-first-section > h1 {
        font-size: 32px !important;

    }
    .production-container {
        margin-top: 0;
        padding: 2% 2%;
    }
    .production-container > div {
        width: 95%;
        border-color: #E3000F;
    }
    #production-page-last-block {
        height: 1350px !important;
    }
    .button-container {
        margin-top: 15%;
        margin-bottom: 25%;
    }
    .questions-card h2 img {
        right: 10px;
    }
    .questions-card > h2 {
        line-height: 42px;
        padding: 2% 0;
    }
    .our-shops-media > a > p {
        margin-top: 1%
    }
    #customer_login {
        padding-bottom: 25%;
    }
    .footer-content-section > div > ul > li {
        text-align: center;
        width: 100%;
    }
    .woocommerce-message > p {
        padding: 2% 2%;
        order: 2;
        margin-top: 0;
        text-align: center;
    }
    .wc-forward {
        right: 0 !important; 
    }
    .cart-count-mobile {
        position: relative;
        top: -30px;
        right: 25px;
        background-color: #E3000F;
        color: white;
        border: 2px solid white;
        border-radius: 50%;
        padding: 7px 10px;
        font-size: 10px;
        font-weight: bold;
        font-family: 'Roboto Slab';
    }
    .cart-count-mobile-burger {
        position: relative;
        top: -8px;
        right: 7px;
        background-color: #E3000F;
        color: white;
        border: 2px solid white;
        border-radius: 50%;
        padding: 1px 1px;
        font-size: 12px;
        font-weight: bold;
        font-family: 'Roboto Slab';
        width: 39px;
        height: 18px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .cart-count-mobile-burger {
        transition: opacity 0.3s ease-in-out;
        opacity: 1; /* По умолчанию видим */
    }
    
    .cart-count-mobile-burger.hidden {
        opacity: 0; /* Скрываем с помощью плавного изменения прозрачности */
    }
    .wc-proceed-to-checkout {
        left: 20%;
    }
    .woocommerce-product-gallery__image {
        width: 115%;
        height: 100%;
    }
    .woocommerce-product-gallery__image > a > img {
        left: -15px;
        border-bottom: 2px solid #E3000F;
    }
    .woocommerce-product-gallery__wrapper {
        border-bottom: unset;
    }
    .custom-image-wrapper > img {
        height: 165px;
    }
    ul.products {
        padding-bottom: 10% !important;
    }
    .recommended-product-container > li > a > div > img {
        height: 165px !important;
    }
    .custom-image-wrapper {
        height: 165px !important;
    }
    #subcategory-template-page > li {
        width: 45% !important;
        height: 381px !important;
    }
    .no-margin-right {
        margin-right: 0 !important;
    }
    .card-count-input-container {
        align-items: center;
        width: 66%;
        justify-content: space-around;
    }
    .card-count-input-quantity {
        padding-right: 3%;
    }
    .card-count-input-quantity > label {
        font-size: 12px !important;
    }
    .card-count-input-container > button {
        width: 22px !important;
        height: 22px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card-count-input-container > input {
        width: 35px !important;
        font-size: 14px;
    }
    .content-input-button {
        font-size: 16px !important;
    }
    .card-count-input-form {
        align-content: flex-end;
    }
}
@media (min-width: 340px) and (max-width: 380px) {

    .custom-view-button > img {
        width: 30px !important;
        height: 30px !important;
    }
    .custom-add-to-cart-button {
        height: 30px;
        font-size: 12px;
    }
    .product-custom-order-info {
        font-size: 12px !important;
    }
    .cart-item-remove {
        position: relative;
        left: -20px;
    }
    .my-cart-main-container {
        padding-bottom: 32%;
    }
    .card-count-input-container > button {
        width: 20px !important;
    }
    .card-count-input-container > input {
        width: 30px !important;
    }
}