.anmb-btn-wrapper {
    position: relative;
    display: inline-block;
}

.anmb-btn-w-full .anmb-btn-wrapper {
    display: block;
    width: 100%;
}

.anmb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    box-sizing: border-box;
    font-family: 'Avenir Next', sans-serif;
    font-weight: 600;
}

.anmb-btn-w-full .anmb-btn {
    width: 100%;
}

.anmb-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.anmb-btn-icon svg {
    transition: transform 300ms ease;
}

.anmb-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
    box-sizing: border-box;
    background: #FFFFFF;
}

.anmb-active .anmb-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.anmb-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.anmb-menu-col {
    display: flex;
    flex-direction: column;
}

.anmb-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease;
    gap: 8px;
    padding: 6px 0;
}

.anmb-menu-parent {
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.anmb-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.anmb-sub-list .anmb-menu-link {
    font-size: 0.95rem;
}

.anmb-cat-thumb {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.anmb-cat-count {
    margin-left: auto;
    font-size: 0.8rem;
    background-color: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 10px;
    color: #666;
}

.anmb-item-badge {
    font-size: 0.75rem;
    color: #FFFFFF;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 8px;
    text-transform: uppercase;
}

.anmb-editor-placeholder {
    color: #777;
    font-style: italic;
    font-size: 13px;
    text-align: center;
    padding: 10px;
}
