@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

h2{
    font-weight: 600;
}

p {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

html{
     overflow-x: hidden;
}

.cart-html{
    overflow-x: visible;
}

body{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
}

:root{
    --defaultColor:#90B817;
    --secondColor:#C8D978;
    --primary_text_color:black;
    --second_text_color:white;
    --max-width:1250px;
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight{
    color: var(--defaultColor);
}

.highlight-text{
    color: black;
    font-size: 16px;  
     font-family: "Inter", sans-serif;
    font-weight: 500;
}

.active{
    color: var(--defaultColor);
}



/*ANIMATIONS*/
.scroll-animation-right,
.scroll-animation-left {
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.scroll-animation-right {
    transform: translateX(100px);
}

.scroll-animation-left {
    transform: translateX(-100px);
}

/* Když se prvek zobrazí, posune se na místo a ukáže */
.show-right {
    opacity: 1;
    transform: translateX(0);
}

.show-left {
    opacity: 1;
    transform: translateX(0);
}

/*ALERTBOX*/
.alert-box{
    width: 400px;
    aspect-ratio: 16/6;
    background-color: var(--defaultColor);
    position: fixed;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -5%);
    z-index: 9999;
    display: none;
    gap: 15px;
    align-items: start !important;
    justify-content: start !important;
    padding: 15px;
}

.alert-box img{
    height: 50px;
}

.alert-box div{
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
}

.alert-box div button{
    align-self: flex-end;
    background: transparent !important;
    border: 2px solid white;
    color: white;
    width: 110px;
    height: 45px;
}

.alert-box div h3{
    font-size: 16px;
    color: white;
}

.alert-box div p{
    font-size: 14px;
    color: white;
}


/*COOKIE BOX*/
.cookie-box{
    width: 500px;
    background-color: rgba(248, 248, 248, 1);
    flex-direction: column;
    position: fixed;
    top: 90%;
    left: 5%;
    transform: translate(-5%, -90%);
    z-index: 9999;
    gap: 15px;
    align-items: start;
    justify-content: start;
    padding: 25px;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-box h3{
    gap:15px;
}

.cookie-box h3 img{
    height: 25px;
}

.cookies-buttons{
    flex-direction: row;
    gap: 15px;
    align-items: end;
    justify-content: end;
    width: 100%;
}

.cookies-buttons button{
    height: 45px;
}

.cookie-box p{
    font-size: 14px;
    font-family: "Inter", sans-serif;
}
.cookie-box ul{
 flex-direction: column;
 align-items: start;
    justify-content: start;
    gap: 15px;
}
.cookie-box ul li{
    font-size: 14px;
    font-family: "Inter", sans-serif;
}

/*CART*/
.cart-icon{
    width: 40px;
    height: 40px;
    position: relative;
}

.cart-icon:hover >  img{
    filter: invert(50%);
    transition: 0.3s;
    cursor: pointer;
}

.cart-icon img{
    height: 100%;
}

#close-cart{
    height: 20px;
}

#close-cart:hover{
    filter: invert(100%);
    transition: 0.2s;
}

.cart-overlay{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 998;
    display: none;
}

.cart{
    width: 400px;
    height: 100vh;
    background: white;
    justify-content: start;
    align-items: center !important;
    gap: 30px;
    position: fixed;
    flex-direction: column;
    right: -150%;
    z-index: 999;
    transition: right 0.5s ease-in-out;
}

.cart-top{
    background-color: var(--defaultColor);
    width: 100%;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}

.cart-count{
    position: absolute;
    left: 53%;
    top: 65%;
    transform: translate(-65%, -53%);
}

.cart-count span{
    color: var(--defaultColor);
    font-size: 12px;
    font-weight: 600;
}

.cart h3{
    font-size: 20px;
    color: white;
}

.cart h4{
    align-self: start;
    padding-left: 15px;
}

.cart-items{
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 0px 15px;
    height: 60%;
    align-items: start;
    justify-content: start;
}

.cart-bottom{
    width: 100%;
    box-shadow: 0px -4px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 15px;
    padding: 20px 20px 0px 20px;
}

.cart-button{
    width: 230px !important;
    background: var(--defaultColor) !important;
    color: white !important;
}

.cart-button-second{
    border: 2px solid var(--defaultColor);
     width: 230px !important;
     color: var(--defaultColor) !important;
     background: transparent !important;
}

.cart-item{
 height: 60px;
 width: 100%;
 justify-content: space-between;
 padding: 0px 10px 0px 0px;
 background-color: white;
box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
gap: 20px;
}

.cart-item span{
    color:black;
    font-weight: 300;
    font-size: 14px;
    flex: 1 1 100px;
    text-align: center;
}

.cart-item-name {
  flex: 1 1 auto;             /* Zabere zbylý prostor */
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;           /* Schová přetečení */
}

.cart-item-name span {
  color: black;
  white-space: nowrap;        /* Zabrání zalomení textu */
  overflow: hidden;
  text-overflow: ellipsis;    /* Přidá tři tečky, pokud je text dlouhý */
  font-weight: 300;
  font-size: 14px;
}
.delete-product{
    height: 20px;
}
.cart-item-img{
    height: 60px;
    background-color: rgba(248,248,248,1);
    flex: 0 0 75px;      
}

.cart-item-img img{
    width: 100%;
    height: 100%;
}

.cart-price{
    width: 100%;
    justify-content: center;
}
.cart-price p{
    font-size: 16px;
    color: black;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

.cart-price span{
    font-size: 18px;
    font-weight: 900;
    color: black;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
/*Navigace -----------------------------------------------------------*/
nav{
    width: var(--max-width);
    height: 85px;
    justify-content: space-between !important;

}
.slide-li {
    position: relative; /* Abychom mohli pozicovat submenu */
}

/* Zobrazí submenu při hoveru nad li */
.nav-list li:hover > .slide-menu {
    display: flex;
}

/* Základní nastavení pro submenu */
.slide-menu {
    position: absolute;
    background-color: rgba(248, 248, 248, 1);
    padding: 25px;
    top: 55px; /* Mezera mezi hlavní položkou a submenu */
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px; /* Mezery mezi položkami v submenu */
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
    display: none; /* Skryté na začátku */
}

/* Submenu zůstane zobrazené při hoveru na rodičovskou položku nebo submenu */
.slide-li:hover > .slide-menu,
.slide-menu:hover {
    display: flex;
}

.logo img{
    height: 90%;
}

nav ul{
    list-style: none;
    gap: 25px;
    z-index: 998;
}

nav ul li a{
    color: var(--primary_text_color);
    font-weight: 600;
    text-transform: uppercase;
}

nav ul li a:hover{
    transition: 0.1s;
    color: var(--defaultColor);
}

.nav-right{
    height: 100%;
    gap: 25px;
}

.menu{
    width: 30px;
    height: 30px;
    flex-direction: column;
    gap: 3px;
    display: none;
    margin-right: 20px;
    float: right;
    z-index: 999 !important;
}

.closeMenu{
    position: fixed;
    right: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
}
.closeMenu div:nth-child(1){
    transform: rotate(45deg);
}
.closeMenu div:nth-child(2){
display: none;
}

.closeMenu div:nth-child(3){
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}

.menu div{
    height: 3px;
    width: 100%;
    background-color: var(--defaultColor);
}


/*BUTTON -----------------------------------------------------------*/
.button{
    width: 150px;
    height: 50px;
    font-size: 14px ;
    color: var(--second_text_color);
    font-weight: 600;
    background: linear-gradient(80deg, var(--defaultColor), var(--secondColor));
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s ease-in-out;
    border: none;
    min-width: 150px;
}

.button:hover{
    outline-offset: 2px;
    outline: 1px solid var(--secondColor);
}

.second-button{
    border: 2px solid var(--defaultColor);
    background: transparent;
    color: var(--defaultColor);
}



/*MAIN SECTION -----------------------------------------------------------*/
.main-section {
    background-image: url('/Images/main-picture.jpg'); /* Gradient + obrázek */
    background-size: cover;  /* Roztáhne obrázek na celou sekci */
    background-position: center center; /* Zarovná obrázek na střed */
    background-repeat: no-repeat; /* Zabrání opakování obrázku */
    width: 100%;
    height: 60vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.main-content{
    flex-direction: column;
    align-items: start;
    gap: 25px;
    width: var(--max-width);
}
.main-content p{
    color: var(--primary_text_color);
    width: 60%;
    font-size: 15px;
}
.main-content h1{
    color: var(--primary_text_color);
    font-size: 40px;
    width: 50%;
    text-transform: uppercase;
}


/*Title section*/
.title-section{
    height: 25vh;
    background-image: url('/Images/main-picture.jpg');
    background-size: cover;
    width: 100%;
    background-position: center center; /* Zarovná obrázek na střed */
    background-repeat: no-repeat; 
  
}

/*Section*/
.section{
    width: var(--max-width);
    padding: 100px 0px 100px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    flex-direction: column;
}


/*Services*/
.services{
    width: var(--max-width);
    gap: 40px;
    position: relative;
    bottom: 50px;
    padding-bottom: 50px;
    flex-wrap: wrap;
}

.service-card{
    flex: 1;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    transition: 0.3s;
    min-width: 300px;
    aspect-ratio: 16/9;
    max-height: 250px;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.service-img{
  width: 100%;
  height: 70%;
  position: relative;
}

.overlay-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248,248,248,0.9); /* Tvoje šedá barva */
    mix-blend-mode: screen;
}


.service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;
}

.service-card:hover > .service-img img{
    transform: scale(1.02);
    transition: 0.3s;
}

.service-card:hover > .service-info h3{
    color: var(--primary_text_color);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-10px);
    cursor: pointer;
}

.service-info{
    background: linear-gradient(80deg, var(--defaultColor) , var(--secondColor));
    width: 100%;
    height: 30%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-info::before{
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit; /* Použije stejný gradient */
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.service-info h3{
    color: var(--second_text_color);
    text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}


/*About us*/
.about-us{
    gap: 70px;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
}
.about-us-block{
    flex: 1;
    flex-direction: column;
    align-items: start;
    gap: 35px;
}

.about-us-block p{
    font-weight: 400;
}
.about-us-point{
    gap: 15px;
}

.about-us-point img{
    height: 16px;
}

.strong-text{
    font-weight: 500 !important;
}

.about-us-img {
    position: relative;
    flex: 1;
    overflow: hidden;
    aspect-ratio: 16/12; /* Zajistí, že nic nepřesahuje */
    min-width: 300px;
}

.about-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arrow {
    position: absolute;
    bottom:0;
    left: 0;
    float: bottom;
    width: 100%;
    height: 20px;
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
}

.arrow::before{
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit; /* Použije stejný gradient */
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/*Products*/
.products{
    gap: 50px;
}
.product-container{
    width: 100%;
    gap: 40px;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}
.products-title{
    width: var(--max-width);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}


.product{
    flex: 1;
    flex-direction: column;
    gap: 25px;
    max-width: 400px;
    min-width: 275px;
    transition: 0.2s ease-in-out;
    height: 400px;
    background-color: white;
    align-items: start;
    justify-content: start;
     box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}



.product:hover{
    transform: translateY(-10px);
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}



.product .arrow{
    height: 10px;
}

.product .arrow::before{
    height: 15px;
    top: -14px;
}

.product-img{
    width:100%;
    height: 50%;
    position: relative;
    background-color: rgba(248,248,248,1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img{
    height: 80%;
    filter: drop-shadow(1px 5px 10px rgba(0,0,0,0.5));
}

.product .price{
    color: var(--defaultColor);
    font-weight: 800;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    align-self: flex-end;
}

.product:hover > .product-info{
    padding: 0px 15px;
}

.product-info{
    height: 40%;
    flex-direction: column;
    gap: 25px;
    justify-content: start;
    align-items: start;
    transition: 0.2s ease-in-out;
    color: black;
    width: 100%;
    padding: 0px 15px;
}

.product-info div{
    width: 100%;
    justify-content: space-between;
}

.product-info span{
    font-size: 16px;
    font-weight: 600;
    color: black;
}



.product-info h3{
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.product-info p {
 display: -webkit-box;
  -webkit-line-clamp: 3; /* počet řádků */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.5em; /* výška řádku */
  max-height: 4.5em; /* 3 řádky × line-height */
  word-break: break-word;
}



/*SHOP PAGE*/
.full-shop{
    width: 100%;
    flex-direction: row;
    gap: 25px;
    align-items: start;
    justify-content: start;
}

.side-menu{
    width: 300px;
    flex-direction: column;
    background-color: white;
    gap: 15px;
    align-items: start;
    justify-content: start;
}

#side-menu{
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: start;
    justify-content: start;
}

.menu-item{
    position: relative;
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    color: white;
    width: 80%;
    height: 55px;
    padding-left: 15px;
   justify-content: start;
}

.menu-item::after{
    content: "";
    position: absolute;
    top: 0;
    right: -20px; /* Posun ven */
    width: 20px;  /* Šířka šipky */
    height: 55px; /* Stejná výška jako box */
    clip-path: polygon(0 0, 100% 50%, 0 100%); /* Trojúhelníkový tvar */
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor)); /* Gradient */
}

.menu-item span{
    font-weight: 600;
    font-size: 14px;

}

.menu-item:hover{
    color: white;
    transition: 0.2s;
    cursor: pointer;
}

.menu-item:hover::after {
    right: -25px;
    transition: 0.2s;
}

/*FULL PRODUCT PAGE*/
.product-full-img{
    width: 50%;
    flex-direction: column;
    gap: 15px;
    align-items: start;
    justify-content: start;
    aspect-ratio: 16/9;
}

.image-container{
    width: 100%;
    background-color: rgba(248, 248, 248, 1);
}

.image-container img{
    width: 80%;
    height: auto;
}

.product_container{
    align-items: start;
    justify-content: start;
}

#image-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;  /* místo !important */
    justify-content: flex-start;
    width: 100%;
}

.thumbnail {
    flex: 1 1 150px;               /* může růst i zmenšovat, základ 150px */
    aspect-ratio: 16 / 9;          /* správný poměr stran */
    background-color: rgb(245, 245, 245);
    max-width: calc(33.33% - 10px); /* např. 3 v řadě */
}

.product_container{
    gap: 50px;
    width: var(--max-width);
}

.full-product-info{
    width: 50%;
    flex-direction: column;
    gap: 25px;
    justify-content: start !important;
    align-items: start !important;
    
}

.full-product-info button{
    margin-top: 10px;
}

#productInStock{
    color: var(--defaultColor);
    font-weight: 600;
}

.buttons{
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 5px;
    margin-left: 15px;
}

.buttons button{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    color: white;
    border: none;
}

.full-product-info h2{
    font-size: 35px;
}

.product-price{
    width: 100%;
    gap: 25px;
    align-items: start;
    justify-content: start;
}

.product-price span{
    font-size: 25px;
    font-weight: 600;
}

#product_price{
    color: var(--defaultColor);
}

.full-product-info button{
    border: none;
}


.full-product-info input{
    border: 2px solid var(--defaultColor);
    height: 50px;
    border-radius: 50px;
    text-align: center;
}


#productDescription{
    width: 100%;
    margin-top: 50px;
}

