/* CSS Document */


.products-section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0 40px;
}

.products-section .item {
  width: calc(33.333% - 20px);
  background: #f5f2e7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
  .products-section .item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .products-section .item {
    width: 100%;
  }
}
.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #2C2C34;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.category-item {
  position: relative;
  padding: 0 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
}

.category-item::before {
  content: "|";
  color: #4A90E2;
  position: absolute;
  left: 0;
  top: 0;
}

.products-section.parallax-section .item {
 
  min-height: 600px;
}