.product .img1_10 {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0.9rem;
	width: 100%;
	padding: 0 1rem 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	overscroll-behavior-x: contain;
	touch-action: pan-x;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: auto;
	scrollbar-color: #7ea9bf #e8f0f5;
	cursor: grab;
}

.product .img1_10::-webkit-scrollbar {
	height: 4rem;
}

.product .img1_10::-webkit-scrollbar-track {
	background: #e8f0f5;
	border-radius: 999px;
}

.product .img1_10::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, #5d97b4, #86b7cd);
	border-radius: 999px;
	border: 12px solid #e8f0f5;
}

.product .img1_10.is-dragging {
	cursor: grabbing;
}

.product .img1_10 img {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: 85vw;
	height: auto;
	max-height: 70vh;
	margin: 0;
	border-radius: 0.9rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
	cursor: zoom-in;
	user-select: none;
	-webkit-user-drag: none;
}

.product-window-modal {
	position: fixed;
	inset: 0;
	z-index: 15000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

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

.product-window-modal .product-window-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 15, 24, 0.72);
	backdrop-filter: blur(4px);
}

.product-window-modal .product-window-modal-dialog {
	position: relative;
	width: min(100%, 34rem);
	padding: 1rem 1rem 0.9rem;
	border-radius: 1rem;
	background: #ffffff;
}

.product-window-modal .product-window-modal-close {
	position: absolute;
	top: 0.8rem;
	right: 0.8rem;
	width: 2.2rem;
	height: 2.2rem;
	border: none;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.08);
	font-size: 1.4rem;
	line-height: 1;
	z-index: 1;
}

.product-window-modal .product-window-modal-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45vh;
	background: #edf3f8;
	border-radius: 0.9rem;
	overflow: hidden;
}

.product-window-modal .product-window-modal-media img {
	width: 100%;
	max-height: 60vh;
	object-fit: contain;
	display: block;
}

.product-window-modal .product-window-modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.4rem;
	height: 2.4rem;
	border: none;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.58);
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 1;
}

.product-window-modal .product-window-modal-prev {
	left: 0.5rem;
}

.product-window-modal .product-window-modal-next {
	right: 0.5rem;
}

.product-window-modal .product-window-modal-caption {
	margin-top: 0.8rem;
	text-align: center;
	font-size: 0.95rem;
	color: #334155;
}

body.product-window-modal-open {
	overflow: hidden;
}
