.trc-os-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.trc-os-popup {
	position: relative;
	background: #fff;
	max-width: 480px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	animation: trc-os-fade-in 0.25s ease-out;
}

.trc-os-popup-image {
	width: 100%;
	line-height: 0;
}

.trc-os-popup-image img {
	display: block;
	width: 100%;
	height: auto;
}

.trc-os-popup-body {
	padding: 32px 28px;
}

@keyframes trc-os-fade-in {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.trc-os-popup-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.3;
	padding-right: 20px;
}

.trc-os-popup-message {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.trc-os-popup-message p:last-child {
	margin-bottom: 0;
}

.trc-os-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	padding: 0;
}

.trc-os-popup-close:hover {
	color: #000;
	background: #fff;
}

.trc-os-woo-notice {
	margin-bottom: 20px;
}
