* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
    width: 85%;
}

.card {
    width: 300px;
    height: 400px;
    border: 3px solid #d8d8d8;
    border-radius: 10px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.filter {
    width: 15%;
    height: 350px;
    border: 2px solid #d6d6d6;
    border-radius: 5px;
    background-color: #f1f1f1;
    
}

main {
    display: flex;
    justify-content: center;
    gap: -50px;
}

footer {
    height: 50px;
    background-color: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.categories {
    width: 80%;
    display: flex;
    gap: 10px;
    list-style: none;
    justify-self: center;
    padding: 0;
    border-bottom: 2px solid red;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.categories li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    color: black;
    display: flex;
    align-items: center;
    height: 75px;
}

.categories li.active {
    background-color: red;
    color: white;
    font-weight: bold;
}

.applyfilter {
    width: 80%;
    height: 40px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 7.5%;
    cursor: pointer;
}

.reset {
    width: 80%;
    height: 40px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    margin-left: 7.5%;
    cursor: pointer;
}

.cat {
    justify-self: center;
}

#sicxarelabel {
    margin-left: 7.5%;
}

#sicxare {
    margin-left: 7.5%;
    color: red;
}

.nuts {
    margin-left: 7.5%;
}

.vegetarian {
    margin-left: 7.5%;
}

.wrdfilter {
    justify-self: left;
    margin-bottom: 25px;
    margin-top: 5px;
}

input[type="range"] {
  -webkit-appearance: none;  
  width: 75%;
  height: 8px;  
  background: #ddd;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: #ff0000;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -6px;
  width: 20px;
  height: 20px;
  background: white;  
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #a74fa7;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 125px;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
    transition: 1s ease;
}

#mainHeader.scrolled {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 2px solid red;
    height: 100px;
    transition: 1s;
}

.maindiv1 {
    width: 50%;
    display: flex;
    justify-content: center;
    color: white;
}

.maindiv2 {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 75px;
    color: white;
} 

.tomatoimg {
    width: 100%;
    height: 300px;
    background: url(https://restaurant.stepprojects.ge/images/inner_banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: inherit;  
}


.foodimg {
    background-color: #d8d8d8;

}