body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
}

.chart-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: 300px;
  max-height: 400px;
}

@media (min-width: 768px) {
  .chart-container {
    height: 400px;
  }
}

.gradient-text {
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button {
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.filter-button.active {
  background-color: #f59e0b;
  color: #fff;
  font-weight: 600;
}

.hidden {
  display: none;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #f59e0b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Smaller, consistent icon size for all SVG icons */
.icon-svg {
  width: 20px;
  height: 20px;
  margin-bottom: 6px;
  stroke: #f59e0b;
  stroke-width: 2;
  fill: none;
}

/* Responsive icon sizing for larger devices */
@media (min-width: 640px) {
  .icon-svg {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1024px) {
  .icon-svg {
    width: 24px;
    height: 24px;
  }
}
