/* ═══════════════════════════════════════════════════════
   ESIMVault Shop – Stylesheet
   ═══════════════════════════════════════════════════════ */

.esimvault-shop {
	--esv-blue:       #124F7C;
	--esv-blue-h:     #0e3d61;
	--esv-blue-soft:  #dbedf9;
	--esv-green:      #2ECC71;
	--esv-border:     #dde4eb;
	--esv-surface:    #ffffff;
	--esv-bg:         #f9f9f9;
	--esv-text:       #333333;
	--esv-muted:      #718096;
	--esv-radius:     14px;
	--esv-shadow:     0 4px 16px rgba(0,0,0,.08);
	--esv-shadow-lg:  0 8px 32px rgba(18,79,124,.16);

	max-width: 960px;
	margin: 0 auto;
	padding: 0 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--esv-text);
	box-sizing: border-box;
}

.esimvault-shop *, .esimvault-shop *::before, .esimvault-shop *::after {
	box-sizing: inherit;
}


/* ── Hero ───────────────────────────────────────────── */

.esv-search-section {
	background: linear-gradient(135deg, #2596BE 0%, #244163 100%);
	margin: 0 -16px;
	padding: 0 16px 40px;
	border-radius: 0;
}

.esv-hero {
	text-align: center;
	padding: 48px 16px 32px;
}

.esv-hero__title {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.15;
	color: #ffffff;
}

.esv-hero__sub {
	color: rgba(255,255,255,.85);
	font-size: 1.05rem;
	margin: 0;
}


/* ── Suchfeld ────────────────────────────────────────── */

.esv-search-wrap {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
}

.esv-search-icon {
	position: absolute !important;
	left: 18px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	color: var(--esv-muted);
	pointer-events: none;
	display: flex !important;
	align-items: center;
	z-index: 1;
	line-height: 1;
}

.esv-search-input {
	width: 100%;
	padding: 15px 20px 15px 50px;
	font-size: 1rem;
	border: 2px solid rgba(255,255,255,.4);
	border-radius: 50px;
	outline: none;
	background: rgba(255,255,255,.15);
	color: #ffffff;
	transition: border-color .18s, box-shadow .18s;
	-webkit-appearance: none;
}

.esv-search-input:focus {
	border-color: rgba(255,255,255,.8);
	box-shadow: 0 0 0 4px rgba(255,255,255,.15);
}

.esv-search-input::placeholder {
	color: rgba(255,255,255,.6);
}


/* ── Dropdown ────────────────────────────────────────── */

.esv-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: var(--esv-surface);
	border: 1px solid var(--esv-border);
	border-radius: var(--esv-radius);
	box-shadow: var(--esv-shadow);
	max-height: 340px;
	overflow-y: auto;
	z-index: 9999;
	display: none;
	scrollbar-width: thin;
}

.esv-dropdown::-webkit-scrollbar { width: 6px; }
.esv-dropdown::-webkit-scrollbar-track { background: transparent; }
.esv-dropdown::-webkit-scrollbar-thumb { background: var(--esv-border); border-radius: 99px; }

.esv-country-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	cursor: pointer;
	transition: background .12s;
}

.esv-country-item:hover,
.esv-country-item.is-active {
	background: var(--esv-blue-soft);
}

.esv-country-flag {
	font-size: 1.5rem;
	line-height: 1;
	flex-shrink: 0;
}

.esv-country-name {
	font-weight: 500;
	font-size: .95rem;
}

.esv-dropdown-empty {
	padding: 18px 16px;
	color: var(--esv-muted);
	font-size: .9rem;
	text-align: center;
}


/* ── Beliebte Reiseziele ─────────────────────────────── */

.esv-popular {
	text-align: center;
	margin-top: 24px;
	padding-bottom: 8px;
}

.esv-popular__label {
	font-size: .8rem;
	color: var(--esv-muted);
	letter-spacing: .04em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.esv-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.esv-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	background: var(--esv-surface);
	border: 1.5px solid var(--esv-border);
	border-radius: 50px;
	font-size: .88rem;
	font-weight: 500;
	cursor: pointer;
	color: var(--esv-text);
	transition: border-color .15s, color .15s, background .15s;
}

.esv-chip:hover {
	border-color: var(--esv-blue);
	color: var(--esv-blue);
	background: var(--esv-blue-soft);
}


