/* Jam Inventory Styles */

#jam-inventory {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  flex: 0 1 300px;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Left-align content on larger screens when cards are side by side */
@media (min-width: 768px) {
  .product-card {
    text-align: left;
  }
  
  .featurette-icon-container {
    text-align: center;
  }
}

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

.product-card.out-of-stock {
  opacity: 0.6;
  background: #f5f5f5;
}

.featurette-icon-container {
  margin-bottom: 1rem;
}

.featurette-icon-container i.in-stock {
  color: #4CAF50;
}

.featurette-icon-container i.out-of-stock {
  color: #999;
}

.inventory-status {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.size-breakdown {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.85rem;
}

.size-count {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: #e3f2fd;
  border-radius: 4px;
  font-size: 0.8rem;
}

.text-success {
  color: #4CAF50;
}

.text-danger {
  color: #f44336;
}

.section-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Filter Styles */
.inventory-filters {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.inventory-filters h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #495057;
}

.inventory-filters label {
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}

.filter-select {
  font-size: 0.9rem;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

#filter-results {
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

