.sentioo-site-header.pf-header {
    position: sticky;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid #edf0f3;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
    backdrop-filter: blur(12px);
}

.sentioo-site-header .pf-navbar {
    display: grid;
    width: min(100% - 48px, 1744px);
    min-height: 82px;
    margin-inline: auto;
    padding: 12px 0;
    grid-template-columns: auto minmax(220px, 440px) minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    overflow: visible;
}

.sentioo-header-brand {
    grid-column: 1;
    order: 0 !important;
    display: flex;
    min-width: 110px;
    align-items: center;
    text-decoration: none;
}

.sentioo-header-brand img {
    display: block;
    width: 122px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.sentioo-header-brand span {
    display: block;
    overflow: hidden;
    max-width: 220px;
    color: #1c1c1c;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sentioo-site-header .pf-search-form {
    position: relative;
    display: flex;
    grid-column: 2;
    order: 0 !important;
    width: 100%;
    align-self: center;
    align-items: center;
    margin: 0;
}

.sentioo-site-header .pf-search-wrapper { position: relative; width: 100%; }

.sentioo-site-header .pf-search-input {
    width: 100%;
    height: 50px;
    min-height: 50px;
    border: 1px solid #e1e6ec;
    border-radius: 999px;
    background: #fff;
    padding: 0 18px 0 50px;
    color: #344054;
    font-size: 14px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.sentioo-site-header .pf-search-input:focus {
    border-color: var(--brand, #28a6ff);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand, #28a6ff) 12%, transparent);
}

.sentioo-site-header .pf-search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer;
    pointer-events: auto;
    translate: none;
    transform: translateY(-50%);
}

.sentioo-site-header .pf-search-icon > i {
    color: currentColor;
    font-size: 18px;
    line-height: 1;
}

.sentioo-header-menu {
    display: flex;
    grid-column: 3;
    order: 0 !important;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.sentioo-header-links {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 16px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
}

.sentioo-header-links .pf-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sentioo-header-links .pf-nav-link {
    position: relative;
    padding: 12px 0;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.sentioo-header-links .pf-nav-link:hover,
.sentioo-header-links .pf-nav-link.is-active { color: var(--brand, #0069b2); }

.sentioo-submenu-toggle {
    display: grid;
    width: 20px;
    height: 28px;
    place-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    color: #667085;
    cursor: pointer;
}

.sentioo-submenu-toggle > i {
    color: currentColor;
    font-size: 10px;
    line-height: 1;
    transition: transform .18s ease;
}

.sentioo-header-links .pf-dropdown {
    position: absolute;
    top: calc(100% + 3px);
    left: -14px;
    z-index: 30;
    display: grid;
    visibility: hidden;
    min-width: 210px;
    margin: 0;
    border: 1px solid #e3e8ef !important;
    border-radius: 14px;
    background: #fff;
    padding: 8px;
    opacity: 0;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .15);
    transform: translateY(5px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sentioo-header-links .pf-dropdown-link {
    border-radius: 9px;
    padding: 9px 11px;
    color: #475467;
    font-size: 13px;
    text-decoration: none;
}

.sentioo-header-links .pf-dropdown-link:hover { background: #f2f8fd; color: var(--brand, #0069b2); }
.sentioo-header-links .has-children:hover > .pf-dropdown,
.sentioo-header-links .has-children.is-open > .pf-dropdown { visibility: visible; opacity: 1; transform: none; }
.sentioo-header-links .has-children.is-open > .sentioo-submenu-toggle > i { transform: rotate(180deg); }

.sentioo-header-actions,
.sentioo-auth-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sentioo-header-actions { flex: 0 0 auto; }
.sentioo-auth-actions { flex: 0 0 auto; }

.sentioo-site-header .site-language-switcher-header,
.sentioo-site-header .site-currency-switcher-header,
.sentioo-site-header .site-cart-icon-button,
.sentioo-site-header .pf-user-profile-link,
.sentioo-site-header .sentioo-auth-actions { order: 0 !important; }

.sentioo-auth-actions { gap: 12px; }

.sentioo-header-actions .btn-outline,
.sentioo-header-actions .btn-primary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.sentioo-header-actions .btn-outline {
    border: 1px solid #d7dde5;
    background: #fff;
    color: #344054;
}

.sentioo-header-actions .btn-outline:hover { border-color: var(--brand, #0069b2); color: var(--brand, #0069b2); }
.sentioo-header-actions .btn-primary { border: 1px solid var(--brand, #0069b2); background: var(--brand, #0069b2); color: #fff; }
.sentioo-header-actions .btn-primary:hover { filter: brightness(.92); color: #fff; }

.sentioo-site-header .pf-icon-btn,
.sentioo-site-header .pf-icon-btn-alt {
    position: relative;
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
}

.sentioo-site-header .pf-icon-btn { background: #fff; }
.sentioo-site-header .pf-icon-btn-alt { background: #dbeafe; }
.sentioo-site-header .pf-icon-btn:hover { background: #f3f4f6; }
.sentioo-site-header .pf-icon-btn-alt:hover { background: #bfdbfe; }
.sentioo-site-header .site-header-icon { color: currentColor; font-size: 20px; line-height: 1; }

.sentioo-site-header .site-cart-badge {
    position: absolute;
    top: -4px;
    right: -5px;
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--brand, #0069b2);
    padding: 0 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.sentioo-site-header .site-language-switcher > summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

.sentioo-site-header .site-language-switcher > summary::-webkit-details-marker { display: none; }
.sentioo-site-header .site-language-switcher > summary .site-language-flag { width: 26px; height: 26px; }
.sentioo-site-header .site-language-options { z-index: 3000; top: calc(100% + 12px); }

.sentioo-site-header .site-currency-switcher {
    position: relative;
}

.sentioo-site-header .site-currency-switcher > summary {
    display: grid;
    width: 54px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

.sentioo-site-header .site-currency-switcher > summary::-webkit-details-marker { display: none; }
.sentioo-site-header .site-currency-switcher > summary strong { font-size: 12px; }
.sentioo-site-header .site-currency-options {
    position: absolute;
    z-index: 3000;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 120px;
    gap: 3px;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.sentioo-site-header .site-currency-options button {
    min-height: 40px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #475467;
    cursor: pointer;
}

.sentioo-site-header .site-currency-options button:hover,
.sentioo-site-header .site-currency-options button.is-active {
    background: #f2f8fd;
    color: var(--brand, #0069b2);
}

.sentioo-site-header .site-search-suggestions {
    right: auto;
    left: 0;
    width: 100%;
    max-width: none;
}

.sentioo-site-header .pf-user-profile-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.sentioo-site-header .pf-user-profile-link .site-header-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    font-size: 17px;
}
.sentioo-site-header .pf-user-profile-link:hover { color: var(--brand, #0069b2); }

.sentioo-site-header .site-menu-toggle {
    display: none;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    flex: 0 0 46px;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #e1e6ec;
    border-radius: 50%;
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.sentioo-site-header .site-menu-toggle span,
.sentioo-site-header .site-menu-toggle span::before,
.sentioo-site-header .site-menu-toggle span::after {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: #344054;
}

.sentioo-site-header .site-menu-toggle span { position: relative; }
.sentioo-site-header .site-menu-toggle span::before,
.sentioo-site-header .site-menu-toggle span::after { position: absolute; left: 0; content: ""; }
.sentioo-site-header .site-menu-toggle span::before { top: -6px; }
.sentioo-site-header .site-menu-toggle span::after { top: 6px; }

@media (max-width: 1380px) {
    .sentioo-site-header .pf-navbar { grid-template-columns: auto minmax(200px, 360px) minmax(0, 1fr); gap: 20px; }
    .sentioo-header-menu { gap: 16px; }
    .sentioo-header-links { gap: 15px; font-size: 13px; }
    .sentioo-auth-actions { gap: 8px; }
    .sentioo-header-actions .btn-outline,
    .sentioo-header-actions .btn-primary { padding-inline: 14px; }
}

@media (max-width: 1600px) {
    .sentioo-site-header .pf-navbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 16px;
    }
    .sentioo-site-header .site-menu-toggle { display: inline-flex; }
    .sentioo-site-header .site-menu-toggle { grid-column: 3; order: 0 !important; }
    .sentioo-header-menu {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        border-top: 1px solid #edf0f3;
        padding: 18px 0 8px;
    }
    .sentioo-header-menu.is-open { display: flex; }
    .sentioo-header-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
    .sentioo-header-links .pf-nav-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
    .sentioo-header-links .pf-nav-link { padding: 10px 8px; }
    .sentioo-header-links .pf-dropdown {
        position: static;
        display: none;
        visibility: visible;
        grid-column: 1 / -1;
        min-width: 0;
        border: 0 !important;
        padding: 2px 8px 8px 20px;
        opacity: 1;
        box-shadow: none;
        transform: none;
    }
    .sentioo-header-links .has-children:hover > .pf-dropdown { display: none; }
    .sentioo-header-links .has-children.is-open > .pf-dropdown { display: grid; }
    .sentioo-header-actions { flex-wrap: wrap; }
}

@media (min-width: 1601px) {
    .sentioo-site-header.is-condensed .pf-navbar {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 16px;
    }
    .sentioo-site-header.is-condensed .site-menu-toggle { display: inline-flex; grid-column: 3; }
    .sentioo-site-header.is-condensed .sentioo-header-menu {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        border-top: 1px solid #edf0f3;
        padding: 18px 0 8px;
    }
    .sentioo-site-header.is-condensed .sentioo-header-menu.is-open { display: flex; }
    .sentioo-site-header.is-condensed .sentioo-header-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
    .sentioo-site-header.is-condensed .sentioo-header-links .pf-nav-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
    .sentioo-site-header.is-condensed .sentioo-header-links .pf-nav-link { padding: 10px 8px; }
    .sentioo-site-header.is-condensed .sentioo-header-links .pf-dropdown { position: static; display: none; visibility: visible; grid-column: 1 / -1; min-width: 0; border: 0 !important; padding: 2px 8px 8px 20px; opacity: 1; box-shadow: none; transform: none; }
    .sentioo-site-header.is-condensed .sentioo-header-links .has-children:hover > .pf-dropdown { display: none; }
    .sentioo-site-header.is-condensed .sentioo-header-links .has-children.is-open > .pf-dropdown { display: grid; }
    .sentioo-site-header.is-condensed .sentioo-header-actions { flex-wrap: wrap; }
}

@media (max-width: 700px) {
    .sentioo-site-header .pf-navbar { width: min(100% - 24px, 1525px); }
    .sentioo-header-brand img { width: 110px; }
    .sentioo-header-brand span { max-width: min(220px, 42vw); font-size: 17px; }
    .sentioo-site-header .pf-search-form { grid-column: 1 / -1; grid-row: 2; }
    .sentioo-site-header .site-menu-toggle { grid-column: 3; grid-row: 1; }
    .sentioo-header-menu { grid-row: 3; }
    .sentioo-header-links { grid-template-columns: 1fr; }
    .sentioo-header-actions { display: grid; grid-template-columns: minmax(0, 1fr) 44px 44px; }
    .sentioo-auth-actions { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sentioo-header-actions .btn-outline,
    .sentioo-header-actions .btn-primary { width: 100%; }
    .sentioo-site-header .pf-user-profile-link { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
    .sentioo-header-actions { grid-template-columns: minmax(0, 1fr) 44px 44px; }
    .sentioo-auth-actions { grid-template-columns: 1fr; }
}
