#cookieConsent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    background: #fff;
    border-top: 1px solid #dcdcdc;
    box-shadow: 0 -4px 18px rgba(0,0,0,.12);
}

.cookie-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 30px;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-text-wrap {
    flex: 1;
}

.cookie-text {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.65;
}

    .cookie-text a {
        color: #111;
        text-decoration: underline;
        font-weight: 500;
    }

.cookie-actions {
    width: 280px;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    width: 100%;
    min-height: 44px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px;
}

.cookie-btn-settings {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

    .cookie-btn-settings:hover {
        background: #f5f5f5;
    }

.cookie-btn-accept {
    background: #d40511;
    color: #fff;
}

    .cookie-btn-accept:hover {
        background: #b8040e;
        border-color: #b8040e;
    }

body.cookie-open {
    overflow: hidden;
}

.cookie-page-lock {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0,0,0,.28);
    display: none;
}

@media (max-width: 991px) {
    .cookie-inner {
        padding: 22px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 576px) {
    .cookie-inner {
        padding: 18px 16px;
    }

    .cookie-text {
        font-size: 13px;
        line-height: 1.55;
    }

    .cookie-btn {
        min-height: 46px;
    }
}
