/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin-bottom: 10vh;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-left: 2vw;
}

.search-icon {
    font-size: 20px;
    color: black;
    margin-right: 4vw;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 18px;
    color: black;
    margin: 0;
}

.section-header a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.product-icon {
    font-size: 24px;
    color: #FFA500;
}

.product-info {
    margin-top: 10px;
}

.product-info p {
    margin: 5px 0;
    color: #555555;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #FFA500;
    padding: 10px 0;
    position:fixed;
    bottom: 0;
    width: 100%;
}

.footer-item {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.category:hover {
    background-color: #FFA500;
}

.product-card:hover {
    cursor: pointer;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.centered-info {
    text-align: center;
    margin-top: 25vh;
}

h2{
    text-decoration: underline;
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
    }
}