/* Custom Base & Coffee Aesthetics */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  touch-action: manipulation;
}

/* Animations */
@keyframes springIn {
  0% {
    transform: scale(0.92) translateY(12px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.animate-spring {
  animation: springIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Vertical timeline connector lines */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: 15px;
  width: 2px;
  height: calc(100% - 22px);
  background-color: #EADBC8;
  z-index: 1;
}

.step-item.active-connector::after {
  background-color: #3D2314;
}

/* Scrollbar styling */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Input focus style */
input:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(200, 138, 88, 0.2);
}