/* =============================================================================
   ARO B2B Header – Stylesheet
   Dynamische Farben via CSS Custom Properties (gesetzt im Template per PHP):
     --aro-header-bg    Hintergrundfarbe
     --aro-header-text  Textfarbe
     --aro-header-ph    Placeholder-Farbe
   ============================================================================= */

/* ── 1. HEADER CONTAINER ──────────────────────────────────────────────────── */
.aro-b2b-header {
    background: var(--aro-header-bg, #0e0e0e);
    padding: 0 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* ── 2. SEARCH PILL ───────────────────────────────────────────────────────── */
.aro-b2b-search-pill .uk-search-input {
    height: 50px;
    font-size: 18px;
    font-weight: 300;
    background: #fff;
    border-radius: 50px;
    border: none;
    padding-left: 60px;
    color: var(--aro-header-text, #333);
    opacity: 1;
}

.aro-b2b-search-pill .uk-search-input::placeholder {
    color: var(--aro-header-ph, #999) !important;
    opacity: 1 !important;
}

.aro-b2b-search-pill {
    position: relative;
}

.aro-b2b-search-pill .uk-search-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    margin: auto;
    padding-left: 14px !important;
    color: var(--aro-header-ph, #999);
}

/* ── 3. NO-RESULTS HINWEIS ────────────────────────────────────────────────── */
#aro-b2b-no-results {
    display: none;
}