.ahura-lq-wrap {
    position: relative;
    z-index: 9990;
}

.ahura-lq-wrap.ahura-lq-sticky {
    position: sticky;
    top: 12px;
    z-index: 9991;
}

.ahura-lq-empty {
    padding: 20px;
    background: #fff3cd;
    border-radius: 12px;
    color: #664d03;
    text-align: center;
    font-size: 13px;
}

.ahura-lq-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    border-radius: 16px;
    background-color: #fbfdff;
    box-shadow: 0 6px 24px rgba(138, 27, 227, .06);
}

.ahura-lq-cats-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background-color: var(--ahura-primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(var(--ahura-primary-rgb), .3);
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.ahura-lq-cats-btn svg {
    width: 16px;
    height: 16px;
    flex: none;
}

.ahura-lq-cats-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(var(--ahura-primary-rgb), .4);
}

.ahura-lq-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ahura-lq-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ahura-lq-pill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    z-index: 0;
    border-radius: 999px;
    background-color: rgba(var(--ahura-primary-rgb), .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
    transition: transform .6s cubic-bezier(.34, 1.56, .4, 1), width .6s cubic-bezier(.34, 1.56, .4, 1);
    opacity: 0;
}

.ahura-lq-glow .ahura-lq-pill {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), 0 0 20px rgba(var(--ahura-primary-rgb), .25);
}

.ahura-lq-list.is-ready .ahura-lq-pill {
    opacity: 1;
}

.ahura-lq-list > li {
    position: relative;
    z-index: 1;
}

.ahura-lq-list > li > a {
    display: block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ahura-text);
    text-decoration: none;
    white-space: nowrap;
    transition: color .3s ease;
}

.ahura-lq-list > li > a:hover {
    color: var(--ahura-primary);
}

.ahura-lq-list > li.current-menu-item > a {
    color: var(--ahura-primary);
    font-weight: 700;
}

.ahura-lq-sub {
    position: absolute;
    top: calc(100% + 12px);
    inset-inline-start: 0;
    z-index: 10;
    min-width: 190px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 14px;
    border: 1px solid rgba(var(--ahura-secondary-rgb), .1);
    background-color: var(--ahura-background);
    box-shadow: 0 18px 40px rgba(138, 27, 227, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1), visibility .25s;
}

.ahura-lq-list > li:hover > .ahura-lq-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ahura-lq-sub a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ahura-text);
    text-decoration: none;
    transition: background-color .25s ease, color .25s ease;
}

.ahura-lq-sub a:hover {
    background-color: rgba(var(--ahura-primary-rgb), .1);
    color: var(--ahura-primary);
}

.ahura-lq-actions {
    display: flex;
    align-items: center;
}

.ahura-lq-wish {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--ahura-primary);
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.ahura-lq-wish svg {
    width: 22px;
    height: 22px;
}

.ahura-lq-wish:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, .08);
    transform: scale(1.08);
}

@media (max-width: 1023px) {
    .ahura-lq-bp-1023 .ahura-lq-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ahura-lq-bp-1023 .ahura-lq-nav {
        order: 3;
        flex: 0 0 100%;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ahura-lq-bp-1023 .ahura-lq-nav::-webkit-scrollbar {
        display: none;
    }

    .ahura-lq-bp-1023 .ahura-lq-actions {
        margin-inline-start: auto;
    }
}

@media (max-width: 767px) {
    .ahura-lq-bp-767 .ahura-lq-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .ahura-lq-bp-767 .ahura-lq-nav {
        order: 3;
        flex: 0 0 100%;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ahura-lq-bp-767 .ahura-lq-nav::-webkit-scrollbar {
        display: none;
    }

    .ahura-lq-bp-767 .ahura-lq-actions {
        margin-inline-start: auto;
    }

    .ahura-lq-bp-767 .ahura-lq-cats-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}