html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Quicksand", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.view {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.view.active {
  display: flex;
}

.safe-area-inset-bottom {
  padding-top: 8px;
  padding-bottom: 8px;
}

.safe-area-inset-bottom {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
}

#bottom-nav.safe-area-inset-bottom {
  height: auto;
  min-height: 4rem;
}

@supports (padding-bottom: constant(safe-area-inset-bottom)) {
  .safe-area-inset-bottom {
    padding-bottom: calc(constant(safe-area-inset-bottom) + 8px);
  }
}

#onboarding-view,
#main-app-view {
  position: relative;
  height: 100vh;
}

.spinner {
  border-top-color: #f97316;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;

    transform: scale(0.95);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;

    transform: translateX(20px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    transform: translate3d(0, -10px, 0);
  }

  70% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.5s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInFromRight 0.5s ease-out forwards;
}

.animate-bounce-once {
  animation: bounce 1s ease-out;
}

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

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-500 {
  animation-delay: 0.5s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

.animate-on-load {
  opacity: 0;

  transform: translateY(30px);
}

.tap-feedback {
  transition: all 0.15s ease;
}

.tap-feedback:active {
  transform: scale(0.97);

  opacity: 0.8;
}

* {
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.btn-enhanced {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-enhanced:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

#sidebar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  pointer-events: none;
}

#sidebar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 18rem;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(249, 115, 22, 0.1);
}

#sidebar-container.active {
  pointer-events: auto;
}

#sidebar-container.active #sidebar-overlay {
  opacity: 1;
}

#sidebar-container.active #sidebar {
  transform: translateX(0);
}

.modal-overlay {
  display: none;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  transition:
    transform 0.3s ease-out,
    opacity 0.3s ease-out;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}

.modal-overlay.active .modal-box {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}

.thumbnail.active,
.variant-btn.active {
  border-color: #f97316 !important;
}

.variant-btn.active {
  background-color: #fff7ed;
}

.nav-link.active {
  color: #f97316;

  background-color: #fff7ed;

  border: 1px solid #fed7aa;
}

.nav-link.active .nav-icon {
  transform: scale(1.05);
}

.nav-link.active .nav-text {
  font-weight: 600;
}

.category-filter-btn.active {
  color: #f97316;
  border-color: #f97316;
  background-color: #fff7ed;
}

.bg-orange-500,
.bg-orange-600,
.from-orange-400,
.from-orange-500,
.from-orange-600,
.to-orange-500,
.to-orange-600,
.bg-gradient-to-r.from-orange-500.to-orange-600,
.bg-gradient-to-br.from-orange-400.to-orange-600 {
  color: #fff !important;
}

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

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.draggable {
  cursor: grab;
  user-select: none;
}

.draggable.dragging {
  cursor: grabbing;
}

.postal-code-digit {
  width: 3rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;

  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;

  caret-color: #f97316;
}

.postal-code-digit:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

.postal-code-digit::-webkit-outer-spin-button,
.postal-code-digit::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.postal-code-digit[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.progress-bar-bg {
  background-color: #e5e7eb;
}

.progress-bar-fill {
  background-color: #f97316;
  transition: width 0.5s ease-in-out;
}

#global-loader {
  transition: opacity 0.3s ease-in-out;
}

.onboarding-slide {
  opacity: 0;

  transform: translateX(50px);

  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  pointer-events: none;
}

.onboarding-slide.active {
  opacity: 1;

  transform: translateX(0);

  pointer-events: auto;
}

.onboarding-slide.exiting {
  opacity: 0;

  transform: translateX(-50px);

  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-button {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

  border: none;

  border-radius: 16px;

  color: white;

  font-weight: 600;

  font-size: 17px;

  padding: 18px 32px;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);

  position: relative;

  overflow: hidden;
}

.apple-button:hover:not(:disabled) {
  transform: translateY(-2px);

  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}

.apple-button:active:not(:disabled) {
  transform: translateY(0);
}

.apple-button:disabled {
  opacity: 0.6;

  cursor: not-allowed;
}

.apple-button::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);

  transition: left 0.5s;
}

.apple-button:hover:not(:disabled)::before {
  left: 100%;
}

.apple-card {
  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border-radius: 24px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.06);

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.apple-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.1);
}

.progress-indicator {
  height: 6px;

  background: rgba(249, 115, 22, 0.1);

  border-radius: 3px;

  overflow: hidden;

  position: relative;
}

.progress-fill {
  height: 100%;

  background: linear-gradient(90deg, #f97316, #ea580c);

  border-radius: 3px;

  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;
}

.progress-fill::after {
  content: "";

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  width: 20px;

  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));

  animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.floating-icon {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-8px) rotate(1deg);
  }

  75% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

