* {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

.products-section {
    padding: 6rem 1rem;
    text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  color: #676770;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #8e8e9c;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-tab {
  background-color: #92a0ad;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.product-tab.active {
  background-color: #1c6ea4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  box-sizing: border-box;
}

.product-card {
  background-color: transparent;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 100%;
}

.product-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  line-height: 1.2;
  font-weight: 300;
  color: #676770;
  letter-spacing: 0.1em;
}

.product-description {
  font-size: 0.95rem;
  color: #8e8e9c;
  line-height: 1.4;
}

.product-grid {
  display: none;
}

.product-grid.active {
  display: grid;
}