:root {
	--pad-accent: #ffa73a;
}

.pad-choice {
	margin-bottom: 12px;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.pad-choice__buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.pad-btn {
	appearance: none;
	border: none;
	padding: 12px 10px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.3px;
	cursor: pointer;
	background: #f5f5f5;
	color: #333;
	transition: background 0.2s ease, color 0.2s ease;
}

.pad-btn.is-active {
	background: var(--pad-accent);
	color: #fff;
}

.pad-choice__status {
	padding: 10px 12px;
	border-top: 1px solid #eee;
	font-size: 13px;
	color: #666;
	background: #fff;
}

.pad-choice__status.pad-muted {
	color: #666;
}

.pad-choice__status.pad-ok {
	color: #0f7b37;
}

.pad-choice__status.pad-error {
	color: #c0392b;
}

.pad-choice__status.pad-error {
	color: #c0392b;
}

.single_add_to_cart_button.pad-locked {
	opacity: 0.6;
	cursor: not-allowed;
}

.pad-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.pad-modal[hidden] {
	display: none;
}

.pad-modal__box {
	background: #fff;
	padding: 20px 22px;
	border-radius: 12px;
	max-width: 420px;
	width: 92%;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	position: relative;
}

.pad-modal__close {
	position: absolute;
	right: 12px;
	top: 10px;
	border: none;
	background: transparent;
	font-size: 20px;
	cursor: pointer;
}

.pad-modal__title {
	margin: 0 0 8px;
	font-size: 18px;
}

.pad-modal__input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid #dcdcdc;
	margin-bottom: 10px;
	font-size: 15px;
}

.pad-modal__submit {
	width: 100%;
	background: var(--pad-accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 700;
	cursor: pointer;
}

.pad-modal__result {
	margin-top: 10px;
	font-size: 14px;
}

.pad-modal__result.pad-muted {
	color: #666;
}

.pad-modal__result.pad-error {
	color: #c0392b;
}

.pad-modal__result.pad-ok {
	color: #0f7b37;
}

body.pad-modal-open {
	overflow: hidden;
}
