.product-section {
  background: #0A0A0A;
  padding: 3.5vw;
  font-family: "Montserrat", sans-serif;
}

.fixed-controls {
  position: relative;
  top: 1.5vw;
  left: -3.4vw;
  right: 0;
  width: 99vw;
  background-color: rgba(5, 158, 31, 0);
  padding: 0.4vw 4vw;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.2vw solid #70fa00;
  transition: background-color 0.3s ease;
  height: 6vw;
}
.fixed-controls.scrolled {
  background-color: #0f0f0f;
}
.fixed-controls .sort-options,
.fixed-controls .filter-options {
  display: flex;
  align-items: center;
}
.fixed-controls .sort-options label,
.fixed-controls .filter-options label {
  font-size: 1vw;
  color: #fff;
  margin-right: 1vw;
}
.fixed-controls .sort-options select,
.fixed-controls .filter-options select {
  font-size: 1vw;
  background-color: #1a1a1a;
  color: #fff;
  border: 0.2vw solid #70fa00;
  border-radius: 0.5vw;
  padding: 0.3vw 0.7vw;
}
.fixed-controls .filter-options {
  margin-left: -4.9vw;
}
.fixed-controls .customize-button {
  background-color: #70fa00;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  padding: 0.6vw 1.4vw;
  border-radius: 1vw;
  font-size: 1vw;
  transition: all 0.3s;
}
.fixed-controls .customize-button:hover {
  transform: scale(1.03);
}

.spacer {
  height: 2.5vw;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  margin-top: 2vw;
}

.product-card {
  background-color: #1a1a1a;
  border: 0.2vw solid transparent;
  border-radius: 1vw;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: scale(1.03);
}
.product-card .price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #70fa00;
  color: #111;
  font-weight: bold;
  padding: 0.6vw 1.2vw;
  border-bottom-left-radius: 2vw;
  font-size: 1.3vw;
  box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.product-image {
  height: 18vw;
  background-size: cover;
  background-position: center;
}

.product-content {
  padding: 1.2vw;
  text-align: center;
}
.product-content h3 {
  font-size: 1.4vw;
  margin: 0 0 0.8vw;
  color: #70fa00;
}
.product-content .description {
  font-size: 1.1vw;
  color: #ccc;
  margin-bottom: 0.8vw;
}

/* ===== MOBILE VERSION (max 800px) ===== */
@media (max-width: 800px) {
  .fixed-controls {
    top: 12vw;
    flex-direction: row;
    justify-content: space-between;
    gap: 1vw !important;
    padding: 4vw;
    height: auto;
    background-color: rgba(5, 158, 31, 0) !important;
  }
  .fixed-controls .sort-options {
    display: none;
  }
  .fixed-controls .filter-options label {
    font-size: 4vw;
    margin-left: 5vw !important;
  }
  .fixed-controls .filter-options select {
    font-size: 3.5vw;
    padding: 1vw 2vw;
    border-radius: 2vw;
  }
  .fixed-controls .customize-button {
    font-size: 3vw;
    padding: 2vw 4vw;
    border-radius: 5vw;
  }
  .spacer {
    height: 16vw !important;
  }
  .product-card {
    border-radius: 3vw !important;
  }
  .product-card .price-badge {
    font-size: 4vw;
    padding: 2vw 4vw;
    border-bottom-left-radius: 5vw;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 6vw;
  }
  .product-image {
    height: 60vw;
    border-radius: 3vw 3vw 0 0;
  }
  .product-content {
    padding: 4vw;
  }
  .product-content h3,
  .product-content .description {
    font-size: 4vw;
  }
}

/*# sourceMappingURL=products.css.map */
