/* ================================================================
   HEADER LAYOUT: BOUTIQUE — Meena Perfumery inspired
   Slim clean white header · logo left · understated underline
   search · light nav row (no dark band) · generous whitespace.

   Pure CSS "layout skin": same markup, same JS, restyled.
   Activated by  <header class="hl-boutique">  (client_theme_config).
   Desktop-only restructure (≥769px).
   ================================================================ */

@media (min-width: 769px) {

    /* Top bar → white, right-aligned quiet links */
    .hl-boutique .header-top {
        background: #ffffff !important;
        border-bottom: 1px solid #f0ede6;
        padding: 4px 0;
    }
    .hl-boutique .header-top .top-container { justify-content: flex-end; display: flex; gap: 22px; }
    .hl-boutique .header-top a {
        color: #8d857a !important;
        font-size: 0.68rem;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }
    .hl-boutique .header-top a:hover { color: #211d19 !important; }

    /* Main row → slim, airy */
    .hl-boutique .header-main {
        background: #ffffff !important;
        border-bottom: none;
        box-shadow: none !important;
        padding: 16px 0;
    }
    .hl-boutique .logo h1 {
        font-family: 'Playfair Display', 'Georgia', serif !important;
        font-weight: 500 !important;
        letter-spacing: 1px;
        color: #211d19 !important;
    }

    /* Search → borderless underline style, blends into the white */
    .hl-boutique .search-container { max-width: 460px; }
    .hl-boutique .search-container input {
        border: none !important;
        border-bottom: 1.5px solid #d9d2c5 !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding-left: 4px !important;
        font-size: 0.88rem !important;
    }
    .hl-boutique .search-container input:focus {
        border-bottom-color: #211d19 !important;
        box-shadow: none !important;
    }
    .hl-boutique .search-container .search-btn {
        background: transparent !important;
        color: #211d19 !important;
        border: none !important;
        border-bottom: 1.5px solid #d9d2c5 !important;
        border-radius: 0 !important;
    }
    .hl-boutique .search-container:focus-within .search-btn { border-bottom-color: #211d19 !important; }

    /* Actions — quiet monochrome */
    .hl-boutique .header-actions .action-item .label { color: #a39a8c !important; font-size: 0.66rem !important; }
    .hl-boutique .header-actions .action-item .val   { color: #211d19 !important; font-weight: 500; }
    .hl-boutique .cart-count { background: #211d19 !important; color: #fff !important; }

    /* Nav → white, centered, small caps, dotted separators feel */
    .hl-boutique .header-bottom {
        background: #ffffff !important;
        border-top: 1px solid #f0ede6;
        border-bottom: 1px solid #e7e2d8;
    }
    .hl-boutique .bottom-container { justify-content: center; }
    .hl-boutique .header-bottom .nav-link {
        color: #55503f !important;
        font-size: 0.74rem;
        font-weight: 500;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        background: transparent !important;
        padding: 11px 20px;
        position: relative;
    }
    .hl-boutique .header-bottom .nav-link + .nav-link::before {
        content: '·';
        position: absolute;
        left: -4px;
        top: 50%;
        transform: translateY(-50%);
        color: #cbc2b1;
    }
    .hl-boutique .header-bottom .nav-link:hover {
        color: #211d19 !important;
        background: transparent !important;
        text-decoration: underline;
        text-underline-offset: 6px;
        text-decoration-thickness: 1px;
    }

    /* Soft edge shadow — backdrop-filter deliberately avoided (it creates a
       stacking context that pushes the account dropdown behind the nav). */
    .hl-boutique .header-main {
        background: #ffffff !important;
        box-shadow: 0 1px 14px rgba(33,29,25,0.05) !important;
    }
    /* Search underline animates wider on focus */
    .hl-boutique .search-container input { transition: border-color 0.25s ease, box-shadow 0.25s ease; }
}
