/* Cookie Banner Styles - Corporate Design */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(51, 122, 183, 0.97) 0%, rgba(45, 109, 163, 0.97) 100%);
    color: white;
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(51, 122, 183, 0.3);
    border-top: 3px solid #337ab7;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    margin-right: 30px;
}

.cookie-text h4 {
    margin: 0 0 12px 0;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #337ab7;
}

.cookie-buttons .btn-primary:hover {
    background-color: white;
    border-color: white;
    color: #2d6da3;
}

.cookie-buttons .btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cookie-buttons .btn-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    background: transparent;
    border: none;
}

.cookie-buttons .btn-link:hover {
    color: white;
    text-decoration: underline;
}

/* Privacy Settings Button - Corporate Design */
.privacy-settings-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.privacy-settings-btn .btn {
    border-radius: 300px;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #337ab7;
    border: none;
    color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.35s;
}

.privacy-settings-btn .btn:hover {
    background-color: #2d6da3;
    color: white;
}

.privacy-settings-btn .btn:active {
    transform: translateY(-1px);
}

/* Map Placeholder - Corporate Design */
.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 3px dashed #337ab7;
    border-radius: 8px;
}

.map-placeholder-content {
    text-align: center;
    padding: 30px;
}

.map-placeholder-content h4 {
    color: #337ab7;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
}

.map-placeholder-content p {
    color: #495057;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.map-placeholder-content .btn {
    margin-top: 20px;
    border-radius: 300px;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #337ab7;
    border: none;
    color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.35s;
}

.map-placeholder-content .btn:hover {
    background-color: #2d6da3;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 0;
    }

    .cookie-text h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cookie-text p {
        font-size: 13px;
        line-height: 1.4;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 13px;
        padding: 10px 15px;
        border-radius: 25px;
        margin-bottom: 6px;
    }

    .cookie-buttons .btn-link {
        margin-top: 0;
        font-size: 12px;
        max-width: 200px;
    }

    .privacy-settings-btn {
        bottom: 15px;
        right: 15px;
    }

    .privacy-settings-btn .btn {
        padding: 8px 12px;
        font-size: 10px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons .btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .cookie-buttons .btn-link {
        font-size: 11px;
    }
}