/*
 * Cookie Consent Banner - GDPR Compliant
 */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    border-top: 3px solid #6B7F95;
}

.cookie-consent-hidden {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
    color: #1A2332;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text p:last-child {
    margin-bottom: 0;
}

.cookie-consent-text strong {
    font-weight: 600;
    color: #6B7F95;
}

.cookie-consent-text a {
    color: #6B7F95;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #7B8FA3;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #7B8FA3;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: #6A7E92;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 143, 163, 0.3);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #6B7F95;
    border: 2px solid #6B7F95;
}

.cookie-btn-decline:hover {
    background-color: #f5f7fa;
}

/* Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e5eb 100%);
    border: 2px dashed #6B7F95;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    transition: all 0.3s ease;
}

.map-placeholder.map-loaded {
    background: none;
    border: none;
    padding: 0;
    min-height: auto;
    display: block;
}

.map-placeholder-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder h3 {
    color: #6B7F95;
    margin-bottom: 12px;
    font-size: 22px;
}

.map-placeholder p {
    color: #4A5A6A;
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 500px;
}

.map-placeholder button {
    padding: 14px 32px;
    background-color: #7B8FA3;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder button:hover {
    background-color: #6A7E92;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 143, 163, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-text p {
        font-size: 13px;
        text-align: center;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .map-placeholder {
        padding: 40px 20px;
        min-height: 300px;
    }

    .map-placeholder-icon {
        width: 48px;
        height: 48px;
    }

    .map-placeholder h3 {
        font-size: 18px;
    }

    .map-placeholder p {
        font-size: 14px;
    }
}
