*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.upperLine{
    width: 100%;
    height: 40px;
    background: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 10px;
}
.upperLine p{
    color: rgb(255, 255, 255);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container 
{ 
    max-width: 900px; 
    margin: 0px auto; 
    text-align: center; 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    background-color: #fff;
    z-index: 1001;
    position: sticky;
    top: 0px;
    /* background: rgb(234,255,5);
    background: linear-gradient(59deg, rgba(234,255,5,1) 0%, rgba(34,197,115,1) 61%, rgba(83,218,62,1) 100%); */
}
h2 { color: #333; }
.search-container 
{ 
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 10px; 
}
input { width: 70%; padding: 10px; border: 1px solid #ddd; border-radius: 50px; font-size: 16px; }
.icon-button { background: none; border: none; cursor: pointer; font-size: 20px; }
.product{ 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    border: 1px solid #ddd; 
    padding: 10px; 
    margin: 10px 0; 
    border-radius: 5px; 
    background: #fff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}
.product img{
    max-width: 80px; height: auto; border-radius: 5px;
}
/* img { max-width: 80px; height: auto; border-radius: 5px; } */
.product p { margin: 5px 0; font-size: 16px; color: #555; }
.product a { text-decoration: none; color: white; background: #28a745; padding: 5px 10px; border-radius: 5px; transition: 0.3s; }
.product a:hover { background: #218838; }
#results { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, opacity 0.5s ease-out; opacity: 0; }
#results.show { opacity: 1; max-height: 800px; z-index: 10;}

.upperField{
    width: 100%;
    max-height: 300px;
    border: 1px;
}
.sectionsPanel{
    width: 100%;
    height: 50px;
    max-height: 200px;
    border: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.centeringsectionsPanel{
    display: flex;
    justify-content: space-between;
    border: 1px;
    max-width: 700px;
    width: 600px;
}
.section{
    font-family:"base";
    border: 1px;
    /* border-radius: 10px 0px 10px 0px; */
    max-width: 150px;
    text-align: center;
    position: relative;
}
.section a{
    color: #000;
}
.section::before{
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background: #000;
    border-radius: 10px;
    transition: 0.3s;
    opacity: 1;
    top: 20px;
}
.section:hover::before{
    width: 100%;
}

.cetegoryOrentationPanel{
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px;
    overflow-y: hidden;
}
.cetegoryOrentationPanel img{
    width: 100%;
    height: 800px;
    position: relative;
    top: 100px;
    filter: brightness(60%);
    transition: 0.3s;
}
.cetegoryOrentationPanel img:hover{
    filter: brightness(50%);
    /* top: 150px; */
}
.cetegoryOrentationPanel p{
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.cardsPanel{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-height: 400px;
    position: relative;
    /* left: 300px; */
}
.categoryNaming{
    position: relative;
    width: 70%;
    height: 10px;
    text-align: center;
    z-index: 1000;
}
.categoryNaming p{
    font-size: 24px;
    color: #7f8c8d;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    bottom: 0px;

}

.product-card {
    width: 220px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    margin-bottom: 20px;
    position: relative;
    top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}
.product-card h2 {
    font-size: 22px;
    margin: 12px 0;
    color: #2c3e50;
    font-family: Arial, sans-serif;
}
.custom-swiper-container {
    width: 100%;
    padding: 20px 0;
}
.custom-swiper-slide {
    display: flex;
    justify-content: center;
}
.custom-product-card {
    width: 220px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.custom-product-card img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}
.custom-product-card h2 {
    font-size: 22px;
    margin: 12px 0;
    color: #2c3e50;
    font-family: Arial, sans-serif;
}
.price-container {
    font-size: 18px;
    margin: 10px 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.old-price {
    text-decoration: line-through;
    color: #bdc3c7;
    font-size: 16px;
    margin-right: 8px;
}
.new-price {
    color: #db6558;
    font-size: 20px;
    font-weight: bold;
}
.price-per-kg {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 5px;
}
.add-to-cart {
    color: white;
    padding: 12px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.slider-container {
    width: 90%;
    max-width: 1200px;
    height: 400px;
    margin: auto;
    position: relative;
    overflow-y: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.slider {
    position: relative;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}


.active {
    opacity: 1;
    visibility: visible;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.slider-container:hover .prev,
.slider-container:hover .next {
    opacity: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

.page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    max-height: 200vh;
    background-color: #ffffff;
}
.category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 80%;
    text-align: center;
}
.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.category.show {
    opacity: 1;
    transform: translateY(0);
}
.category img {
    width: 100%;
    border-radius: 50%;
}
.category span {
    margin-top: 8px;
    font-size: 14px;
    font-family: "base"
}
.category.opened{
    width: 300px;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    background-color: #fff;
    border-radius: 10px;
}

@font-face {
    font-family: "base";
    src: url(Inter-VariableFont_opsz\,wght.ttf);
}


.slider-section {
    display: flex;
    justify-content: center;
    /* margin: 40px 0;  */
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 80%;
    overflow: hidden;
    max-width: 1300px; /* Ограничение ширины */
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s;
}
.carousel-wrapper.show{
    transform: translateY(0px);
    opacity: 1;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.item {
    width: 200px;
    height: 250px;
    background-color: #ff6b6b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    border-radius: 10px;
}

.nav-arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    border-radius: 10px;
}

#leftBtn1, #leftBtn2 { left: 10px; }
#rightBtn1, #rightBtn2  { right: 10px; }
#rightBtn3{
    right: 10px;
}
#leftBtn3{
    left: 10px;
}
#rightBtn4{
    right: 10px;
}
#leftBtn4{
    left: 10px;
}
.BgLogo{
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    border-radius: 10px;
    animation-name: BgAnim;
    animation-duration: 5s;
    animation-iteration-count: 1
}
.BgLogo img{
    width: 100%;
    position: relative;
    bottom: 500px;
    right: 0px;
    z-index: -1;
    opacity: 0;

}
@keyframes BgAnim{
    0%{
        right: 100px;
        height: 900px;
    }
    50%{
        right: 0px;
        height: 000px;
    }
    100%{
        right: 0px;
    }
}


.unique-slider-container {
    width: 1200px;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.unique-slider-track {
    display: flex;
    transition: transform 1s ease-in-out;
}
.unique-slide {
    min-width: 100%;
    height: 400px;
}
.unique-slide img {
    width: 100%;
}
.lowPoint{
    width: 100%;
    height: 500px;
}

.video-container {
    width: 100%; /* Ширина контейнера */
    max-width: 100%;
    margin: 0 auto; /* Центрирование */
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Закругление углов */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    filter: blur(5px);
}

video {
    width: 100%;
    height: auto;
    display: block;
}
.ListOfAdvantages{
    width: 100%;
    max-height: 900px;
    border: 1px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;

}
.cardOfAdvatage{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: base;
    font-size: 12px;
    position: relative;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(30px);
    z-index: 100;
}
.cardOfAdvatage.show{
    opacity: 1;
    transform: translateY(0px);
}
.cardOfAdvatage::after{
    content: '';
    position: absolute;
    width: 0.5px;
    height: 50px;
    background: #a2a2a2;
    right: 0px;
}
.cardOfAdvatage img{
    width: 50px;
    height: 50px;
}
.containerOfAdv{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 60px;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 100;
}

.swiper {
    width: 90%;
    max-width: 1200px;
    padding: 20px 0;
}
.MainPanel{
    width: 100%;
    max-height: 4000px;
    gap: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.logosOfSocialMedia{
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-right: 5px;
}
.endingMediaContainer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}

.text-wrapper {
    position: relative;
    height: 1.5em; /* Размер текста */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    position: absolute;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    font-family: base;
}

.hidden {
    opacity: 0;
    transform: translateY(100%);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}
.CustomersRatesPanel{
    width: 100%;
    max-height: 1200px;
    position: relative;
}
.CustomersRatesPanel p{
    font-family: base;
    font-size: 27px;
    text-align: center;
    margin: 10px;
    /* margin-bottom: 20px; */
}
/* .CustomersRatesPanel p::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #959595;
    right: 0;
    left: 0;
    opacity: 0.5;

}
.CustomersRatesPanel p::before{
    content: '';
    position: absolute;
    width: 85%;
    height: .5px;
    background: #959595;
    right: 0;
    left: 0;
    top: 35px;
    opacity: 0.5;
    margin: auto;
} */
.Testimonials{
    width: 330px;
    height: 250px;
    border: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.TestimonialsPanel{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-height: 1200px;
    position: relative;

}
.Testimonials img{
    width: 50px;
    height: 50px;
}
.Testimonials p{
    font-size: 12px
}
.nameOftheTestimonial{
    width: 100%;
}
@media (max-width: 768px) {
    
    
}

@media (max-width: 480px) {
    .carousel-wrapper{
        width: 400px;
    }
    .product-card{
        width: 170px;
        margin-bottom: 10px;
    }
    .item{
        background-color: white;
    }
    .nav-arrow{
        display: none;
    }
    .carousel{
        gap: 0px;
        width: 100%;
    }
    .unique-slider-container{
        max-height: 200px;
    }
    .slider-container{
        max-height: 200px;
    }
    .sectionsPanel{
        width: 90%;
        position: relative;
        right: -20px;
    }
    .section a{
        font-size: 11px;
    }
    .unique-slider-container {
        box-shadow: none;
    }
    .product-card h2 {
        font-size: 14px;
    }
    .add-to-cart{
        font-size: 10px;
    }
    .cetegoryOrentationPanel img{
        width: 100%;
        height: auto;
        top: 0px;
    }
    .localproducts.visible{
        width: 100%;
    }
    .product-card{
        box-shadow: none;
        border: 1px;
        padding: 0px;
    }
    .prev , .next{
        top: 30%;
        border-radius: 10px;
    }
    .filter{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    .filter :nth-child(3) {
        width: 100% !important;
        border: 1px !important;
        box-shadow: 1px 1px 1px 1px rgb(211, 209, 209);
    }
}