/* Custom styles for Cool Incense website */

/* Base styles */
body {
  font-family: 'Space Grotesk', sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.misty-overlay {
  background: linear-gradient(0deg, rgba(16, 25, 34, 0.9) 0%, rgba(16, 25, 34, 0.4) 50%, rgba(16, 25, 34, 0) 100%);
}

.form-input:focus {
  border-color: #137fec !important;
  box-shadow: 0 0 0 1px #137fec !important;
}

.payment-radio:checked + div {
  border-color: #137fec;
  background-color: rgba(19, 127, 236, 0.05);
}

.glass-panel {
  background: rgba(40, 48, 57, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Navigation indicator */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #137fec;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-item:hover .nav-indicator {
  transform: scaleX(1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  section {
    padding: 4rem 1rem !important;
  }
}

/* Animation for the checkmark on the thank you page */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Hover effects for product images */
.product-image-container {
  transition: transform 0.3s ease;
}

.product-image-container:hover {
  transform: scale(1.02);
}

/* Button hover effects */
.btn-hover-scale {
  transition: transform 0.2s ease;
}

.btn-hover-scale:hover {
  transform: scale(1.03);
}

/* Fade-in animations for sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}