#productDescription ul{
    padding-left: 18px;
}













/*System products*/
.system-products{
    width: 100%;
    gap: 50px;
    flex-wrap: wrap;
}

.system-product{
    flex: 1;
    flex-direction: column;
    background-color: rgba(248,248,248,1);
    aspect-ratio: 16/8;
    justify-content: end;
    max-width: 400px;
    min-width: 300px;
}

.system-product:hover{
    transform: translateY(-10px);
    transition: 0.3s;
    cursor: pointer;
}

.system-product-img{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.cars .system-product-img img{
    height: 60%;
    width: auto;
}
.system-product-img img{
    width: 100%;
    height: 100%;
}

.system-product-info {
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
    width: 100%;
    height: 65px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    color: white;
    font-weight: bold;
}

.system-products .system-product:nth-child(1) .system-product-info {
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%) !important;
    padding-right: 25px;
}

.system-products .system-product:nth-child(2) .system-product-info {
    background: var(--defaultColor);
    clip-path: none !important;
    justify-content: center !important;
    margin: 0;
}

.system-products .system-product:nth-child(3) .system-product-info {
    background: linear-gradient(80deg, var(--defaultColor) , var(--secondColor)) !important;
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%) !important;
    justify-content: start !important;
    padding-left: 25px;
}

