/* === GO2 Sticky Search Bar === */
.go2-sticky-bar {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 6px 0;
    z-index: 1000;
}
.go2-sticky-bar.visible {
    display: block;
}
.go2-sticky-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    border: 2px solid #F7941D;
    border-radius: 50px;
    background: #fff;
    overflow: visible;
}
.go2-sticky-icon {
    flex-shrink: 0;
    padding: 0 12px;
    color: #F7941D;
    display: flex;
    align-items: center;
}
.go2-sticky-icon svg {
    width: 18px;
    height: 18px;
}
.go2-sticky-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 14px !important;
    height: 100% !important;
    padding: 0 !important;
    box-shadow: none !important;
    color: #333;
}
.go2-sticky-input::placeholder {
    color: #999;
}
.go2-sticky-btn {
    flex-shrink: 0;
    background: #F7941D;
    color: #fff;
    border: none;
    height: 100%;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.go2-sticky-btn:hover {
    background: #e0850f;
}

/* Dropdown */
.go2-sticky-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 6px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    border-top: 3px solid #F7941D;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 99999;
    min-width: 500px;
}
.go2-sticky-dropdown.open {
    display: block;
}
.go2-sticky-dropdown .go2s-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 6px;
}
.go2-sticky-dropdown .go2s-badge {
    background: #F7941D;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.go2-sticky-dropdown .go2s-count {
    color: #999;
    font-size: 13px;
}
.go2-sticky-dropdown .go2s-section-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0 4px;
    border-top: 1px solid #f0f0f0;
}
.go2-sticky-dropdown .go2s-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    text-decoration: none;
    color: #333;
    transition: background 0.15s;
}
.go2-sticky-dropdown .go2s-cat-item:hover {
    background: #FFF8F0;
}
.go2-sticky-dropdown .go2s-cat-icon {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    color: #bbb;
    font-size: 14px;
}
.go2-sticky-dropdown .go2s-cat-name {
    flex: 1;
    font-size: 14px;
}
.go2-sticky-dropdown .go2s-cat-count {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
}
.go2-sticky-dropdown .go2s-prod-item {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    text-decoration: none;
    color: #333;
    transition: background 0.15s;
}
.go2-sticky-dropdown .go2s-prod-item:hover {
    background: #FFF8F0;
}
.go2-sticky-dropdown .go2s-prod-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}
.go2-sticky-dropdown .go2s-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.go2-sticky-dropdown .go2s-prod-info {
    flex: 1;
    min-width: 0;
}
.go2-sticky-dropdown .go2s-prod-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}
.go2-sticky-dropdown .go2s-prod-ref {
    font-size: 11px;
    color: #999;
}
.go2-sticky-dropdown .go2s-prod-cat {
    font-size: 11px;
    color: #F7941D;
}
.go2-sticky-dropdown .go2s-prod-price {
    text-align: right;
    flex-shrink: 0;
    margin-left: 12px;
}
.go2-sticky-dropdown .go2s-prod-price .price {
    font-size: 15px;
    font-weight: 700;
    color: #F7941D;
}
.go2-sticky-dropdown .go2s-prod-price .stock {
    font-size: 11px;
    color: #2ecc71;
}
.go2-sticky-dropdown .go2s-prod-price .stock.out {
    color: #e74c3c;
}
.go2-sticky-dropdown .go2s-footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #f0f0f0;
}
.go2-sticky-dropdown .go2s-footer a {
    color: #F7941D;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.go2-sticky-dropdown mark {
    background: #FFF3D4;
    color: inherit;
    padding: 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .go2-sticky-inner {
        max-width: 95%;
        height: 36px;
    }
    .go2-sticky-dropdown {
        min-width: auto;
        left: 5%;
        right: 5%;
        transform: none;
    }
    .go2-sticky-btn {
        padding: 0 12px;
        font-size: 12px;
    }
}
