/* ================= FIX HEADER OVERFLOW ================= */
.ast-main-header-wrap,
.main-header-bar,
.ast-builder-layout-element {
    overflow: visible !important;
}

/* ================= SEARCH ================= */
.aurix-search {
    position: relative;
    width: 320px;
}

#aurix-search-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #009e55;
    border-radius: 8px;
}

/* DROPDOWN */
#aurix-search-results {
    position: fixed;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 999999;
    max-height: 320px;
    overflow-y: auto;
}

/* ITEM */
.aurix-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    align-items: center;
}

.aurix-item:hover {
    background: #f5f5f5;
}

/* IMAGE */
.aurix-thumb {
    position: relative;
}

.aurix-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* SALE BADGE */
.badge-sale {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}

/* TEXT */
.aurix-title {
    font-size: 14px;
    color: #222;
}

.highlight {
    background: #ffeaa7;
    padding: 1px 3px;
    border-radius: 3px;
}

/* PRICE */
.aurix-price {
    font-size: 13px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.price-sale { color: #009e55; font-weight: 600; }
.price-regular { text-decoration: line-through; color: #999; font-size: 12px; }
.price-discount { background: #009e55; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 4px; }
.price-normal { color: #009e55; font-weight: 600; }

.aurix-empty {
    padding: 12px;
    text-align: center;
}