.cars .system-product:nth-child(1) .system-product-info{
    clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%) !important;
    padding: 0;
    justify-content: center !important;
}


.system-product-img{
    background-color: rgba(248,248,248,1);
}

.system-product-info h3{
    color: var(--second_text_color);
    text-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    font-size: 20px;
}


/*INFO BANNER*/
.info-banner{
    width: var(--max-width);
    background: rgba(248,248,248,1);
    padding: 90px 35px 70px 35px;
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%) !important;
    flex-direction: column;
    gap: 25px;
    justify-content: start;
    align-items: start;
    margin-top: 50px;
    margin-bottom: 100px;
    position: relative;
}

.info-banner h3{
    color: var(--primary_text_color);
}



.info-banner p{
    font-weight: 400;
    color: var(--primary_text_color);
}

.info-banner a{
    width: 200px;
}



/*ACTIVITIES*/
.activity{
    padding-top: 50px;
    width: 100%;
    padding-bottom: 50px;
    background-image: url('/Images/element-wave.png');
    background-repeat:no-repeat;
    background-position: bottom;
}

.activity h2{
    width: var(--max-width);
}

.activity_container{
    width: var(--max-width);
    gap: 50px;
    flex-direction: column;
}
.activity_image{
    width: 50%;
    aspect-ratio: 16/12;
    min-width: 350px;
}


