.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 11000;
    background: #111827;
    color: #f9fafb;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .35);
    padding: 16px;
    max-width: 920px;
    margin: 0 auto;
}

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

.cookie-consent__title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

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

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

.cookie-consent__actions .btn {
    border-radius: 9999px;
    padding-left: 16px;
    padding-right: 16px;
}

.cookie-consent__settings {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: none;
}

.cookie-consent__settings.is-open {
    display: block;
}

.cookie-consent__switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    color: #e5e7eb;
    font-size: 14px;
}

.cookie-consent__switch input {
    transform: scale(1.1);
}

.cookie-consent__manage {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 10999;
    border: none;
    border-radius: 9999px;
    padding: 10px 14px;
    background: #111827;
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .3);
    font-size: 13px;
    cursor: pointer;
}

.cookie-consent__manage.is-hidden {
    display: none;
}

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

    .cookie-consent__title {
        font-size: 16px;
    }
}
