/* Custom transitions and animations */
.guest-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.guest-card.entering {
  animation: slideIn 0.35s ease-out forwards;
}
.guest-card.leaving {
  animation: slideOut 0.3s ease-in forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slideOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.95); }
}

.shopping-card {
  transition: all 0.3s ease;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ec4899;
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 0 0 4px rgba(236,72,153,0.2);
  transition: box-shadow 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(236,72,153,0.35);
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: #334155;
  border-radius: 2px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #475569;
}

.glass-panel {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
}

.drink-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
}