.onboarding-background {
  background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 50%, #fef3e2 100%);

  min-height: 100vh;

  position: relative;
}

.onboarding-background::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 40%;

  background: linear-gradient(135deg,
      rgba(249, 115, 22, 0.05) 0%,
      rgba(249, 115, 22, 0.02) 100%);

  border-radius: 0 0 50px 50px;
}

.pet-option-card {
  border: 2px solid #e5e7eb;

  border-radius: 20px;

  padding: 24px;

  text-align: center;

  cursor: pointer;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  background: white;

  position: relative;

  overflow: hidden;
}

.pet-option-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(135deg, #f97316, #ea580c);

  opacity: 0;

  transition: opacity 0.3s ease;
}

.pet-option-card.selected {
  border-color: #f97316;

  transform: translateY(-4px);

  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
}

.pet-option-card.selected::before {
  opacity: 0.05;
}

.pet-option-card .icon {
  font-size: 3rem;

  margin-bottom: 16px;

  transition: all 0.3s ease;

  position: relative;

  z-index: 1;
}

.pet-option-card.selected .icon {
  color: #f97316;

  transform: scale(1.1);
}

.pet-type-option {
  cursor: pointer;
}

.pet-type-option label {
  transition: all 0.3s ease;
}

.pet-type-option.selected label {
  border-color: #f97316 !important;

  background-color: #fff7ed;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.pet-type-option.selected label i {
  color: #f97316 !important;
}

.pet-type-option.selected label span {
  color: #f97316 !important;
}

#compact-onboarding-form input:focus,
#compact-onboarding-form select:focus {
  outline: none;

  border-color: #f97316;

  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

@media (max-width: 480px) {
  .apple-card {
    margin: 0 8px;

    padding: 16px;
  }

  .pet-option-card {
    padding: 16px;
  }

  .floating-icon {
    animation-duration: 6s;
  }

  #compact-onboarding-form {
    margin: 0;
  }

  #compact-onboarding-form .space-y-6>*+* {
    margin-top: 1rem;
  }

  #compact-onboarding-form .space-y-3>*+* {
    margin-top: 0.75rem;
  }
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select {
  border: 2px solid #e5e7eb;

  border-radius: 16px;

  padding: 16px 20px;

  font-size: 16px;

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  background: white;

  width: 100%;
}

/* Ensure emojis display in select elements */
select {
  font-family: "Quicksand", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;

  border-color: #f97316;

  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);

  transform: translateY(-2px);
}

.form-field label {
  font-weight: 600;

  color: #374151;

  margin-bottom: 8px;

  display: block;

  font-size: 15px;
}

.step-indicator {
  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 32px;
}

.step-dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: #d1d5db;

  margin: 0 6px;

  transition: all 0.3s ease;
}

.step-dot.active {
  background: #f97316;

  transform: scale(1.2);
}

.step-dot.completed {
  background: #10b981;

  transform: scale(1.1);
}

