.go-shop-buy-btn {
	display: inline-block;
	cursor: pointer;
	border: none;
	text-decoration: none;
	text-align: center;
	line-height: 1.4;
}
.go-shop-buy-btn--disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.go-shop-buy-btn-full-yes .go-shop-buy-btn {
	display: block;
	width: 100%;
}

/* Safety net for the JS removal in buy-button.js: WooCommerce's own
   add-to-cart.js inserts a sibling ".added_to_cart" link next to any
   ".ajax_add_to_cart" button on success. Scoped strictly to this widget's
   own wrapper -- never hides ".added_to_cart" anywhere else on the site. */
.go-shop-buy-btn-wrap .added_to_cart {
	display: none !important;
}

.go-shop-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 20px;
}
.go-shop-modal {
	background: #fff;
	border-radius: 8px;
	max-width: 420px;
	width: 100%;
	padding: 24px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}
.go-shop-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #111;
}
.go-shop-modal__image {
	max-width: 100%;
	height: auto;
	margin-bottom: 12px;
	border-radius: 4px;
}
.go-shop-modal__title {
	margin: 0 0 8px;
	font-size: 16px;
}
.go-shop-modal__price {
	margin-bottom: 16px;
	font-size: 15px;
}
.go-shop-variation-field {
	margin-bottom: 12px;
}
.go-shop-variation-field label {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
}
.go-shop-variation-field select {
	width: 100%;
	padding: 8px;
}
.go-shop-variation-notice {
	color: #cc1919;
	font-size: 13px;
	margin: 8px 0;
}
.go-shop-modal__submit {
	width: 100%;
	padding: 12px;
	margin-top: 8px;
	background: #111;
	color: #fff;
}

body.go-shop-modal-open {
	overflow: hidden;
}
