/* Custom styles for СочиКлин */

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

/* Focus styles for accessibility */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
}

/* Range slider styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #FF6B35;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -8px;
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #FF6B35;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* FAQ accordion icon rotation */
.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* Transitions */
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-content {
  transition: max-height 0.3s ease;
}

/* Mobile menu styles (if needed later) */
@media (max-width: 768px) {
  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }
}
