.hv-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 99999;
}

.hv-popup-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.hv-popup-content {
	background-color: #fff;
	border-radius: 12px;
	padding: 30px;
	width: 90%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.hv-popup-overlay.is-active .hv-popup-content {
	transform: translateY(0);
}

.hv-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 5px;
}

.hv-popup-close:hover {
	color: #000;
}

.hv-order__title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
	color: #333;
}

.hv-order__sub {
	margin-top: 0;
	margin-bottom: 20px;
	color: #666;
	font-size: 15px;
}

.hv-order__grid {
	display: grid;
	gap: 12px;
}

.hv-order__btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-radius: 8px;
	text-decoration: none;
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	transition: all 0.2s ease;
	color: inherit;
}

.hv-order__btn:hover,
.hv-order__btn:focus {
	background-color: #e9ecef;
	border-color: #dee2e6;
	transform: translateY(-2px);
}

.hv-order__name {
	font-weight: 600;
	color: #333;
}

.hv-order__note {
	font-size: 13px;
	color: #888;
	background-color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
}
