*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    text-decoration: none;
    outline: none;
    user-select: none;
    font-family: sans-serif;
    transition: .3s linear;
}


header {
    width: 100%;
    padding: 4px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #143414;
    color: white
}

header > .icons {
    display: flex;
    gap:1rem;
}

header > .icons > i {
    font-size: 30px !important;
    cursor: pointer;
}

header > .login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
    cursor: pointer
}

header > .login > i {
    color: transparent;
    -webkit-text-stroke:.2px white;
    font-size: 30px
}

header > .login > h2 {
    font-size: 15px
}

.main-block {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    padding: 0 34px;
    position: relative
}

.header-menu {
    width: 100%;
    padding: 17px 103px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.header-menu > img {
    width: 14%;
}

label {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8px;
    
}

label > input {
    width: 100%;
     height: 30px;
    border: none;
    border-bottom: 1px solid green;
    text-align: center;
    color: green
}
label > i {
    color: green;
    font-size: 20px !important;
}


.delivery {
    display: flex;
    flex-direction: column;
    gap:3px;
    justify-content: center;
    align-items: center
}


.delivery > h2 {
    font-size: 15px;
    background: gold;
    padding: 5px 20px;
    color: black;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.delivery > span {
    font-size: 20px;
    color: green
}
.cart-icons {
    position: relative;
}
.cart-icons > i {
    font-size: 40px !important;
    color: green;
    cursor: pointer;
}

.cart-icons > div {
    width: 30px;
    height: 30px;
    background: gold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: green;
    font-weight: bold;
    position: absolute;
    top: -13px;
    right: -10px;
    
}
.categories {
    width: 100%;
    padding: 20px 108px;
    display: flex;
    gap:2px;
}

.categories * {
    background: #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    padding: 15px 0;
    color: white;
    font-size: 20px;
    color: black;
    cursor: pointer
}

.categories *:hover {
    background: green;
    color: white;
}

.categories > div:nth-of-type(1) {
    background: gold;
    color: black
}

.products {
    width: 70%;
    min-height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 30px;
    margin-left: 25%;
}

.fruits {
    width: 32.2%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:1rem;
    color: white;
    background: #fff;
    color: #1e501e;
    border: .3px solid rgba(156, 156, 156, 0.43);
    box-shadow: 5px 6px 5px rgba(0, 0, 0, 0.14)
}

.image-frame {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.2), inset -2px -5px 10px white, 15px 15px 10px rgba(0,0,0,0.1), 15px 10px 15px rgba(0,0,0,0.25);
    border-radius: 50%;
    padding: 20px;
    animation: borders 2s linear infinite alternate;
    
}

@keyframes borders {
    to {
        box-shadow: inset -2px -5px 10px rgba(0,0,0,0.2), inset 2px 5px 10px white, 15px 15px 10px rgba(0,0,0,0.1), -15px -10px 15px rgba(0,0,0,0.25);
    }
}

.image-frame > img {
    width: 100%;
    animation: anim 1s linear infinite alternate;
} 


.prices {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;  
    gap:2px;
}


.prices > span {
    width: 50%; 
    border: 1px solid gray;
}

.prices > span > input {
    width: 60%;
    height: 30px;
    text-align: center;
    border: none;
}

.prices > span > span {
    color: black;
    width: 20%;
    padding-left: 8px;
    opacity: 0.5
}

.weight {
    pointer-events: none
}

.add-to-cart {
    width: 120px;
    height: 30px;
    background: gold;
    color: #1e501e;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 46% 54% 37% 63% / 70% 0% 100% 30%;
    box-shadow: 2px 1px 5px 0px black
}
.add-to-cart:hover {
    background: white;
    transform: scale(1.1);
    color: green;
    border-radius: 20px
}

.products-main {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap:3px;
    position: absolute;
    left: 100px;
    top: 30px;
}

.category-menu {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: .3px solid rgba(156, 156, 156, 0.43);
    padding: 10px;
    cursor: pointer;
    transition:  .1s
}

.category-menu:hover {
    background: #212121;
    color: white
}

.category-menu:hover > img {
    transform: translateX(-70px);
}

.category-menu > img {
    width: 15%;
    display: inline-block;
}


.slider {
    width: 100%;
    height: 555px;
    background: gold;
    position: relative
}

.next {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    cursor:pointer
}


.prev {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    cursor:pointer;
}



.arrow {
  border: solid white;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 3px;
  width: 30px;
  height: 30px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}


.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.cart {
    width: 600px;
    height: 500px;
    position: absolute;
    background: gold;
    z-index: 1;
    right: 109px;
    top: 16%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap:10px;
    padding: 20px;
    overflow: auto;
    display: none;
}

.total-count {
    width: 600px;
    height: 46px;
    position: absolute;
    background: white;
    z-index: 1;
    right: 109px;
    top: 626px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: green;
    font-weight: bold;
    display: none;
}

.showBlockes {
    display: flex;
}

.cart::-webkit-scrollbar {
    width: 0
}

.cart-item {
    width: 90%;
    height: 80px;
    padding: 10px 15px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-item > img {
    width: 10%;
}

.cart-item > h2 {
    font-size: 16px;
    text-decoration: underline;
    color: green
}

.cart-item > p {
    color: red;
    font-weight: bold;
}

.cart-item > button {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.food-category {
    width: 100%;
    height: 60px;
    background: gold;
    font-size: 20px;
    border: none;
}



.ilustration > img:hover {
    transform: scale(1.1);
        cursor: pointer
}

.ilustration * img:hover ~ p  {
    transform: translateY(20px);
    color: black
}

.ilustration {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:2rem;
}

.ilustration * {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: red;
    font-weight: bold
}

.fruits h2 {
    font-size: 15px
}


