

.gabo-products-block {
  padding: 2rem 0;
  margin-bottom: 20px;
}

.gabo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .gabo-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gabo-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  transition: box-shadow 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}


.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FFD700;
  color: #000;
  padding: 0.25rem 0.75rem;
  font-weight: bold;
  font-size: 0.875rem;
  z-index: 1;
  border-radius: 4px;
}

.product-image {
  margin-bottom: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.product-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.product-title {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  min-height: 3rem;
  line-height: 1.4;
  flex-grow: 1;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
}

.price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.875rem;
}

.price-current {
  font-weight: bold;
  font-size: 1.125rem;
  color: #333;
}

.no-products-message {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}