.uk-order-restriction-notice {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 24px;
	margin: 20px 0;
	background: #97C11F;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
	color: white !important;
	animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.uk-order-notice-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uk-order-notice-icon svg {
	width: 28px;
	height: 28px;
	stroke: white;
}

.uk-order-notice-content {
	flex: 1;
}

.uk-order-notice-content h3 {
	margin: 0 0 12px 0;
	font-size: 22px;
	font-weight: 700;
	color: white;
}

.uk-order-notice-content p {
	margin: 0 0 16px 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
}

.uk-order-notice-content a {
	color: white;
	text-decoration: underline;
	font-weight: 600;
}

.uk-order-notice-content a:hover {
	text-decoration: none;
}

.uk-order-register-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: white;
	color: #97C11F !important;
	font-weight: 600;
	font-size: 15px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.uk-order-register-button:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: #667eea;
}

.uk-order-register-button::after {
	content: '→';
	font-size: 18px;
	transition: transform 0.3s ease;
}

.uk-order-register-button:hover::after {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
	.uk-order-restriction-notice {
		flex-direction: column;
		gap: 16px;
		padding: 20px;
	}
	
	.uk-order-notice-icon {
		width: 40px;
		height: 40px;
	}
	
	.uk-order-notice-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.uk-order-notice-content h3 {
		font-size: 18px;
	}
	
	.uk-order-notice-content p {
		font-size: 14px;
	}
	
	.uk-order-register-button {
		font-size: 14px;
		padding: 10px 20px;
	}
}