:root {
    --default-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --default-color: #1e293b;
    --background-color: #f5f7fb;

    --primary-color: #013aa2;
    --primary-light: rgba(1, 58, 162, .06);

    --border-color: #e5e9f2;
    --input-bg: #f8fafc;
    --muted: #64748b;

    --danger: #dc3545;
    --success: #198754;
}
body {
    font-family: var(--default-font);
    color: var(--default-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

.taxi-offer-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), #0b5ed7);
    color: #fff;
    box-shadow: 0 18px 45px rgba(1, 58, 162, .22);
}

.taxi-offer-hero-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.taxi-offer-badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: 13px;
    font-weight: 600;
}

.taxi-offer-hero h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.taxi-offer-hero p {
    max-width: 780px;
    margin: 8px 0 0;
    color: rgba(255,255,255,.88);
 font-size: 15.5px;
    line-height: 1.65;
}

.taxi-offer-hero {
    position: relative;
    transition: opacity .3s ease, transform .3s ease;
}

.taxi-offer-hero.hide {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Close Button */
.hero-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.hero-close:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}
.video-small {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.video-small video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767.98px) {
    .taxi-offer-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .taxi-offer-hero h1 {
        font-size: 24px;
    }
}

.modal-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

/* Wrapper */
.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon */
.modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(1, 58, 162, 0.1);
    color: var(--primary-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

/* Titel */
.modal-title {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

/* Subtitle */
.modal-title-wrapper small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.form-control:focus {
    box-shadow: none !important;
    outline: none;
}


.input-group-custom {
    position: relative;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all .2s ease;
}

.input-wrapper i {
    color: var(--muted);
    font-size: 16px;
}

.input-wrapper input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
}

/* Focus */
.input-wrapper:focus-within {
    border-color: var(--primary-color);
    background: #fff;
}

/* Valid */
.input-group-custom.is-valid .input-wrapper {
    border-color: var(--success);
}

/* Error */
.input-group-custom.is-invalid .input-wrapper {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220,53,69,.08);
}

	.taxi-wizard {
		background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
	}
	
	.taxi-wizard-nav {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0 0 28px 0;
    list-style: none;
	}
	
	.taxi-wizard-item {
    flex: 1;
	}
	
	.taxi-wizard-link {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px dashed #d9dee8;
    border-radius: 12px;
    background: #fff;
    color: #263043;
    text-align: left;
    transition: all .2s ease;
	}
	
	.taxi-wizard-link strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
	}
	
	.taxi-wizard-link small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #7b8495;
	}
	
	.taxi-wizard-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    border: 2px solid #d9dee8;
	}
	
	.taxi-wizard-item.active .taxi-wizard-link {
    border-color: #013aa2;
    background: rgba(1, 58, 162, .06);
    color: #013aa2;
	}
	
	.taxi-wizard-item.active .taxi-wizard-num {
    background: #013aa2;
    border-color: #013aa2;
    color: #fff;
	}
	
	.taxi-wizard-body {
    min-height: 260px;
	}
	
	.taxi-wizard-step {
    display: none;
	}
	
	.taxi-wizard-step.active {
    display: block;
	}
	
	.taxi-wizard-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid #edf0f5;
	}
	
	@media (max-width: 767.98px) {
    .taxi-wizard {
	padding: 18px;
    }
	
    .taxi-wizard-nav {
	flex-direction: column;
    }
	
    .taxi-wizard-link {
	min-height: 64px;
    }
	}
	
	.input-group-custom.is-invalid .input-wrapper {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .12);
	}
	
	.input-group-custom.is-valid .input-wrapper {
    border-color: #198754;
	
	}
	
	.input-error {
    display: none;
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
	}
	
	.input-group-custom.is-invalid + .input-error {
    display: block;
	}
	
	.customer-type-select {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
	}
	
	.customer-type-card {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
    position: relative;
	}
	
	.customer-type-card input {
    display: none;
	}
	
	.customer-type-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6c757d;
    transition: all .2s ease;
	}
	
	.customer-type-card .text strong {
    display: block;
    font-size: 14px;
	}
	
	.customer-type-card .text small {
    font-size: 12px;
    color: #6c757d;
	}
	
	/* Hover */
	.customer-type-card:hover {
    border-color: #013aa2;
	}
	
	/* Active */
	.customer-type-card.active {
    border-color: #013aa2;
    background: rgba(1, 58, 162, .05);
	}
	
	.customer-type-card.active .icon {
    background: #013aa2;
    color: #fff;
	}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #012f82;
    border-color: #012f82;
}

