#wsoe-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.wsoe-modal {
	width: 100%;
	max-width: 900px;
	max-height: calc(100vh - 32px);
	background: #ffffff;
	border-radius: 20px;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.25);
	margin: auto 0;
}

.wsoe-modal-inner {
	padding: 32px;
}

.wsoe-modal-header h2 {
	margin: 0;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	color: #111;
}

.wsoe-modal-message {
	margin-top: 14px;
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}

.wsoe-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.wsoe-product {
	border: 1px solid #ececec;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	background: #fff;
}

.wsoe-product-image img {
	width: 100%;
	max-width: 160px;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}

.wsoe-product-title {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.wsoe-product-price {
	margin-top: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.wsoe-add-to-cart {
	margin-top: 18px;
	width: 100%;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.wsoe-footer {
	position: sticky;
	bottom: 0;
	margin: 24px -32px -32px;
	padding: 16px 32px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.wsoe-no-thanks {
	background: transparent;
	border: 0;
	color: #777;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 12px 18px;
}

.wsoe-loading {
	pointer-events: none;
	opacity: 0.6;
}

@media screen and (max-width: 768px) {

	#wsoe-modal {
		align-items: flex-start;
		padding: 10px;
	}

	.wsoe-modal {
		max-height: calc(100vh - 20px);
		border-radius: 14px;
		margin: 0;
	}

	.wsoe-modal-inner {
		padding: 18px;
	}

	.wsoe-modal-header h2 {
		font-size: 22px;
	}

	.wsoe-modal-message {
		font-size: 14px;
		line-height: 1.5;
	}

	.wsoe-products {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 18px;
	}

	.wsoe-product {
		padding: 14px;
	}

	.wsoe-product-image img {
		max-width: 120px;
		max-height: 120px;
	}

	.wsoe-product-title {
		font-size: 14px;
	}

	.wsoe-product-price {
		font-size: 15px;
	}

	.wsoe-add-to-cart {
		padding: 12px 14px;
		font-size: 13px;
	}

	.wsoe-footer {
		margin: 18px -18px -18px;
		padding: 12px 18px;
	}

	.wsoe-no-thanks {
		width: 100%;
		background: #f3f3f3;
		color: #111;
		border-radius: 999px;
	}
}