.activity_image img{
    height: 100%;
    width: 100%;
    box-shadow: -7px 7px 0px var(--defaultColor);
}

.activity-description{
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 25px;
    width: 100%;
}



.activity_block{
    width: 100%;
    align-items: start;
    justify-content: start;
    gap: 25px;
    min-width: 300px;
    flex-wrap: wrap;
}

.activity_card {
    background-color: rgb(245, 245, 245);
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 30px 20px;
    height: 90px;
    overflow: hidden;
    gap: 25px;
    transition: 0.5s !important;
    cursor: pointer;
    max-width: 400px;
    min-width: 300px;      /* minimální šířka */
    width: 100%;           /* automatické přizpůsobení šířky rodiči */
    flex: 1;
}

.activity_card:hover{
    border-bottom: 2px solid var(--defaultColor);
     transition: 0.05s !important;
}

.activity_card:nth-child(4){
    padding: 20px 20px;
}

.activity_card h3{
    font-size: 16px;
}

.icon_edit img{
    height: 30px;
}
.icon_edit{
    gap: 15px;
}

.activity-card-gaps{
    justify-content: space-between;
    width: 100%;
}

.activity-card-gaps img:last-child{
    height: 20px;
}

.activity_card_pressed{
    height: 200px;
    flex-direction: column;
    color: black;
    transition: 0.3s;
}






