/* ============================================
   GO2 Bar Final — Pixel-perfect polish
   Priority 350 — loads after all other modules
   Fixes: shadow halo, white arc edges, any
   remaining border/outline from theme CSS
   ============================================ */

/* --- Sticky bar container: clean dark blue, no artifacts --- */
.go2-sticky-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 0 !important;
    overflow: visible !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* --- Pill container: tighter shadow, pure white, no transparency --- */
.go2-sticky-inner {
    max-width: 650px !important;
    margin: 0 auto !important;
    height: 42px !important;
    border: none !important;
    border-radius: 50px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    transition: box-shadow 0.3s ease !important;
}
.go2-sticky-inner:focus-within {
    box-shadow: 0 2px 16px rgba(247, 148, 29, 0.25) !important;
    -webkit-box-shadow: 0 2px 16px rgba(247, 148, 29, 0.25) !important;
}

/* --- NUCLEAR: Kill every possible border/outline on any input inside sticky bar --- */
.go2-sticky-bar *,
.go2-sticky-bar *:focus,
.go2-sticky-bar *:hover,
.go2-sticky-bar *:active {
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-offset: 0 !important;
}

.go2-sticky-bar input,
.go2-sticky-bar input[type="text"],
.go2-sticky-bar input[type="search"],
.go2-sticky-bar input:focus,
.go2-sticky-bar input[type="text"]:focus,
.go2-sticky-bar input[type="search"]:focus,
.go2-sticky-bar input:hover,
.go2-sticky-bar input[type="text"]:hover,
.go2-sticky-bar input:active,
.go2-sticky-bar input[type="text"]:active,
.go2-sticky-bar .go2-sticky-input,
.go2-sticky-bar .go2-sticky-input:focus,
.go2-sticky-bar .go2-sticky-input:hover,
.go2-sticky-bar .go2-sticky-input:active,
.go2-sticky-inner input,
.go2-sticky-inner input:focus,
.go2-sticky-inner .go2-sticky-input,
.go2-sticky-inner .go2-sticky-input:focus,
input.go2-sticky-input,
input.go2-sticky-input:focus,
input.go2-sticky-input:hover,
input.go2-sticky-input:active {
    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    padding: 0 10px !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #333 !important;
    height: 100% !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
}
.go2-sticky-bar .go2-sticky-input::placeholder {
    color: #aaa !important;
}

/* --- Icon: clean alignment --- */
.go2-sticky-bar .go2-sticky-icon {
    padding: 0 12px 0 16px !important;
    color: #F7941D !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

/* --- Button: flush to the right edge of the pill, no gap --- */
.go2-sticky-bar .go2-sticky-btn {
    height: 100% !important;
    padding: 0 24px !important;
    border-radius: 0 50px 50px 0 !important;
    background: linear-gradient(135deg, #F7941D 0%, #e0850f 100%) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: filter 0.2s ease !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    line-height: 42px !important;
}
.go2-sticky-bar .go2-sticky-btn:hover {
    filter: brightness(1.08) !important;
}
.go2-sticky-bar .go2-sticky-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* --- Dropdown: positioned correctly, clean appearance --- */
.go2-sticky-dropdown {
    border-radius: 16px !important;
    border-top: 3px solid #F7941D !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    overflow: visible !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18) !important;
}

/* --- Item hover --- */
.go2-sticky-dropdown .go2s-prod-item,
.go2-sticky-dropdown .go2s-cat-item {
    transition: background 0.15s ease, padding-left 0.15s ease !important;
}
.go2-sticky-dropdown .go2s-prod-item:hover,
.go2-sticky-dropdown .go2s-cat-item:hover {
    background: #FFF8F0 !important;
    padding-left: 22px !important;
}