.welcome-animation {
  animation: welcome-bounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes welcome-bounce {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.shimmer {
  animation: shimmer 1.5s ease-in-out infinite;

  background: linear-gradient(to right, #f6f7f8 8%, #edeef1 18%, #f6f7f8 33%);

  background-size: 800px 100px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);

    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes dots {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.microsoft-loader {
  display: inline-block;

  width: 24px;

  height: 24px;

  border: 3px solid #f3f3f3;

  border-top: 3px solid #0078d4;

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

.dots-loader {
  display: inline-block;

  position: relative;

  width: 80px;

  height: 80px;
}

.dots-loader div {
  position: absolute;

  top: 33px;

  width: 13px;

  height: 13px;

  border-radius: 50%;

  background: #0078d4;

  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.dots-loader div:nth-child(1) {
  left: 8px;

  animation: dots 0.6s infinite;
}

.dots-loader div:nth-child(2) {
  left: 8px;

  animation: dots 0.6s -0.1s infinite;
}

.dots-loader div:nth-child(3) {
  left: 32px;

  animation: dots 0.6s -0.2s infinite;
}

.dots-loader div:nth-child(4) {
  left: 56px;

  animation: dots 0.6s -0.3s infinite;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);

  background-size: 200% 100%;

  animation: shimmer 1.5s infinite;
}

.skeleton-text {
  height: 16px;

  border-radius: 4px;

  margin-bottom: 8px;
}

.skeleton-title {
  height: 24px;

  border-radius: 6px;

  margin-bottom: 12px;
}

.skeleton-card {
  background: white;

  border-radius: 12px;

  padding: 16px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.splash-screen {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: clamp(2rem, 6vh, 3.5rem) clamp(1.5rem, 8vw, 3rem);

  background: linear-gradient(160deg, #ff8256 0%, #ff5f5f 45%, #ff8a4c 100%);

  z-index: 9999;

  transition: opacity 0.6s ease-out;

  color: white;

  overflow: hidden;
}

.splash-surface {
  width: 100%;

  min-height: clamp(28rem, 80vh, 40rem);

  max-width: 32rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  gap: clamp(1.5rem, 4vh, 2.5rem);
}

.splash-logo {
  width: 72px;

  height: 72px;

  background: rgba(255, 255, 255, 0.98);

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1.25rem;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);

  animation: pulse 2s ease-in-out infinite;
}

.splash-text {
  color: white;

  font-size: clamp(1.75rem, 4vw, 2.5rem);

  font-weight: 900;

  letter-spacing: -0.02em;

  margin-bottom: 0.5rem;

  text-align: center;

  animation: fadeIn 0.8s ease-out 0.2s both;
}

.splash-subtitle {
  color: rgba(255, 255, 255, 0.92);

  font-size: clamp(1rem, 2.8vw, 1.25rem);

  font-weight: 500;

  text-align: center;

  max-width: 18rem;

  animation: fadeIn 0.8s ease-out 0.35s both;
}

.splash-loader {
  display: flex;

  gap: 0.5rem;

  justify-content: center;

  align-items: center;

  margin-top: 1.5rem;
}

.splash-loader-dot {
  width: 12px;

  height: 12px;

  border-radius: 9999px;

  background: rgba(255, 255, 255, 0.92);

  animation: bounce 1s infinite;
}

.splash-loader-dot:nth-child(2) {
  animation-delay: 0.1s;
}

.splash-loader-dot:nth-child(3) {
  animation-delay: 0.2s;
}

.app-button {
  -webkit-tap-highlight-color: transparent;

  -webkit-touch-callout: none;

  -webkit-user-select: none;

  user-select: none;
}

.app-input {
  -webkit-appearance: none;

  appearance: none;

  -webkit-tap-highlight-color: transparent;
}

.no-select {
  -webkit-touch-callout: none;

  -webkit-user-select: none;

  -khtml-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;
}

.touch-target {
  min-height: 44px;

  min-width: 44px;
}

.bottom-sheet-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(4px);

  z-index: 80;

  display: none;

  align-items: flex-end;

  justify-content: center;

  opacity: 0;

  transition: opacity 0.3s ease-in-out;

  pointer-events: none;
}

.bottom-sheet-overlay.active {
  display: flex;

  opacity: 1;

  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;

  bottom: 0;

  left: 0;

  right: 0;

  max-width: 420px;

  margin: 0 auto;

  background: white;

  border-radius: 32px 32px 0 0;

  transform: translateY(100%);

  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  z-index: 90;

  max-height: 85vh;

  overflow-y: auto;

  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
}

.bottom-sheet.active {
  transform: translateY(0);
}

.bottom-sheet-handle {
  width: 40px;

  height: 4px;

  background: #d1d5db;

  border-radius: 2px;

  margin: 12px auto 8px;
}

.line-clamp-1 {
  overflow: hidden;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 1;

  line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;

  line-clamp: 2;
}

@media (max-width: 480px) {
  .grid.grid-cols-2 {
    gap: 0.5rem;
  }

  .grid .p-4 {
    padding: 0.75rem;
  }

  .grid .p-3 {
    padding: 0.5rem;
  }

  .grid img.h-36 {
    height: 8rem;
  }

  .grid .text-lg {
    font-size: 1rem;
  }
}

.fa,
.fas {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.far {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fab {
  font-family: "Font Awesome 5 Brands" !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

\n button[onclick^="reorderItems"],
button[onclick^="rateOrder"] {
  display: none !important;
}

#bottom-nav {
  display: none;

  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;
  max-width: 100% !important;

  height: 4rem !important;
  min-height: 4rem !important;

  margin-left: 0 !important;
  margin-right: 0 !important;

  padding-bottom: 0 !important;

  background-color: #ffffff !important;
  border-top: 1px solid #e5e7eb !important;

  z-index: 10000 !important;
}

\n #pause-days-slider {
  height: 28px;
}

#pause-days-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f97316 0%, #f97316 0%, #e5e7eb 0%);
  transition: background 0.25s;
}

#pause-days-slider::-moz-range-track {
  height: 8px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f97316 0%, #f97316 0%, #e5e7eb 0%);
  transition: background 0.25s;
}

#pause-days-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  background: #fff;
  border: 3px solid #f97316;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
  cursor: pointer;
  transition: transform 0.2s;
}

#pause-days-slider::-webkit-slider-thumb:hover {
  transform: scale(1.05);
}

#pause-days-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid #f97316;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
  cursor: pointer;
  transition: transform 0.2s;
}

#pause-days-slider::-moz-range-thumb:hover {
  transform: scale(1.05);
}