.bestseller-widget {
  margin: 40px 0;
  text-align: center;
}

.bestseller-widget .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.bestseller-widget .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

.bestseller-widget .product-item {
  border: 1px solid #eee;
  border-radius: 10px;
  border-color: #0f5500;
  box-shadow: 0 2px 8px rgb(67, 198, 30);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 220px;
  background: #1c2818;
}

.bestseller-widget .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgb(24, 255, 16);
  border-color: #0f5500;
}

.bestseller-widget .product-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}

.bestseller-widget .product-name {
  font-size: 1rem;
  margin-bottom: 8px;
  min-height: 2.5em;
}

.bestseller-widget .price {
  font-weight: bold;
  color: #2e8b57;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .bestseller-widget .section-title {
    font-size: 1.5rem;
  }
  .bestseller-widget .product-item {
    max-width: 80%;
  }  
}

