/* ===== floating ===== */
.floating-wrap { position: fixed; right: 30px; bottom: 40px; display: flex; flex-direction: column; gap: 10px; z-index: 900; }
.floating-wrap .btn-floating { width: 55px; height: 55px; border-radius: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s, opacity 0.2s; }
.floating-wrap .btn-floating:hover { transform: translateY(-3px); }
.floating-wrap .btn-floating img { width: 28px; height: 28px; }
.floating-wrap .btn-floating-calendar { background: #0075FF; box-shadow: 4px 4px 4.5px 0 rgba(255, 255, 255, 0.15) inset; }
.floating-wrap .btn-floating-top { background: #000F35; box-shadow: 4px 4px 4.5px 0 rgba(255, 255, 255, 0.15) inset; }

@media (max-width: 768px) {
	.floating-wrap { right: 16px; bottom: 24px; gap: 5px; }
	.floating-wrap .btn-floating { width: 50px; height: 50px; border-radius: 12px; }
	.floating-wrap .btn-floating img { width: 25px; height: 25px; }
}
