.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background: #fff;
    border-top: 3px solid #f68b1f;
    box-shadow: 0 -8px 32px rgba(48, 71, 112, 0.28);
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #304770;
}

.cookie-consent.is-hidden {
    display: none !important;
}

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

.cookie-consent__text {
    flex: 1 1 420px;
}

.cookie-consent__text a {
    color: #1a5490;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    border: 0;
    border-radius: 4px;
    padding: 12px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    min-width: 120px;
}

.cookie-consent__btn--accept {
    background: #304770;
    color: #fff;
}

.cookie-consent__btn--accept:hover {
    background: #243858;
}

.cookie-consent__btn--reject {
    background: #eef2f8;
    color: #304770;
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 14px 12px 16px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__btn {
        flex: 1 1 auto;
    }
}
