/* ══════════════════════════════════════════════════════
   Google Maps — Cookie Consent Blocked Notice
   Shown on location search inputs (Car Rental / Transport)
   when Complianz has blocked the Google Maps script because
   the visitor rejected cookies.
══════════════════════════════════════════════════════ */

.gmaps-field-wrap {
    position: relative;
}

.gmaps-input-blocked {
    cursor: pointer !important;
    background-color: #f8fafc !important;
}

.gmaps-consent-notice {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 320px;
    max-width: 90vw;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    padding: 14px 16px;
    text-align: left;
    animation: gmapsNoticeIn 0.18s ease;
}

@keyframes gmapsNoticeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gmaps-consent-notice__icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1.2;
}

.gmaps-consent-notice__body {
    flex: 1;
    min-width: 0;
}

.gmaps-consent-notice__title {
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #b91c1c;
    margin: 0 0 4px;
}

.gmaps-consent-notice__text {
    font-family: inherit;
    font-size: 12.5px;
    line-height: 1.55;
    color: #475569;
}

.gmaps-consent-notice__close {
    flex-shrink: 0;
    background: none !important;
    border: none;
    cursor: pointer;
    color: #1e1e1e !important;
    font-size: 16px !important;
    line-height: 1 !important;
    padding: 0 !important ;
    margin-left: 4px;
}

.gmaps-consent-notice__close:hover {
    color: #475569;
}
#cmplz-manage-consent .cmplz-manage-consent {
    position: fixed !important;   
    right: 80px !important;     /* same horizontal alignment as WhatsApp */
    left: auto !important;
    z-index: 9998 !important;   /* just under WhatsApp's 9999 */
}

@media (max-width: 480px) {
    .gmaps-consent-notice {
        width: 280px;
    }
     #cmplz-manage-consent .cmplz-manage-consent {
        bottom: 90px !important;
        right: 15px !important;
    }
}