/* GTA Vapes Shopify Bridge - storefront styles */

.gtav-store-bar {
	background: #141a26;
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 8px 12px;
}
.gtav-store-bar a {
	color: #18c29c;
	text-decoration: underline;
}
.gtav-store-bar__choose {
	font-weight: 600;
}

/* Stock badges */
.gtav-stock {
	display: inline-block;
	font-size: 13px;
	margin-top: 4px;
}
.gtav-stock.gtav-in {
	color: #0e8e74;
}
.gtav-stock.gtav-oos {
	color: #b3261e;
}
.gtav-pdp-stock {
	margin: 10px 0;
	font-size: 14px;
}
.single_add_to_cart_button.gtav-disabled {
	opacity: 0.5;
	pointer-events: none;
}

/* Checkout options on cart page */
.gtav-checkout-options {
	margin-top: 10px;
}
.gtav-checkout-store {
	margin-bottom: 8px;
	font-size: 14px;
}
.gtav-checkout-btn {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 8px;
}

/* Modal */
.gtav-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
}
.gtav-modal.is-open {
	display: block;
}
.gtav-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 26, 38, 0.6);
}
.gtav-modal__panel {
	position: relative;
	max-width: 460px;
	margin: 10vh auto 0;
	background: #fff;
	border-radius: 12px;
	padding: 28px 26px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.gtav-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: 0;
	background: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #6a7585;
}
.gtav-modal__title {
	margin: 0 0 4px;
	font-size: 20px;
}
.gtav-modal__sub {
	margin: 0 0 16px;
	color: #5a6675;
	font-size: 14px;
}
.gtav-postal-form {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}
.gtav-postal-input {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #cdd5e0;
	border-radius: 8px;
	text-transform: uppercase;
}
.gtav-store-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gtav-store-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #eef1f5;
}
.gtav-store-item__info span {
	display: block;
	font-size: 12px;
	color: #6a7585;
}
.gtav-error {
	color: #b3261e;
	font-size: 14px;
}
.gtav-loading {
	color: #6a7585;
}
