.shop-hero {
  background: #f0f4f8;
  padding: 60px 20px;
}

.shop-hero-content {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.shop-label {
  font-size: 13px;
  font-weight: 600;
  color: grey;
  margin-bottom: 12px;
}

.shop-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.shop-hero-content p {
  font-size: 15px;
  color: grey;
}

.products-section {
  width: min(1120px, 92%);
  margin: 40px auto;
}

.shop-filters {
  text-align: center;
  margin-bottom: 20px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  width: 100%;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f9f9f9;
  border-radius: 12px;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-price {
  color: dimgray;
  font-weight: 700;
  margin-bottom: 16px;
}

.add-to-cart-btn {
  width: 100%;
  background-color: black;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.add-to-cart-btn:hover {
  opacity: 0.8;
}

.add-to-cart-btn.added {
  background-color: #ebebeb !important;
  color: #888 !important;
  border: 1px solid #d8d8d8;
  pointer-events: none;
}

.qty-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  overflow: hidden;
  height: 42px;
}

.qty-btn {
  background: #f9f9f9;
  border: none;
  width: 40px;
  height: 100%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #ebebeb;
}

.qty-number {
  font-weight: 700;
  font-size: 16px;
  flex-grow: 1;
  text-align: center;
}

.out-of-stock-btn { background-color: #ccc; 
  cursor: not-allowed;
   color: #666; 
  }