.btn {
	border: 0;
	border-radius: 10px;
	padding: 14px 22px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .2s;
}

.btn-primary {
	background: linear-gradient(135deg, #d7a84f, #936020);
	color: #111;
}

.btn-primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
}

.btn-dark {
	background: #1e1e1e;
	color: #fff;
	border: 1px solid #333;
}

.card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px;
	padding: 25px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .75);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.modal-overlay.active {
	display: flex;
}

.modal-box {
	width: 100%;
	max-width: 520px;
	background: #151515;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 18px;
	padding: 25px;
	position: relative;
	box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
}

.modal-close {
	position: absolute;
	top: 12px;
	right: 15px;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
}

.modal-open {
	overflow: hidden;
}

.modal-content h2 {
	margin-bottom: 15px;
	font-size: 28px;
}

.modal-text {
	color: rgba(255, 255, 255, .75);
	margin-bottom: 20px;
}

.modal-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
	padding: 15px;
	background: rgba(255, 255, 255, .06);
	border-radius: 12px;
}

.modal-pay-button {
	width: 100%;
}
.checkout-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.checkout-form label {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.checkout-form label span {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, .75);
}

.checkout-form input,
.checkout-form select {
	width: 100%;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	padding: 0 14px;
	outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus {
	border-color: rgba(215, 168, 79, .75);
}

.checkout-form option {
	background: #151515;
	color: #fff;
}