body {
  font-family: "IBM Plex Mono", monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2em;
  margin: 10px 20px;
  padding: 0;
}

main {
  min-height: 100vh;
}

/* Header Styles */
.header {
  display: flex;
  margin: 0;
  padding: 0;
  background-image: url("../assets/GIF1.gif");
  width: 100%;
  height: 15vh;
  align-items: end;
  justify-content: space-between;
}

.product-categories {
  margin: 0 0;
  padding: 0 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  list-style: none;
}

.category {
  display: flex;
  flex-direction: row;
  width: 15vw;
  margin: 0;
  background-color: white;
  border: solid #006d8f;
  border-width: 0 2px 2px 0;
  border-radius: 8px 8px 0 0;
  padding: 20px 5px;
  justify-content: center;
  cursor: pointer;
}

.category:hover {
  background-color: #ddd;
}

.category > a {
  text-decoration: none;
  color: black;
}

.active-category {
  background-color: #006d8f;
}

.active-category > a {
  color: white;
}

.account-info {
  display: flex;
  flex-direction: row;
}
.fa-solid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 20px;
  width: 20px;
  text-decoration: none;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 15px;
  color: black;
  background-color: white;
}

.fa-solid:hover {
  background-color: #ddd;
}

/* Product Styles */
#product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.product-card {
  border: 1px solid #ddd;
  margin: 10px;
  padding: 15px;
  width: 200px;
  cursor: pointer;
  max-height: 60vh;
}

.product-card img {
  max-width: 100%;
}

.product-card button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.modal-content img {
  max-width: 100%;
}

.modal-content button {
  font-family: "IBM Plex Mono", monospace;
  border: none;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  width: 15vh;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.add-to-cart-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.add-to-cart-button:hover {
  background-color: #46a049;
}

.add-to-cart-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* Footer styles */
footer {
  background-color: #006d8f;
  color: white;
  padding: 20px;
  text-align: center;
}

footer a {
  color: white;
}

footer p {
  color: white;
}
.contact,
.social-media {
  margin-bottom: 20px;
  color: white;
}

.contact h3,
.social-media h3 {
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

.social-media a {
  display: block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
}

/* FAQ */

.faq-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

main > h1 {
  text-align: center;
  color: #333;
}

.faq-item {
  margin-bottom: 20px;
}

main > h3 {
  color: #333;
}

p {
  color: #666;
}

.faq-item > ul > li > a {
  color: #666;
}