/* ── Pakete: Header ──────────────────────────────────── */

.esv-packages-section {
	padding: 16px 0 48px;
}

.esv-packages-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding-top: 8px;
}

.esv-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid var(--esv-border);
	border-radius: 8px;
	background: var(--esv-surface);
	color: var(--esv-text);
	font-size: .9rem;
	font-weight: 500;
	cursor: pointer;
	transition: border-color .15s, color .15s;
}

.esv-back-btn:hover {
	border-color: var(--esv-blue);
	color: var(--esv-blue);
}

.esv-packages-country {
	font-size: 1.5rem;
	font-weight: 700;
}


/* ── Demo-Hinweis ────────────────────────────────────── */

.esv-demo-notice {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fef9c3;
	border: 1px solid #fde047;
	color: #92400e;
	border-radius: 8px;
	padding: 10px 16px;
	font-size: .85rem;
	margin-bottom: 20px;
}


/* ── Pakete: Grid ────────────────────────────────────── */

.esv-packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
}

@media (max-width: 480px) {
	.esv-packages-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 340px) {
	.esv-packages-grid { grid-template-columns: 1fr; }
}


/* ── Paket-Karte ─────────────────────────────────────── */

.esv-package-card {
	background: var(--esv-surface);
	border: 2px solid var(--esv-border);
	border-radius: var(--esv-radius);
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--esv-shadow);
	transition: transform .18s, border-color .18s, box-shadow .18s;
	cursor: default;
}

.esv-package-card:hover {
	transform: translateY(-3px);
	border-color: var(--esv-blue);
	box-shadow: var(--esv-shadow-lg);
}


/* Datenvolumen */
.esv-pkg-data {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--esv-blue);
	line-height: 1;
}

.esv-pkg-unit {
	font-size: 1rem;
	font-weight: 600;
	color: var(--esv-muted);
}

.esv-pkg-validity {
	font-size: .85rem;
	color: var(--esv-muted);
	margin-top: 5px;
}

.esv-pkg-providers {
	font-size: .75rem;
	color: var(--esv-muted);
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1.3;
}

.esv-pkg-providers svg {
	flex-shrink: 0;
	opacity: .6;
}

.esv-pkg-divider {
	border: none;
	border-top: 1px solid var(--esv-border);
	margin: 14px 0;
}

/* Preis */
.esv-pkg-price {
	font-size: 1.45rem;
	font-weight: 800;
	margin-bottom: 14px;
}

.esv-pkg-price .woocommerce-Price-amount { font-size: inherit; }
.esv-pkg-price .woocommerce-Price-currencySymbol { font-size: .85em; font-weight: 600; }

/* Button */
.esv-add-to-cart {
	display: block;
	width: 100%;
	padding: 11px 10px;
	background: var(--esv-blue);
	color: #fff !important;
	border: none;
	border-radius: 9px;
	font-size: .9rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .15s;
	margin-top: auto;
}

.esv-add-to-cart:hover {
	background: var(--esv-blue-h);
	color: #fff !important;
}

.esv-add-to-cart.is-demo {
	background: var(--esv-muted);
	cursor: not-allowed;
	pointer-events: none;
}

.esv-add-to-cart.is-loading {
	background: var(--esv-muted);
	cursor: wait;
	pointer-events: none;
}

.esv-add-to-cart.is-added {
	background: var(--esv-green);
	pointer-events: none;
}


/* ── Lade-Animation ──────────────────────────────────── */

.esv-loading {
	text-align: center;
	padding: 56px 20px;
	color: var(--esv-muted);
	grid-column: 1 / -1;
}

.esv-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid var(--esv-border);
	border-top-color: var(--esv-blue);
	border-radius: 50%;
	animation: esv-spin .75s linear infinite;
	margin: 0 auto 14px;
}

@keyframes esv-spin {
	to { transform: rotate(360deg); }
}

/* Keine Pakete */
.esv-no-packages {
	text-align: center;
	padding: 56px 20px;
	color: var(--esv-muted);
	grid-column: 1 / -1;
	font-size: 1rem;
}


/* ═══════════════════════════════════════════════════════
   Homepage Sections  [esimvault_homepage]
   ═══════════════════════════════════════════════════════ */