.swal2-show-soft {
    animation: swalFadeInUp 0.4s ease forwards;
}

.swal2-hide-soft {
    animation: swalFadeOutDown 0.3s ease forwards;
}

@keyframes swalFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
	}
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
	}
}

@keyframes swalFadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
	}
    to {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
	}
}
.swal2-popup {
	border-radius: 14px !important;
    backdrop-filter: blur(6px);
}





.map-box {
    position: relative;
    width: 100%;
    height: 320px;
    min-height: 320px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #eef2f7;
    overflow: hidden;
}

/* Google Map Container */
.map-box > div {
    width: 100% !important;
    height: 100% !important;
}

/* Fix für Google interne Elemente */
.map-box .gm-style {
    width: 100% !important;
    height: 100% !important;
}

/* Blocker */
.map-box-blocked {
    background: #f8fafc;
}

.map-blocker {
    position: absolute;
    inset: 0;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;
    text-align: center;
    background: #f8fafc;
}

/* Optional schöner */
.map-blocker .btn {
    margin-top: 10px;
}

.small-muted {
    font-size: 14px;
    color: var(--muted);
}

/* Route Cards */

.route-section {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
}

.route-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.route-section-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: var(--primary-light);
color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.route-section-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.route-section-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--muted);
}

/* Vehicle */

.route-vehicle-option,
.route-payment-option {
    display: block;
    cursor: pointer;
}

.route-vehicle-inner,
.route-payment-inner {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    overflow: hidden;
}

.route-vehicle-inner:hover,
.route-payment-inner:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(1, 58, 162, .12);
}

.route-vehicle-radio:checked + .route-vehicle-inner,
.route-payment-radio:checked + .route-payment-inner {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 58, 162, .14);
}

.route-vehicle-image {
    width: 100%;
    height: 115px;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
}

.route-vehicle-inner .p-3 {
    padding: 14px !important;
}

/* Payment */

.route-payment-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.payment-icon-small {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.route-payment-inner .flex-grow-1 {
    min-width: 0;
}

/* Checks */

.route-vehicle-check,
.route-payment-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
	box-shadow: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.route-vehicle-check {
    position: absolute;
    top: 12px;
    right: 12px;
}

.route-payment-check {
    margin-left: auto;
}

.route-vehicle-radio:checked + .route-vehicle-inner .route-vehicle-check,
.route-payment-radio:checked + .route-payment-inner .route-payment-check {
    display: flex;
}

/* Summary */

.summary-box {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #f8fafc;
}

/* 👉 exakt 50% */
.route-summary-item {
    flex: 1;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border-color);
}

/* Label */
.summary-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

/* Wert */
.summary-value {
    font-size: 18px;
    font-weight: 500;
    color: var(--default-color);
}

/* Waypoints */

.waypoint-row {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #f8fafc;
}

/* Textarea */

.textarea-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    transition: all .2s ease;
}

.textarea-wrapper:focus-within {
    border-color: var(--primary-color);
    background: #fff;
}

/* Icon */
.textarea-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 16px;
    color: var(--muted);
}

/* Textarea */
.textarea-wrapper textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding-left: 32px; /* Platz für Icon */
    resize: vertical;
    font-size: 14px;
}

/* Dataset */

.transfer-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.transfer-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dataset-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.dataset-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.dataset-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 22px;
}

.dataset-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(1, 58, 162, .2);
}

.dataset-heading {
    flex: 1;
}

.dataset-heading h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.dataset-heading p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.dataset-card-body {
    padding: 20px;
}

/* Vehicle Meta */

.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 13px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 7px;
    border-radius: 7px;
    background: #f1f5f9;
    color: var(--muted);
    font-weight: 600;
}

.meta-badge i {
    font-size: 12px;
}

/* Add Transfer Bottom */

.transfer-actions-bottom {
    display: flex;
    justify-content: flex-end;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--border-color);
}

