/* General styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Header */

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 200px;
}


.banner img {
  width: 100%;
}

/* Products section */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
}

.product {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 1rem;
  padding: 1.5rem;
  width: 300px;
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}

.product:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
}

footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer p {
  margin-bottom: 0.5rem;
}
.order-button {
  display: inline-block;
  background-color: red; 
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-top: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: darkred; 
}
.discounted-price {
  color: red;
}
.product-id {
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.product p {
  margin-top: 2px;
  margin-bottom: 2px;
}
/* Add the following new CSS */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.filters {
  margin-bottom: 20px;
}

.filters-toggle {
  display: none;
  background-color: transparent;
  border: 2px solid darkgray;
  color: darkgray;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.filters h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.filters p {
  margin-bottom: 5px;
}

.filters-container {
  position: relative;
}

@media (min-width: 768px) {
  .filters {
    padding-left: 40px;
  }

  .filters-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .filters {
    display: none;
  }

  .filters-toggle {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
