/* TOBO Customer Products - Produkt-Grid */

.tobo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .tobo-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
}

.tobo-product-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.tobo-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tobo-product-image {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 12px;
}

.tobo-product-title {
  font-weight: 700;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.9);
  margin-bottom: 4px;
  line-height: 1.4;
}

.tobo-product-sku {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.6);
  font-weight: 600;
}

.tobo-products-empty {
  padding: 20px;
  background: rgba(17, 24, 39, 0.02);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 14px;
  text-align: center;
  color: rgba(17, 24, 39, 0.6);
  font-style: italic;
  margin: 20px 0;
}

.tobo-products-error {
  padding: 15px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  color: #856404;
  margin: 20px 0;
}

