.product-list .views-row {
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  border-color: #2c3e50;
}

.product-image {
  width: 100%;
  height: 280px;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #495057;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #e0e0e0;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff6b6b;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.new {
  background: #51cf66;
}

.product-badge.sale {
  background: #ff6b6b;
}

.product-badge.out-of-stock {
  background: #868e96;
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  color: #868e96;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-description {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 1rem;
}

.rating-count {
  color: #868e96;
  font-size: 0.95rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
}

.price-group {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.85rem;
  color: #868e96;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 1.75rem;
  color: #2c3e50;
  font-weight: 700;
}

.price-vat {
  font-size: 0.95rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.old-price {
  text-decoration: line-through;
  color: #868e96;
  font-size: 1.15rem;
  margin-right: 0.5rem;
}

.add-to-cart {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.add-to-cart:hover {
  background: #1a252f;
  transform: scale(1.05);
}

.add-to-cart:disabled {
  background: #dee2e6;
  color: #868e96;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart:disabled:hover {
  background: #dee2e6;
  transform: none;
}

.product-card.out-of-stock {
  opacity: 0.75;
}

.product-card.out-of-stock .product-image {
  position: relative;
}

.product-card.out-of-stock .product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}

.product-actions {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: #2c3e50;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .page-header h1 {
    font-size: 2.25rem;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-wrap: wrap;
  }
}
.load-more {
  text-align: center;
  margin: 2rem 0;
}

.load-more-btn {
  background: white;
  border: 2px solid #2c3e50;
  color: #2c3e50;
  padding: 1rem 3rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #2c3e50;
  color: white;
}

/*# sourceMappingURL=product-listing.css.map */