.esv-home {
	--esv-blue:      #124F7C;
	--esv-blue-h:    #0e3d61;
	--esv-blue-soft: #dbedf9;
	--esv-border:    #dde4eb;
	--esv-bg:        #f9f9f9;
	--esv-text:      #333333;
	--esv-muted:     #718096;
	--esv-radius:    14px;
	--esv-shadow:    0 4px 16px rgba(0,0,0,.08);
	--esv-shadow-lg: 0 8px 32px rgba(18,79,124,.16);
}

.esv-home-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.esv-home-section-title {
	font-size: clamp(1.3rem, 3vw, 1.7rem);
	font-weight: 800;
	margin: 0 0 30px;
	color: var(--esv-text);
	text-align: center;
}


/* ── USP Bar ──────────────────────────────────────────── */

.esv-home-usps-section {
	padding: 40px 20px;
	background: var(--esv-bg);
	border-top: 1px solid var(--esv-border);
}

.esv-home-usp-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 960px;
	margin-inline: auto;
}

.esv-home-usp-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 5px;
}

.esv-home-usp-icon {
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 6px;
}

.esv-home-usp-item strong {
	font-size: 1rem;
	font-weight: 700;
	color: var(--esv-text);
}

.esv-home-usp-item span {
	font-size: .82rem;
	color: var(--esv-muted);
}


/* ── Popular Destinations ─────────────────────────────── */

.esv-home-popular-section {
	padding: 60px 20px;
	background: #fff;
}

.esv-home-countries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 14px;
	max-width: 960px;
	margin-inline: auto;
}

.esv-home-country-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 12px;
	background: var(--esv-bg);
	border: 1.5px solid var(--esv-border);
	border-radius: var(--esv-radius);
	text-decoration: none;
	color: var(--esv-text);
	text-align: center;
	gap: 8px;
	transition: border-color .15s, transform .15s, box-shadow .15s;
}

.esv-home-country-card:hover {
	border-color: var(--esv-blue);
	transform: translateY(-3px);
	box-shadow: var(--esv-shadow-lg);
	color: var(--esv-text);
}

.esv-home-country-flag { font-size: 2rem; line-height: 1; }
.esv-home-country-name { font-size: .85rem; font-weight: 600; }

.esv-hero-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 20px;
	margin-top: 14px;
	font-size: .82rem;
	color: #94a3b8;
}

.esv-home-popular-more {
	text-align: center;
	margin-top: 20px;
	font-size: .9rem;
}

.esv-home-popular-more a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}

/* ── Trust-Sektion ─── */
.esv-home-trust-section {
	padding: 60px 20px;
	background: #f8fafc;
}

.esv-home-trust-intro {
	text-align: center;
	font-size: .95rem;
	color: #475569;
	max-width: 620px;
	margin: -8px auto 32px;
	line-height: 1.7;
}

.esv-home-trust-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}

.esv-home-trust-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 16px 18px;
}

.esv-home-trust-icon {
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.esv-home-trust-list strong {
	display: block;
	font-size: .93rem;
	color: #1e293b;
	margin-bottom: 3px;
}

.esv-home-trust-list p {
	font-size: .84rem;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

.esv-home-trust-list a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}


/* ── How It Works ─────────────────────────────────────── */

.esv-home-how-section {
	padding: 60px 20px;
	background: var(--esv-bg);
}

.esv-home-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 960px;
	margin-inline: auto;
}

.esv-home-step { text-align: center; position: relative; }

.esv-home-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #2563eb;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 auto 14px;
}

.esv-home-step__icon {
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}

.esv-home-step__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--esv-text);
}

.esv-home-step__text {
	color: var(--esv-muted);
	font-size: .88rem;
	line-height: 1.65;
	margin: 0;
}


/* ── FAQ ──────────────────────────────────────────────── */

.esv-home-faq-section {
	padding: 60px 20px 80px;
	background: #fff;
}

.esv-home-faq { max-width: 740px; margin-inline: auto; }


/* ── All Countries Grid ───────────────────────────────── */

.esv-countries-grid-wrap { padding: 20px 0; }

.esv-countries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}

.esv-countries-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--esv-border, #e2e8f0);
	border-radius: 10px;
	text-decoration: none;
	color: #1e293b;
	font-size: .88rem;
	font-weight: 500;
	transition: border-color .14s, background .14s;
}

.esv-countries-item:hover {
	border-color: #2563eb;
	background: #eff6ff;
	color: #1e293b;
}

