/* =========================================
   COOKIE CONSENT BANNER
   ========================================= */
[hidden] {
    display: none !important;
}
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;

    width: 100%;
    box-sizing: border-box;

    background: #ffffff;
    border-top: 1px solid #d9d9d9;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);

    padding: 20px;
}
.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cookie-consent-text {
    flex: 1;
}
.cookie-consent-text strong {
    display: block;
    margin-bottom: 7px;

    font-size: 18px;
    line-height: 1.3;

    color: #111111;
}
.cookie-consent-text p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #444444;
}
.cookie-consent-text a {
    color: #0066cc;
    text-decoration: underline;
}
.cookie-consent-text a:hover {
    text-decoration: none;
}
.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-button {
    min-height: 46px;

    padding: 11px 18px;

    border-radius: 5px;
    border: 2px solid #111111;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}
.cookie-accept {
    background: #111111;
    color: #ffffff;
}
.cookie-accept:hover {
    background: #333333;
}
.cookie-reject {
    background: #ffffff;
    color: #111111;
}
.cookie-reject:hover {
    background: #f3f3f3;
}
/* =========================================
   COOKIE SETTINGS FOOTER BUTTON
   ========================================= */
.cookie-settings-button {
    padding: 0;

    background: none;
    border: 0;

    color: inherit;
    font: inherit;

    text-decoration: underline;

    cursor: pointer;
}
.cookie-settings-button:hover {
    text-decoration: none;
}
/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 18px;
    }
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cookie-button {
        width: 100%;
    }
}