/* ═══════════════════════════════════════════════════════════════
   WOOKIT CORE — Trigger
   Navbar trigger button. Inherits text color from the theme header.
   Neutral border works on any header background.
   ═══════════════════════════════════════════════════════════════ */

.wookit-trigger {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: transparent !important;
    border: 1.5px solid var(--wookit-trigger-border) !important;
    color: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: var(--wookit-font) !important;
    padding: 6px 10px !important;
    border-radius: var(--wookit-radius-lg) !important;
    cursor: pointer !important;
    box-shadow: var(--wookit-trigger-shadow, none) !important;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease !important;
    white-space: nowrap !important;
    outline: none !important;
    line-height: 1 !important;
    position: relative !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    min-height: unset !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
}
.wookit-trigger:hover,
.wookit-open .wookit-trigger {
    background: var(--wookit-trigger-bg-hover) !important;
    border-color: var(--wookit-trigger-border-hover) !important;
    text-decoration: none !important;
}
.wookit-trigger:focus,
.wookit-trigger:active,
.wookit-trigger:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