.esv-countries-flag { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }


/* ── Geräteliste [esimvault_geraete] ──────────────────── */

.esv-devices {
	max-width: 900px;
	margin: 0 auto;
}

.esv-devices-intro-rich {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	padding: 22px 26px;
	margin-bottom: 36px;
	font-size: .96rem;
	line-height: 1.7;
	color: #1e293b;
}

.esv-devices-intro-rich p { margin: 0 0 10px; }
.esv-devices-intro-rich p:last-child { margin-bottom: 0; }

.esv-devices-updated {
	font-size: .8rem;
	color: #64748b;
	margin-top: 6px !important;
}

.esv-devices-section-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 20px;
}

/* ── Wie erkenne ich eSIM ─── */
.esv-devices-howto {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 28px;
	margin-bottom: 40px;
}

.esv-devices-howto-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.esv-devices-howto-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 20px 22px;
}

.esv-devices-howto-icon {
	color: #2563eb;
	margin-bottom: 10px;
}

.esv-devices-howto-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 12px;
}

.esv-devices-howto-card ol {
	margin: 0 0 12px;
	padding-left: 18px;
	font-size: .9rem;
	line-height: 1.7;
	color: #334155;
}

.esv-devices-howto-note {
	font-size: .82rem;
	color: #64748b;
	margin: 0;
	padding: 8px 10px;
	background: #f1f5f9;
	border-radius: 6px;
}

/* ── Geräteliste ─── */
.esv-devices-list-section { margin-bottom: 48px; }

.esv-devices-toolbar {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 32px;
}

.esv-devices-search {
	flex: 1;
	padding: 11px 16px;
	font-size: 1rem;
	border: 2px solid #cbd5e1;
	border-radius: 8px;
	outline: none;
	transition: border-color .15s;
}

.esv-devices-search:focus { border-color: #2563eb; }

.esv-devices-total {
	font-size: .85rem;
	color: #64748b;
	white-space: nowrap;
}

.esv-devices-brand {
	margin-bottom: 36px;
}

.esv-devices-brand__title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1e293b;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 8px;
	margin-bottom: 14px;
}

.esv-devices-brand__count {
	font-weight: 400;
	font-size: .82rem;
	color: #94a3b8;
	margin-left: 6px;
}

.esv-devices-brand__desc {
	font-size: .88rem;
	color: #475569;
	line-height: 1.6;
	margin: -6px 0 12px;
	padding: 10px 14px;
	background: #f8fafc;
	border-left: 3px solid #2563eb;
	border-radius: 0 6px 6px 0;
}

.esv-devices-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 8px;
}

.esv-devices-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: .88rem;
}

.esv-devices-name {
	flex: 1;
	font-weight: 500;
	color: #1e293b;
}

.esv-devices-model {
	font-size: .78rem;
	color: #94a3b8;
}

.esv-devices-badge {
	font-size: .75rem;
	font-weight: 600;
	color: #16a34a;
	background: #dcfce7;
	border-radius: 4px;
	padding: 2px 6px;
	white-space: nowrap;
}

/* ── FAQ ─── */
.esv-devices-faq {
	margin-bottom: 48px;
}

/* ── CTA ─── */
.esv-devices-cta {
	text-align: center;
	padding: 44px 28px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: 16px;
	margin-top: 12px;
}

.esv-devices-cta h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 8px;
}

.esv-devices-cta p {
	font-size: .95rem;
	color: #475569;
	margin-bottom: 22px;
}

.esv-devices-cta-countries {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

.esv-devices-cta-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid #bfdbfe;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 500;
	color: #1e40af;
	text-decoration: none;
	transition: background .14s, border-color .14s;
}

.esv-devices-cta-chip:hover {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
}

.esv-devices-cta__btn {
	display: inline-block;
	padding: 13px 36px;
	background: #2563eb;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background .15s;
}

.esv-devices-cta__btn:hover { background: #1d4ed8; color: #fff; }

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 600px) {
	.esv-home-popular-section,
	.esv-home-how-section,
	.esv-home-faq-section { padding: 44px 16px; }
	.esv-home-usps-section { padding: 32px 16px; }
	.esv-devices-list { grid-template-columns: 1fr; }
	.esv-devices-toolbar { flex-direction: column; align-items: stretch; }
	.esv-devices-howto-grid { grid-template-columns: 1fr; }
	.esv-devices-howto { padding: 18px; }
	.esv-devices-cta { padding: 28px 16px; }
	.esv-devices-cta-countries { gap: 6px; }
}

