/* DHL DDP — Country Selector Popup */

/* ── Shared ─────────────────────────────────────────────────────────────── */
.dhl-ddp-popup {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	z-index: 999999;
}

.dhl-ddp-popup__title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
}

.dhl-ddp-popup__text {
	margin: 0 0 16px;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.dhl-ddp-popup__field {
	margin-bottom: 16px;
}

.dhl-ddp-popup__select {
	width: 100%;
	padding: 10px 12px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	appearance: auto;
	color: #333;
}

.dhl-ddp-popup__select:focus {
	outline: none;
	border-color: #d40511;
	box-shadow: 0 0 0 2px rgba(212, 5, 17, 0.15);
}

.dhl-ddp-popup__actions {
	text-align: right;
}

.dhl-ddp-popup__btn--primary {
	display: inline-block;
	padding: 10px 28px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #d40511;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s;
}

.dhl-ddp-popup__btn--primary:hover {
	background: #b8040f;
}

.dhl-ddp-popup__btn--primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ── Modal style ────────────────────────────────────────────────────────── */
.dhl-ddp-popup--modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dhl-ddp-popup--modal .dhl-ddp-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.dhl-ddp-popup--modal .dhl-ddp-popup__content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 28px 32px;
	max-width: 440px;
	width: 90%;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	animation: dhlDdpSlideIn 0.3s ease;
}

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

/* ── Bar style ──────────────────────────────────────────────────────────── */
.dhl-ddp-popup--bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__content {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: #fff;
	border-bottom: 2px solid #d40511;
	padding: 14px 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dhl-ddp-popup--bar .dhl-ddp-popup__title {
	margin: 0;
	font-size: 15px;
	white-space: nowrap;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__text {
	display: none;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__field {
	flex: 1;
	min-width: 200px;
	margin-bottom: 0;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__select {
	padding: 8px 10px;
	font-size: 14px;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__actions {
	margin: 0;
}

.dhl-ddp-popup--bar .dhl-ddp-popup__btn--primary {
	padding: 8px 20px;
	font-size: 14px;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
	.dhl-ddp-popup--modal .dhl-ddp-popup__content {
		padding: 20px;
		width: 95%;
	}

	.dhl-ddp-popup--bar .dhl-ddp-popup__content {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.dhl-ddp-popup--bar .dhl-ddp-popup__actions {
		text-align: center;
	}
}
