.cookie-consent {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 5000;
    display: none;
    max-width: 760px;
    margin: auto;
    padding: 20px;
    border-radius: 16px;
    background: #ffffff;
    color: #0b2545;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent h3 {
    margin: 0 0 8px;
    font-size: 21px;
}

.cookie-consent p {
    margin: 0;
    line-height: 1.5;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cookie-consent button {
    padding: 11px 20px;
    border-radius: 9px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__accept {
    border: 1px solid #16824b;
    background: #16824b;
    color: #fff;
}

.cookie-consent__reject {
    border: 1px solid #aebcc6;
    background: #fff;
    color: #0b2545;
}

.cookie-settings-button {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 4000;
    padding: 7px 11px;
    border: 1px solid #cad5dc;
    border-radius: 8px;
    background: #fff;
    color: #0b2545;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.14);
}

@media (max-width: 600px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 17px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent button {
        width: 100%;
    }
}

/* Скриване на постоянния бутон „Бисквитки“ */
.cookie-settings-button {
    display: none !important;
}

/* LEGAL_FOOTER_LINKS_START */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 14px;
    font-size: 14px;
}

.legal-links a,
.legal-links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.legal-links a:hover,
.legal-links button:hover {
    text-decoration: none;
}
/* LEGAL_FOOTER_LINKS_END */
