* {
  margin: 0;
  padding: 0;
}

header {
  background-color: #E56523;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #98C110;
}

.logo img {
  height: 75px;
}

nav ul {
  display: flex;
  margin: 0;
  font-family: Comic Sans MS, Comic Sans, cursive;
  font-size: 24px;
  padding: 20px;
}

nav li {
  margin-right: 70px;
}

nav a {
  text-decoration: none;
  color: white;
}

nav a:hover {
  color: #98C110;
}

.location img {
  height: 45px;
  margin-left: 0;
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 36px;
  font-family: Comic Sans MS, Comic Sans, cursive;
  margin-top: 50px;
  margin-bottom: 30px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product {
  box-sizing: border-box;
  display: flex;
  flex-basis: calc(26.7% - 130px);
  margin: 15px;
  transition: transform 0.3s ease-in-out;
  border: 1px solid #ccc;
  flex-direction: column;
  align-items: center;
  flex-grow: 0;
  border-radius: 10px;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s linear, visibility 0s linear 0.3s;
}

.product:hover .hidden {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transition-duration: 0.3s;
}

.product:hover {
  background-color: #eee;
  border-color: #333;
}

.product img {
  max-width: 99.5%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid #ccc;
  border-radius: 10px;


}

.product-title {
  font-size: 24px;
  font-family: Courier New, monospace;
  margin-top: 10px;
  margin-bottom: 5px;
}

.product .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  position: relative;
}

.product-price {
  font-size: 18px;
  font-family: Courier New, monospace;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;

}

.product-weight {
  font-family: Courier New, monospace;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.quantity {
  display: flex;
  margin-top: 10px;
  align-items: center;
}

.quantity input {
  width: 50px;
  text-align: center;
  margin-right: 5px;
}

.product:hover .quantity,
.product:hover .add-to-cart-button {
  display: flex;
}

footer {
  background-color: #98C110;
  color: #fff;
  padding: 2% 0;
  font-family: Comic Sans MS, Comic Sans, cursive;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
}

.contact-info h5 {
  text-align: center;
}

.contact-info img {
  width: 27.5%;
  height: auto;
  margin-right: 1%;
  margin-left: 10%;
}
h4 {
  font-family: Comic Sans MS, Comic Sans, cursive;
  text-align: center;
  margin-bottom: 20px;
}
