.gallery {
  padding: 60px 0;
  text-align: center;
  background: #f8f8f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.gallery-grid img{width:100%;}
.categories {
  padding: 2rem 0;
  background: #e7e9e8;
}

.category-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.category-item {
  text-align: center;
  margin: 1rem;
}
.news {
  padding: 60px 0;
  text-align: center;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.news-card {
  max-width: 300px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
}
.news-card img{
	width: 100%;
}
.about {
  padding: 60px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-text h2 span {
  color: red;
}
.about-image {width:40vw;}
.about-image img {width:100%}
.about-text{width:40vw;}
.about-text ul {
  margin: 20px 0;
  list-style: none;
}

.delivery-info {
  padding: 50px 0;
  background: #fefefe;
  text-align: center;
}

.delivery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.products {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.product-filters {
  margin-bottom: 30px;
}

.filter {
  padding: 10px 15px;
  border: 2px solid #ddd;
  background: #fff;
  margin-right: 10px;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  border-color: red;
  color: red;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}
.product-card img{width:100%;}

@media (max-width: 768px) {
.about-content {
  display: block;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}	
	.about-image {width:90vw;}
.about-image img {width:100%}
.about-text{width:90vw;}
.about-text ul {
  margin: 10vw auto;
  list-style: none;
}
	}
@media (max-width: 480px) {
.about-content {
  display: block;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.about-image {width:90vw;}
.about-image img {width:100%}
.about-text{width:90vw;}
.about-text ul {
  margin: 10vw auto;
  list-style: none;
}


	}
