/* xl - DESKTOP STYLES */ 
.reservation-btn {
	font-family: Poppins, sans-serif;
	background-color: #b4000e;
	color: white;
	padding: 16px 35px;
	border-radius: 2px;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 2px;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	position: fixed;
	right: 5%;
	top: 25px;
	height: 120px;
	z-index: 9999;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reservation-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reservation-btn:hover { background-color: #a30511; }

.reservation-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    animation: clockTick 4s ease-in-out infinite 2s;
}

@keyframes clockTick {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}

.reservation-text-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1910px) {
    .reservation-btn {
        display: none!important;
    }
}

