.mentha-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--mentha-primary);
    color: var(--mentha-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    font-size: 14px;
}
.mentha-cookie-banner__text {
    flex: 1 1 auto;
    font-size: var(--full);
}
.mentha-cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
}
.mentha-cookie-button {
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.2;
}
.mentha-cookie-button--primary {
    background: var(--mentha-text);
    color: var(--mentha-primary);
}
.mentha-cookie-button--secondary {
    background: var(--mentha-secondary);
    color: #000;
}
.mentha-cookie-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}
.mentha-cookie-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
}
.mentha-cookie-modal__inner {
    background: #fff;
    max-width: 700px;
    width: 100%;
    border-radius: 6px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.mentha-cookie-modal__intro {
    margin-bottom: 1rem;
    color: #444;
}
.mentha-cookie-category {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: #fff;
}
.mentha-cookie-category--locked {
    background: #f7f7f7;
    border-style: dashed;
}
.mentha-cookie-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}
.mentha-cookie-category__title {
    font-weight: 600;
}
.mentha-cookie-category__status {
    font-size: 12px;
    color: #666;
}
.mentha-cookie-category__desc {
    font-size: 13px;
    color: #444;
    margin: 0;
}
.mentha-cookie-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
}
.mentha-cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.mentha-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.mentha-cookie-switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 9999px;
    transition: .2s;
}
.mentha-cookie-switch__slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .2s;
}
.mentha-cookie-switch input:checked + .mentha-cookie-switch__slider {
    background: var(--mentha-primary);
}
.mentha-cookie-switch input:checked + .mentha-cookie-switch__slider:before {
    transform: translateX(22px);
}
[hidden] {
    display: none !important;
}
@media (max-width: 768px) {
    .mentha-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .mentha-cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
    .mentha-cookie-modal__inner {
        max-width: 100%;
    }
}
