/* Shop Page Styles */

.shop-container {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 155px 20px 200px;
}

.shop-section {
  padding: 40px 0;
}

.shop-title {
  text-align: center;
  padding-bottom: 24px;
}

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-count {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: var(--blue-90);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-sort label {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-90);
  white-space: nowrap;
}

.shop-sort-select {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-100);
  background-color: #faf8f5;
  border: 1px solid var(--blue-40);
  border-radius: 8px;
  padding: 10px 36px 10px 16px;
  cursor: pointer;
  appearance: none;
  background-image: url("../images/icon-chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
}

.shop-sort-select:focus {
  outline: none;
  border-color: var(--orange-100);
}

/* Product grid - wrapping version for shop page */
.shop-products-list {
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
  .shop-products-list .iks-products-item {
    width: calc(33.333% - 14px);
  }
}

@media (max-width: 900px) {
  .shop-products-list .iks-products-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .shop-products-list .iks-products-item {
    width: 100%;
  }
}
