.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__content {
    width: min(100%, 980px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid rgba(33, 38, 39, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
    pointer-events: auto;
}

.cookie-consent__text {
    min-width: 0;
}

.cookie-consent__eyebrow {
    margin: 0 0 6px;
    color: #212627;
    font-weight: 700;
    line-height: 1.3;
}

.cookie-consent__description {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-consent__description a {
    color: #ff8820;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent__button {
    min-width: 120px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
    transform: translateY(-1px);
}

.cookie-consent__button--primary {
    background: #ff8820;
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(255, 136, 32, 0.24);
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus {
    background: #e87512;
    color: #ffffff;
}

.cookie-consent__button--secondary {
    background: #ffffff;
    color: #212627;
    border-color: #d1d5db;
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus {
    background: #f3f4f6;
    color: #212627;
}

@media (max-width: 767.98px) {
    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-consent__content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        border-radius: 14px;
    }

    .cookie-consent__actions {
        flex-direction: column-reverse;
        align-items: stretch;
        width: 100%;
    }

    .cookie-consent__button {
        width: 100%;
    }
}
