/* JaysGallery shop popup — WooCommerce sales integration */

.jaysgallery-shop-btn {
	position: absolute;
	top: 8px;
	left: 8px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 0;
	background: rgba( 0, 0, 0, 0.45 );
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jaysgallery-shop-btn:hover {
	background: rgba( 0, 0, 0, 0.7 );
}

.jaysgallery-shop-popup {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.6 );
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100001;
	padding: 20px;
}

.jaysgallery-shop-popup[hidden] {
	display: none;
}

.jaysgallery-shop-popup-inner {
	position: relative;
	background: #fff;
	color: #1e1e1e;
	border-radius: 6px;
	max-width: 480px;
	width: 100%;
	max-height: 86vh;
	overflow-y: auto;
	padding: 24px;
}

.jaysgallery-shop-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: transparent;
	border: 0;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	color: #1e1e1e;
	padding: 0.4em;
}

.jaysgallery-shop-loading,
.jaysgallery-shop-error {
	text-align: center;
	padding: 1em 0;
}

.jaysgallery-shop-product {
	display: flex;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.jaysgallery-shop-product:last-child {
	border-bottom: 0;
}

.jaysgallery-shop-product-media img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.jaysgallery-shop-product-info {
	flex: 1 1 auto;
	min-width: 0;
}

.jaysgallery-shop-product-title {
	margin: 0 0 6px;
	font-size: 1em;
}

.jaysgallery-shop-price {
	margin-bottom: 8px;
	font-weight: 600;
}

.jaysgallery-shop-variation-select {
	display: block;
	width: 100%;
	margin-bottom: 8px;
}

.jaysgallery-shop-qty {
	display: inline-block;
	margin-right: 8px;
	margin-bottom: 8px;
}

.jaysgallery-shop-qty-input {
	width: 60px;
}

.jaysgallery-add-to-cart,
.jaysgallery-add-to-cart-grouped {
	cursor: pointer;
}

.jaysgallery-shop-feedback,
.jaysgallery-shop-feedback-slot {
	margin-top: 6px;
	font-size: 0.85em;
	min-height: 1.2em;
}

.jaysgallery-shop-feedback.is-error,
.jaysgallery-shop-feedback-slot.is-error {
	color: #d63638;
}

.jaysgallery-shop-grouped-items {
	margin-bottom: 10px;
}

.jaysgallery-shop-grouped-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 0;
}

.jaysgallery-shop-grouped-name {
	flex: 1 1 auto;
}

@media ( max-width: 480px ) {
	.jaysgallery-shop-product {
		flex-direction: column;
	}
}
