.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 16px;
    background: rgba(33, 37, 41, 0.96);
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

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

.cookie-consent__text {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.55;
}

.cookie-consent__text p {
    margin: 0 0 8px;
}

.cookie-consent__text p:last-child {
    margin-bottom: 0;
}

.cookie-consent__link {
    color: #1bb4b9;
    text-decoration: underline;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus {
    color: #f5b120;
}

.cookie-consent__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent__btn {
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 33px;
    padding: 0 24px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.cookie-consent__btn--primary {
    background: #1bb4b9;
    color: #fff;
}

.cookie-consent__btn--primary:hover,
.cookie-consent__btn--primary:focus {
    background: #f5b120;
    color: #fff;
}

.cookie-consent__btn--secondary {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.cookie-consent__btn--secondary:hover,
.cookie-consent__btn--secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

    .cookie-consent__text {
        font-size: 13px;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__btn {
        flex: 1 1 auto;
        text-align: center;
    }
}