.transfer-actions-bottom .btn {
    border-radius: 10px;
    padding: 10px 16px;
}

/* Responsive */

@media (max-width: 991.98px) {
    .route-section {
        padding: 20px;
    }

    .map-box {
        height: 260px;
        min-height: 260px;
    }

    .map-blocker {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .dataset-card-header,
    .route-section-header {
        align-items: flex-start;
    }

    .dataset-card-header {
        flex-direction: column;
    }

    .btn-remove-dataset,
    .transfer-actions-bottom .btn {
        width: 100%;
    }

    .summary-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .route-vehicle-image {
        height: 95px;
    }

    .route-payment-inner {
        align-items: flex-start;
    }
}

.request-section {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    padding: 24px;
}

/* Header */
.request-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.request-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.request-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.request-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--muted);
}

/* Body */
.request-body {
    display: flex;
    flex-direction: column;
}

/* Terms Box */
.terms-box {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    background: #f8fafc;
}

.terms-box .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-box label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--default-color);
}

.terms-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-box a:hover {
    text-decoration: underline;
}

.submit-loader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dunkler Hintergrund */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.submit-loader.active {
    opacity: 1;
    visibility: visible;
}

/* Box größer & moderner */
.loader-box {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 40px 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Spinner größer */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e6ecf3;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

/* Text mittig + sauber */
.loader-text {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2d3d;
    text-align: center;
}

/* Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.vehicle-card-body {
    min-height: 110px;
}

.vehicle-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.vehicle-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    margin-bottom: 6px;
}

.vehicle-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;

    background: rgba(0, 0, 0, 0.65);
    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;

    padding: 4px 8px;
    border-radius: 999px;

    backdrop-filter: blur(4px);
}

@media (max-width: 767.98px) {

    body.index-page {
        background: #fff;
    }

    .wizard-wrap {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .card-body.p-4 {
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .card-body.p-4 > .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .taxi-wizard {
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .taxi-wizard-nav {
        margin-bottom: 24px;
    }

    .taxi-wizard-link {
        background: #fff;
    }

    .php-email-form,
    .form-card,
    .contact {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .input-wrapper {
        border-radius: 12px;
        padding: 16px;
    }

    .input-wrapper input {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {

    /* GRID → alles untereinander */
    .route-section .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Card komplett killen */
    .route-vehicle-inner {
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    /* Wrapper auch weg */
    .route-section {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
    }

    /* Bild größer & full */
    .route-vehicle-image {
        height: 160px;
        border-radius: 12px;
    }

    /* Inhalt sauber untereinander */
    .route-vehicle-inner .p-3 {
        padding: 12px 0 !important;
    }

    /* Abstand zwischen Fahrzeugen */
    .route-vehicle-option {
        margin-bottom: 20px;
        display: block;
    }

    /* Check Icon bleibt */
    .route-vehicle-check {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 767.98px) {

    .request-section {
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0 !important;
    }

    .request-header {
        padding-bottom: 18px;
        margin-bottom: 18px;
        border-bottom: 1px solid var(--border-color);
    }

    .request-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .request-header h4 {
        font-size: 22px;
    }

    .textarea-wrapper {
        border-radius: 12px;
        padding: 14px 16px;
        background: var(--input-bg);
    }

    .textarea-wrapper textarea {
        min-height: 150px;
        font-size: 15px;
    }

    .terms-box {
        border-radius: 12px;
        padding: 16px;
        background: var(--input-bg);
    }
}

.pac-container {
    z-index: 99999 !important;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    font-family: var(--default-font);
}

/* einzelne Einträge */
.pac-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--default-color);
    cursor: pointer;
    transition: all .15s ease;
}

/* Hover */
.pac-item:hover {
    background: var(--primary-light);
}

/* aktiver Eintrag */
.pac-item-selected {
    background: var(--primary-light);
}

/* Haupttext (Straße) */
.pac-item-query {
    font-weight: 600;
    color: var(--default-color);
}

/* Secondary Text (PLZ, Ort) */
.pac-matched {
    font-weight: 600;
    color: var(--primary-color);
}

/* Google Branding kleiner + dezenter */
.pac-logo:after {
    opacity: 0.5;
    transform: scale(0.9);
}