@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--cookie-bg); 
    color: var(--cookie-text); 
    padding: 15px 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif !important; 
    font-style: normal;
    line-height: 1.5;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

#cookie-banner.show {
    display: block;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text p {
    margin: 2px 0;
}

.cookie-text a {
    color: var(--cookie-link); 
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 250px;
}

.cookie-btn {
    width: 100%;
    padding: 8px 0;
    border-radius: 20px;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--cookie-btn-acc-bg); 
    color: var(--cookie-btn-acc-text); 
    border: 1px solid var(--cookie-btn-acc-bg);
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

.cookie-btn.decline {
    background: transparent;
    color: var(--cookie-btn-dec-text);
    border: 1px solid var(--cookie-btn-dec-border); 
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-buttons {
        width: 100%;
    }
}
