/* OfficeCoffeeMakers.com - Custom Styles */

.hero-gradient {
  background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #d97706 100%);
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
input:focus {
  ring: 2px;
  ring-color: #d97706;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b45309;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-gradient {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}