/* ── Reiseplaner (Multi-Länder eSIM Anfrage) ──────────────────────────── */

.esv-aq-wrap { max-width: 1400px; margin: 0 auto; }

.esv-aq-header { margin-bottom: 24px; }
.esv-aq-title  { font-size: 2rem; margin: 0 0 10px; }
.esv-aq-lead   { color: #555; line-height: 1.65; max-width: 760px; }

.esv-aq-card {
	background: #fff;
	border: 1px solid #e3e7ee;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,.05);
	margin-bottom: 20px;
}

/* Customer fields */
.esv-aq-fields  { display: flex; gap: 16px; flex-wrap: wrap; }
.esv-aq-field   { flex: 1; min-width: 240px; }
.esv-aq-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.esv-aq-field input,
.esv-aq-field select {
	width: 100%; padding: 9px 12px; border: 1px solid #d5d9e0;
	border-radius: 6px; font-size: 1rem; box-sizing: border-box;
	background: #fff; transition: border-color .15s;
}
.esv-aq-field input:focus,
.esv-aq-field select:focus { border-color: #2563eb; outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.15); }

/* Sticky navigation */
.esv-aq-sticky {
	background: #fff;
	border: 1px solid #e3e7ee;
	border-radius: 10px;
	padding: 12px 16px;
	box-shadow: 0 4px 14px rgba(0,0,0,.07);
	margin-bottom: 20px;
	z-index: 100;
}
.esv-aq-sticky--fixed {
	position: fixed;
	top: 0; left: 0; right: 0;
	border-radius: 0;
	box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.esv-aq-sticky-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.esv-aq-sticky-label { font-weight: 600; font-size: .9rem; white-space: nowrap; }

.esv-aq-nav { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.esv-aq-nav a {
	padding: 5px 10px; border: 1px solid #d5d9e0; border-radius: 6px;
	background: #f8fafc; text-decoration: none; color: #1f2d3d;
	font-size: .85rem; white-space: nowrap; transition: background .15s;
}
.esv-aq-nav a:hover { background: #eff6ff; border-color: #2563eb; color: #2563eb; }

/* Submit button */
.esv-aq-btn {
	background: #2563eb; color: #fff; border: none; padding: 10px 20px;
	border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 1rem;
	box-shadow: 0 2px 8px rgba(37,99,235,.3); transition: background .15s;
	white-space: nowrap;
}
.esv-aq-btn:hover   { background: #1d4ed8; }
.esv-aq-btn:disabled { background: #9ca3af; cursor: not-allowed; box-shadow: none; }

/* Message */
.esv-aq-msg { display: none; padding: 8px 12px; border-radius: 6px; font-size: .9rem; }
.esv-aq-msg--ok  { background: #ecfdf5; border: 1px solid #10b981; color: #065f46; }
.esv-aq-msg--err { background: #fef2f2; border: 1px solid #ef4444; color: #991b1b; }

/* Continent sections */
.esv-aq-cont-title { font-size: 1.25rem; margin: 16px 0 10px; padding-top: 16px; border-top: 1px solid #f0f2f7; }
.esv-aq-cont-title:first-child, .esv-aq-continent:first-child .esv-aq-cont-title { border-top: none; margin-top: 0; padding-top: 0; }

.esv-aq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 5px;
}

.esv-aq-row {
	display: flex !important; flex-direction: row !important;
	flex-wrap: nowrap !important; align-items: center !important;
	gap: 6px; padding: 6px 8px; border: 1px solid #e5e7eb;
	border-radius: 6px; background: #fafafa;
	transition: border-color .15s, background .15s;
	box-sizing: border-box;
}
.esv-aq-row:focus-within { background: #eff6ff; border-color: #2563eb; }

.esv-aq-label {
	display: flex !important; align-items: center; gap: 5px;
	flex: 1 1 0; min-width: 0; cursor: pointer; overflow: hidden;
}
.esv-aq-flag { font-size: 17px; flex-shrink: 0; line-height: 1; }
.esv-aq-name {
	font-size: .82rem; font-weight: 500; color: #1f2937;
	min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.esv-aq-gb {
	width: 72px !important; max-width: 72px !important;
	min-width: 72px !important; flex-shrink: 0 !important;
	padding: 4px 6px; border: 1px solid #d5d9e0;
	border-radius: 5px; text-align: center; font-size: .85rem;
	box-sizing: border-box; transition: border-color .15s;
}
.esv-aq-gb:focus { border-color: #2563eb; outline: none; }
.esv-aq-gb::-webkit-inner-spin-button,
.esv-aq-gb::-webkit-outer-spin-button { display: none; }
.esv-aq-gb { -moz-appearance: textfield; }

.esv-aq-actions { margin-top: 20px; text-align: center; }
.esv-aq-empty   { color: #888; font-style: italic; padding: 20px 0; }

/* scroll-margin so sticky nav doesn't cover headings */
.esv-aq-continent { scroll-margin-top: 120px; }

/* Modal */
.esv-aq-modal {
	display: none; position: fixed; inset: 0; z-index: 9999;
	background: rgba(0,0,0,.55); align-items: flex-start; justify-content: center;
	padding-top: 60px;
}
.esv-aq-modal[style*="flex"] { display: flex !important; }
.esv-aq-modal-box {
	background: #fff; border-radius: 14px; padding: 36px 32px;
	max-width: 480px; width: 90%; text-align: center;
	box-shadow: 0 12px 40px rgba(0,0,0,.2); position: relative;
}
.esv-aq-modal-close {
	position: absolute; top: 12px; right: 16px; background: none; border: none;
	font-size: 1.6rem; cursor: pointer; color: #888; line-height: 1;
}
.esv-aq-modal-close:hover { color: #111; }
.esv-aq-modal-icon {
	width: 72px; height: 72px; border-radius: 50%; background: #10b981;
	color: #fff; font-size: 2.5rem; line-height: 72px; margin: 0 auto 20px;
}
.esv-aq-modal-box h2 { margin: 0 0 12px; }
.esv-aq-modal-box p  { color: #555; }
.esv-aq-modal-box .esv-aq-btn { margin-top: 20px; }

@media (max-width: 700px) {
	.esv-aq-title  { font-size: 1.5rem; }
	.esv-aq-sticky-inner { flex-direction: column; align-items: flex-start; }
	.esv-aq-grid   { grid-template-columns: 1fr; }
	.esv-aq-gb     { width: 76px; }
}

/* ── Kreuzfahrt & Rundreise Homepage-Banner ─────────────────────────────── */
.esv-home-krf-section {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1d4ed8 100%);
	padding: 56px 0;
}
.esv-krf-banner {
	display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.esv-krf-badge {
	display: inline-block; background: #fbbf24; color: #1f2937;
	font-size: .72rem; font-weight: 800; text-transform: uppercase;
	letter-spacing: .08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.esv-krf-title {
	font-size: 2rem; font-weight: 800; color: #fff; margin: 0 0 12px;
	line-height: 1.2;
}
.esv-krf-sub {
	font-size: 1.05rem; color: #bfdbfe; margin: 0 0 20px; line-height: 1.6;
	max-width: 560px;
}
.esv-krf-bullets {
	list-style: none; margin: 0 0 28px; padding: 0;
	display: flex; flex-direction: column; gap: 8px;
}
.esv-krf-bullets li { color: #e0f2fe; font-size: .95rem; }
.esv-krf-btn {
	display: inline-block; background: #fbbf24; color: #1f2937;
	font-weight: 700; font-size: 1rem; padding: 14px 28px;
	border-radius: 8px; text-decoration: none;
	transition: background .15s, transform .1s; white-space: nowrap;
}
.esv-krf-btn:hover { background: #f59e0b; transform: translateY(-1px); color: #111; }
.esv-krf-visual {
	text-align: center; padding: 24px; background: rgba(255,255,255,.07);
	border-radius: 16px; min-width: 200px;
}
.esv-krf-flags { font-size: 2.5rem; margin-bottom: 16px; }
.esv-krf-countries {
	display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.esv-krf-countries span {
	background: rgba(255,255,255,.12); color: #e0f2fe;
	font-size: .82rem; padding: 4px 10px; border-radius: 20px;
}
@media (max-width: 768px) {
	.esv-krf-banner { grid-template-columns: 1fr; }
	.esv-krf-visual { display: none; }
	.esv-krf-title  { font-size: 1.5rem; }
}
