.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    padding: 16px;
    pointer-events: none;
}

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

.cookie-consent__panel {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    color: #222;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 20px 24px;
    pointer-events: auto;
}

.cookie-consent__text {
    margin: 0 0 16px;
    line-height: 1.5;
    font-size: 14px;
}

.cookie-consent__text a {
    color: #0f4fa8;
    text-decoration: underline;
}

.cookie-consent__categories {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-consent__category {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}

.cookie-consent__category input {
    margin-top: 3px;
    flex: 0 0 auto;
}

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

.cookie-consent__btn {
    border: 0;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

.cookie-consent__btn--primary:hover,
.cookie-consent__btn--primary:focus {
    background: #e55800;
}

.cookie-consent__btn--secondary {
    background: #f2f2f2;
    color: #222;
}

.cookie-consent__btn--secondary:hover,
.cookie-consent__btn--secondary:focus {
    background: #e6e6e6;
}

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

    .cookie-consent__panel {
        padding: 16px;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

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