/* file: assets/style.css */
.dd-munich-notice {
	background-color: #fff3cd;
	color: #856404;
	border: 1px solid #ffeeba;
	padding: 12px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-weight: 500;
}
.woocommerce-warning.dd-munich-notice::before {
	content: "\e016";
	font-family: WooCommerce;
	margin-right: 8px;
	color: #856404;
}
.dd-munich-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #dc3545;
	color: #fff;
	padding: 4px 8px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 3px;
	z-index: 9;
	pointer-events: none;
}
.product .dd-munich-badge {
	left: 10px;
	right: auto;
}

/* Popup Overlay */
.dd-zipcode-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
}
.dd-zipcode-modal {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.dd-zipcode-modal h3 {
	margin-top: 0;
	margin-bottom: 15px;
}
.dd-zipcode-modal input[type="text"] {
	width: 100%;
	margin-bottom: 15px;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}
.dd-zipcode-modal button {
	width: 100%;
	padding: 12px;
	font-size: 16px;
}

/* Add to Cart button disabled state (Scenario 1 & 2) */
.dd-add-to-cart-disabled {
	opacity: 0.5;
	cursor: not-allowed !important;
	pointer-events: none;
}
