/* Grid Layout */
.bzargo-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Tablet */
@media (min-width: 768px) {
  .bzargo-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .bzargo-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Product Image */
.product-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Product Info */
.product-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Title */
.product-title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
  min-height: 34px;
}

/* Price */
.product-price {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: bold;
}

/* Buttons */
.bzargo-button {
  padding: 8px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  margin-top: 6px;
}

.bzargo-button:hover {
  background: #e74c2f;
}

.bzargo-button-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* Card Container */
.bzargo-card {
  background: var(--card-bg);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}