/* Store Catalog page styles */

.store-catalog {
  max-width: 1200px;
  margin: 0 auto;
}

.store-catalog h2 {
  color: #333;
  margin-bottom: 0;
}

.store-catalog h2 .fa {
  margin-right: 8px;
}

/* Product card */
.catalog-product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #dee2e6;
}

.catalog-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product image */
.catalog-product-image {
  height: 200px;
  object-fit: cover;
  background-color: #f8f9fa;
}

/* Price display */
.catalog-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #28a745;
}

/* Category tag badges */
.catalog-tag {
  cursor: pointer;
  border: 1px solid #dee2e6;
  font-size: 0.75rem;
}

.catalog-tag:hover {
  background-color: #e9ecef;
}

/* Toast notification */
.catalog-toast {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1050;
  min-width: 300px;
}

/* Card footer */
.catalog-product-card .card-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

/* Search input */
.store-catalog .input-group-text {
  background-color: #f8f9fa;
}

/* Badge styles */
.store-catalog .badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 8px;
}

/* Add to cart button */
.store-catalog .btn-success {
  font-weight: 600;
}

.store-catalog .btn-success .fa {
  margin-right: 4px;
}
