/* Cookie Banner Styles for Garda */

.garda-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #FFFFFF;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
}

.garda-cookie-banner.show {
    display: block;
}

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

.garda-cookie-text {
    flex: 1;
    min-width: 300px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #0C181A;
}

.garda-cookie-text a {
    color: #2F80ED;
    text-decoration: underline;
}

.garda-cookie-text a:hover {
    text-decoration: none;
}

.garda-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.garda-cookie-btn {
    padding: 10px 24px;
    border: 0;
    border-radius: 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #0C181A;
    color: #FFFFFF;
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.09);
}

.garda-cookie-btn:hover {
    background-color: #1a2d32;
}

.garda-cookie-leave {
    padding: 10px 24px;
    border: 0;
    border-radius: 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #EAEDF3;
    color: #0C181A;
    box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.09);
    display: inline-block;
}

.garda-cookie-leave:hover {
    background-color: #d4d8e0;
}

@media screen and (max-width: 768px) {
    .garda-cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .garda-cookie-text {
        margin-bottom: 15px;
    }
    
    .garda-cookie-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .garda-cookie-btn,
    .garda-cookie-leave {
        flex: 1;
    }
}

