@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

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

.modal {
	animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(20px);
	}

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

.drink-card {
	background: linear-gradient(145deg, #18181b, #27272a);
}

.drink-card .status-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 34px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 9999px;
	margin-left: auto;
	flex-shrink: 0;
}

@media (max-width: 640px) {
	.drink-card .status-badge {
		min-width: 105px;
		height: 32px;
		font-size: 12.5px;
	}
}
