/* Modern Top Products Section Styles */
.top-products-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f0ff 100%);
  padding: 40px 0 60px 0;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
}
.top-products-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.top-product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.10);
  overflow: hidden;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.top-product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
}
.top-product-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(120deg, #e3f0ff 0%, #f8fafc 100%);
  padding: 24px 0 12px 0;
}
.top-product-info {
  padding: 18px 20px 24px 20px;
  text-align: center;
}
.top-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1976d2;
  margin-bottom: 8px;
}
.top-product-desc {
  font-size: 1rem;
  color: #444;
  opacity: 0.85;
}
@media (max-width: 1100px) {
  .top-products-section {
    gap: 20px;
  }
  .top-product-card {
    width: 90vw;
    max-width: 340px;
  }
}
@media (max-width: 700px) {
  .top-products-section {
    flex-direction: column;
    align-items: center;
    padding: 24px 0 36px 0;
  }
  .top-product-card {
    width: 98vw;
    max-width: 360px;
  }
  .top-products-title {
    font-size: 2rem;
  }
}