.footer-banner{
    padding: 25px 15px;
    background-color: rgb(245, 245, 245);
    background-size: cover;
    width: 100%;
}
.footer-banner-container{
    width: var(--max-width);
      gap: 100px;
}



.footer-banner-container button:hover{
    background-color: white !important;
    color: black !important;
    transition: 0.3s !important;
    cursor: pointer;
}

.footer-banner-info{
    flex-direction: column;
    gap: 10px;
    justify-content: start;
    align-items: start;
}

.footer-banner-info h3{
    color: var(--defaultColor);
    font-size: 20px;
}

.footer-banner-info p{
    color: black;
    font-size: 14px;
    font-weight: 400;
}
/*FOOTER ------------------------------------------------------------------*/
footer{
    background:white;
    width: 100%;
    padding: 50px 0px;
    background-size: cover;
}

.footer-container{
    width: var(--max-width);
    padding-bottom: 50px;
    border-bottom: 1px solid var(--defaultColor);
    gap: 50px;
}

.footer-left-block{
    flex-direction: column;
    gap: 20px;
    align-items: start;
    flex: 1;
}

.footer-logo{
    height: 50px;
}

.footer-logo img{
    height: 100%;
}

.footer-left-block p{
    color: black;
}
.footer-info{
    gap: 15px;
    width: 150px;
    justify-content: start;
    align-items: start;
}
.footer-info span{
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.footer-info a{
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.footer-info img{
    height: 25px;
}

.footer-blocks{
    flex: 2;
    gap: 50px;
}

.footer-block{
    flex-direction: column;
    flex: 1;
    gap: 25px;
    justify-content: start;
    align-items: center;
}

.footer-block h2{
    color: black;
    font-weight: 500;
    font-size: 23px;
}

.footer-block ul{
    list-style: none;
    flex-direction: column;
    gap: 25px;
    align-items: start;
    justify-content: start;
}
.footer-block ul li{
    align-items: center;
    justify-content: start;
    gap: 15px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    
}
.footer-block ul li a{
    color: black;
    font-family: "Inter", sans-serif;
}
.footer-block ul li img{
    height: 15px;
}


/*Product describe*/
.product-describe{
    width: 100%;
    align-items: start;
    position: relative;
}

.product-info-img{
    width: 300px;
    background-color: rgba(248,248,248,1);
    float: right;
    aspect-ratio: 16/10;
}

.product-info-img img{
    width: 100%;
    height: 100%;
}

.product-block{
    display: block;
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: start;
    width: 100%;
    float: left;
    flex-wrap: wrap;
}

.product-block p{
    margin: 35px 0px;
}

.product-block ul{
    list-style: none;
    margin: 35px 0px;
    flex-direction: column;
    gap: 15px;
    align-items: start;
    justify-content: start;
}

.product-block ul li{
    gap: 15px;
    justify-content: start;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.product-block ul li img{
    height: 13px;
}

.float-img{
    width: 500px;
    aspect-ratio: 16/9;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: rgba(248,248,248,1);
    margin-left: 50px;
    margin-bottom: 50px;
    gap: 25px;
    background-color: white;
}

.float-img img{
    width: 100%;
    height: 80%;
    position: relative;
    top: 20px;
}

.small{
    font-size: 14px;
}


/*ContactPage*/
.contact{
    padding-top: 100px;
    width: 100%;
}

#coop{
    margin-top: 25px;
}


.contact h3{
    font-size: 20px;
    font-weight: 600;
}

.contact-container{
    gap: 50px;
    align-items: start;
    width: var(--max-width);
}

.contact-block{
    flex-direction: column;
    gap: 30px;
    justify-content: start;
    align-items: start;
    width: 50%;
}

.contact-block a{
    color: black;
    font-weight: 600;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.contact-info{
    flex-direction: column;
    gap: 5px; 
    justify-content: start;
    align-items: start;
}

.contact-container form{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 50%;
    padding: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 25px;
    min-width: 300px;
    margin-bottom: 10px;
}

.contact-block span,.contact-block a{
     font-family: "Inter", sans-serif;
}

.contact-container form input{
    width: 100%;
    border: 2px solid var(--defaultColor);
    height: 45px;
    border-radius: 50px;
    padding-left: 15px;
}

.contact-container label{
    font-size: 15px;
    font-weight: 400;
}

.contact-container form textarea{
    width: 100%;
    border: 2px solid var(--defaultColor);
    height: 100px;
    border-radius: 20px;
    padding: 15px;
}

.contact-container form input[type='checkbox']{
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

.contact-container form button{
    border-radius: 50px;
    border: none;
}

.input-container{
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.terms{
    color: var(--defaultColor);
    cursor: pointer;
}

#terms-p{
    display: none;
}

/*CART FULL*/
.full-cart-header-section{
    padding: 30px 0px;
}

.full-cart-header{
    width: 100%;
}

.cart-points{
    flex-direction: column;
    position: relative;
}

.cart-points p{
    position: absolute;
    top: 60px;
    width: auto !important;
}

.cart-point{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(80deg, var(--defaultColor), var(--secondColor));
    position: relative;
}

.cart-points-disable{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
   background: rgba(248,248,248,1);
}

.cart-point span{
    color: var(--second_text_color);
    font-weight: 600;
}

.cart-line{
    flex: 1;
    height: 5px;
    background: linear-gradient(80deg, var(--secondColor), var(--defaultColor));
}

.cart-line-disable{
    flex: 1;
    height: 5px;
    background: rgba(248,248,248,1);
}

.full-cart{
    flex-direction: row;
    gap: 25px;
    justify-content: start;
    align-items: start;
    padding-top: 50px;
    flex-wrap: wrap;
}

.full-cart h2{
    width: 100%;
}
.summary-cart{
    flex: 0.6 !important;
    position: sticky;
    top: 25px;
}

.summary-cart span{
    font-size: 16px;
}

.count-flex{
    justify-content: start;
    align-items: start;
    width: 100%;
    gap: 15px;
}
.full-cart-items{
    flex: 1;
    gap: 25px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    background-color: rgba(248,248,248,1);
    padding: 25px;
    min-width: 300px;
}

.full-cart-item{
    width: 100%;
    justify-content: space-between;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 15px 25px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.05);
    background-color: white;
    flex-wrap: wrap;
    gap: 15px;
}

.full-cart-item.show {
    opacity: 1;
    transform: translateY(0);
}

#full-cart-items{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.full-cart-item img{
    height: 100%;
    height: 50px;
    width: 70px;
}

.product-name{
    height: 100%;
    gap: 15px;
}

.product-name span{
    font-weight: 600;
    color: var(--defaultColor);
}

.cart-input input{
    height: 40px;
    text-align: center;
    width: 70px;
    border: none;
    border: 1px solid rgba(248,248,248,1);
}

.cart-input button{
    background: var(--defaultColor);
    color: white;
    font-weight: 600;
    width: 40px;
    height: 40px;
    border: none;
}

.full-cart .button{
   align-self: flex-end;
}

.price-cart{
    width: 100%;
    justify-content: space-between;
}

.price-cart span{
    font-size: 20px;
    font-weight: 600;
}

.cart-blocks{
    flex-direction: column;
    gap: 15px;
    flex: 1
}

.cart-block{
    flex-direction: column;
    gap: 25px;
    width: 100%;
    background-color: rgba(248,248,248,1);
    padding: 25px;
    flex: 1;
    min-width: 300px;
}

.cart-block h3{
    align-self: start;
}

.cart-block p{
    align-self: start;
}

.checkbox-container{
    align-self: flex-end;
    gap: 10px;
}

.cart-radio{
    width: 100%;
    height: 45px;
    border: 1px solid rgb(245, 245, 245);
    border-radius: 50px;
    justify-content: space-between;
    padding: 0px 15px;
    background-color: white;
        box-shadow: inset 3px 3px 6px #bebebe,
              inset -3px -3px 6px #ffffff;
}

.cart-radio label{
    font-size: 14px;
}

.full-cart-delivery{
    flex-direction: row;
    align-items: start;
    justify-content: start;
}

.cart-flex{
    width: 100%;
    gap: 25px;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

.cart-buttons{
    width: 100%;
    gap: 25px;
    align-items: end;
    justify-content: end;
    flex-wrap: wrap;
}

.cart-block .input-container input{
    border: 1px solid rgb(245, 245, 245);
    background-color: white;
    height: 45px;
    border-radius: 50px;
    width: 100%;
    padding-left: 15px;
    box-shadow: inset 3px 3px 6px #bebebe,
              inset -3px -3px 6px #ffffff;
}

.cart-block .input-container label{
    font-size: 14px;
}


.thanks{
    justify-content: start;
    align-items: start;
}

