/* =========================================================
   SHELAN BEAUTY – LUXURY HEADER
   Frontend Styles
========================================================= */

html body .sbh-header,
html body .sbh-header *,
html body .sbh-header *::before,
html body .sbh-header *::after {
    box-sizing: border-box !important;
}

html body.sbh-hide-theme-header #masthead,
html body.sbh-hide-theme-header .site-header:not(.sbh-header),
html body.sbh-hide-theme-header .elementor-location-header,
html body.sbh-hide-theme-header header[data-elementor-type="header"] {
    display: none !important;
}

html body .sbh-header {
    --sbh-ivory: #FFF8F1;
    --sbh-dark: #292522;
    --sbh-text: #5B544F;
    --sbh-champagne: #C9A17A;
    --sbh-blush: #EADBD4;

    position: sticky !important;
    top: 0 !important;
    z-index: 999999 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    color: var(--sbh-dark) !important;
    background: rgba(255, 248, 241, 0.92) !important;
    border-bottom: 1px solid rgba(41, 37, 34, 0.08) !important;
    backdrop-filter: blur(18px) saturate(1.15) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
    transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}

html body.admin-bar .sbh-header {
    top: 32px !important;
}

html body .sbh-header.sbh-is-scrolled {
    background: rgba(255, 248, 241, 0.975) !important;
    border-bottom-color: rgba(41, 37, 34, 0.1) !important;
    box-shadow: 0 18px 55px rgba(41, 37, 34, 0.07) !important;
}

html body .sbh-header-shell {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .sbh-header-inner {
    width: calc(100% - 60px) !important;
    max-width: 1350px !important;
    height: 92px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
    transition: height .35s ease !important;
}

html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
    height: 76px !important;
}

/* LOGO */
html body .sbh-logo {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    max-width: 220px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
}

html body .sbh-logo img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 210px !important;
    max-height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-fit: contain !important;
    transition: max-height .35s ease, transform .35s ease !important;
}

html body .sbh-header.sbh-is-scrolled .sbh-logo img {
    max-height: 48px !important;
}

html body .sbh-logo:hover img {
    transform: translateY(-1px) !important;
}

html body .sbh-logo-fallback {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    font-family: 'Cormorant Garamond', serif !important;
}

html body .sbh-logo-main {
    font-size: 38px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
}

html body .sbh-logo-sub {
    font-size: 17px !important;
    font-style: italic !important;
    color: var(--sbh-champagne) !important;
}

/* DESKTOP RIGHT */
html body .sbh-desktop-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 26px !important;
    min-width: 0 !important;
}

html body .sbh-nav {
    display: block !important;
}

html body .sbh-menu,
html body .sbh-menu ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

html body .sbh-menu-desktop {
    display: flex !important;
    align-items: center !important;
    gap: 31px !important;
}

html body .sbh-menu-desktop > li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .sbh-menu-desktop > li > a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.17em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
    transition: color .3s ease !important;
}

html body .sbh-menu-desktop > li > a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 6px !important;
    width: 100% !important;
    height: 1px !important;
    background: var(--sbh-champagne) !important;
    transform: scaleX(0) !important;
    transform-origin: right center !important;
    transition: transform .35s cubic-bezier(.2,.7,.2,1) !important;
}

html body .sbh-menu-desktop > li:hover > a,
html body .sbh-menu-desktop > li.current-menu-item > a,
html body .sbh-menu-desktop > li.current-menu-ancestor > a {
    color: var(--sbh-champagne) !important;
}

html body .sbh-menu-desktop > li:hover > a::after,
html body .sbh-menu-desktop > li.current-menu-item > a::after,
html body .sbh-menu-desktop > li.current-menu-ancestor > a::after {
    transform: scaleX(1) !important;
    transform-origin: left center !important;
}

/* DESKTOP SUBMENUS */
html body .sbh-menu-desktop .sub-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: -22px !important;
    min-width: 240px !important;
    padding: 13px !important;
    background: rgba(255, 248, 241, 0.99) !important;
    border: 1px solid rgba(41, 37, 34, 0.08) !important;
    box-shadow: 0 24px 65px rgba(41, 37, 34, 0.11) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: opacity .28s ease, transform .35s cubic-bezier(.2,.7,.2,1), visibility .28s ease !important;
}

html body .sbh-menu-desktop li:hover > .sub-menu,
html body .sbh-menu-desktop li:focus-within > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

html body .sbh-menu-desktop .sub-menu li {
    position: relative !important;
    margin: 0 !important;
}

html body .sbh-menu-desktop .sub-menu a {
    display: block !important;
    padding: 12px 13px !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
    transition: color .3s ease, background-color .3s ease, padding-left .3s ease !important;
}

html body .sbh-menu-desktop .sub-menu a:hover {
    color: var(--sbh-champagne) !important;
    background: rgba(201, 161, 122, 0.07) !important;
    padding-left: 17px !important;
}

html body .sbh-menu-desktop .sub-menu .sub-menu {
    top: -13px !important;
    left: calc(100% + 12px) !important;
}

/* CTA */
html body .sbh-cta {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 18px !important;
    background: var(--sbh-dark) !important;
    border: 1px solid var(--sbh-dark) !important;
    text-decoration: none !important;
    color: var(--sbh-ivory) !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    transition: background-color .3s ease, border-color .3s ease, transform .3s ease !important;
}

html body .sbh-cta:hover {
    background: var(--sbh-champagne) !important;
    border-color: var(--sbh-champagne) !important;
    transform: translateY(-2px) !important;
}

html body .sbh-cta i {
    font-size: 10px !important;
}

/* SOCIALS */
html body .sbh-socials {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

html body .sbh-socials a {
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(41, 37, 34, 0.14) !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
    background: transparent !important;
    transition: color .3s ease, border-color .3s ease, background-color .3s ease, transform .3s ease !important;
}

html body .sbh-socials a:hover {
    color: var(--sbh-ivory) !important;
    border-color: var(--sbh-dark) !important;
    background: var(--sbh-dark) !important;
    transform: translateY(-3px) !important;
}

html body .sbh-socials i {
    font-size: 15px !important;
}

/* MOBILE TOGGLE */
html body .sbh-mobile-toggle {
    display: none !important;
    align-items: center !important;
    gap: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer !important;
    color: var(--sbh-dark) !important;
}

html body .sbh-toggle-label {
    font-size: 8px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: 0.2em !important;
}

html body .sbh-toggle-icon {
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(41, 37, 34, 0.16) !important;
    border-radius: 50% !important;
    transition: border-color .3s ease, background-color .3s ease !important;
}

html body .sbh-toggle-icon i {
    position: absolute !important;
    width: 14px !important;
    height: 1px !important;
    display: block !important;
    background: var(--sbh-dark) !important;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), top .35s ease !important;
}

html body .sbh-toggle-icon i:first-child {
    top: 17px !important;
}

html body .sbh-toggle-icon i:last-child {
    top: 23px !important;
}

html body .sbh-mobile-toggle[aria-expanded="true"] .sbh-toggle-icon {
    background: var(--sbh-dark) !important;
    border-color: var(--sbh-dark) !important;
}

html body .sbh-mobile-toggle[aria-expanded="true"] .sbh-toggle-icon i {
    top: 20px !important;
    background: var(--sbh-ivory) !important;
}

html body .sbh-mobile-toggle[aria-expanded="true"] .sbh-toggle-icon i:first-child {
    transform: rotate(45deg) !important;
}

html body .sbh-mobile-toggle[aria-expanded="true"] .sbh-toggle-icon i:last-child {
    transform: rotate(-45deg) !important;
}

/* MOBILE PANEL */
html body .sbh-mobile-panel {
    position: fixed !important;
    z-index: 999998 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding-top: 82px !important;
    background:
        radial-gradient(circle at 90% 20%, rgba(201,161,122,.13), transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(234,219,212,.55), transparent 30%),
        var(--sbh-ivory) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-14px) !important;
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.75,.2,1), visibility .4s ease !important;
    overflow-y: auto !important;
}

html body .sbh-header.sbh-mobile-open .sbh-mobile-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

html body .sbh-mobile-panel-inner {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - 32px) !important;
    max-width: 760px !important;
    min-height: calc(100dvh - 82px) !important;
    margin: 0 auto !important;
    padding: 34px 0 42px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

html body .sbh-mobile-topline {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 34px !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: .22em !important;
    color: var(--sbh-text) !important;
}

html body .sbh-mobile-topline-line {
    width: 50px !important;
    height: 1px !important;
    background: var(--sbh-champagne) !important;
}

html body .sbh-mobile-nav {
    position: relative !important;
    z-index: 3 !important;
}

html body .sbh-menu-mobile > li {
    position: relative !important;
    border-top: 1px solid rgba(41, 37, 34, 0.1) !important;
}

html body .sbh-menu-mobile > li:last-child {
    border-bottom: 1px solid rgba(41, 37, 34, 0.1) !important;
}

html body .sbh-menu-mobile > li > a {
    display: flex !important;
    align-items: center !important;
    min-height: 67px !important;
    padding: 0 50px 0 0 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 34px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
}

html body .sbh-menu-mobile > li.current-menu-item > a,
html body .sbh-menu-mobile > li.current-menu-ancestor > a {
    color: var(--sbh-champagne) !important;
}

html body .sbh-submenu-toggle {
    position: absolute !important;
    top: 14px !important;
    right: 0 !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(41, 37, 34, 0.13) !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--sbh-dark) !important;
    cursor: pointer !important;
}

html body .sbh-submenu-toggle::before,
html body .sbh-submenu-toggle::after {
    content: "" !important;
    position: absolute !important;
    width: 10px !important;
    height: 1px !important;
    background: currentColor !important;
    transition: transform .3s ease !important;
}

html body .sbh-submenu-toggle::after {
    transform: rotate(90deg) !important;
}

html body .sbh-submenu-toggle[aria-expanded="true"]::after {
    transform: rotate(0) !important;
}

html body .sbh-menu-mobile .sub-menu {
    display: none !important;
    padding: 0 0 15px 18px !important;
}

html body .sbh-menu-mobile .sub-menu.sbh-submenu-open {
    display: block !important;
}

html body .sbh-menu-mobile .sub-menu li {
    margin: 0 !important;
}

html body .sbh-menu-mobile .sub-menu a {
    display: block !important;
    padding: 9px 0 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: var(--sbh-text) !important;
}

html body .sbh-mobile-footer {
    position: relative !important;
    z-index: 3 !important;
    margin-top: auto !important;
    padding-top: 34px !important;
}

html body .sbh-mobile-cta {
    min-height: 58px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 0 20px !important;
    background: var(--sbh-dark) !important;
    text-decoration: none !important;
    color: var(--sbh-ivory) !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
}

html body .sbh-mobile-socials {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

html body .sbh-mobile-socials a {
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 1px solid rgba(41, 37, 34, 0.12) !important;
    text-decoration: none !important;
    color: var(--sbh-dark) !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

html body .sbh-mobile-socials i {
    font-size: 15px !important;
    color: var(--sbh-champagne) !important;
}

html body .sbh-mobile-ghost {
    position: absolute !important;
    right: -22px !important;
    bottom: 55px !important;
    z-index: 0 !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(110px, 34vw, 185px) !important;
    font-weight: 500 !important;
    line-height: .7 !important;
    letter-spacing: -.08em !important;
    color: rgba(41, 37, 34, 0.025) !important;
    pointer-events: none !important;
}

html body.sbh-menu-lock {
    overflow: hidden !important;
}

/* RESPONSIVE */
@media (max-width: 1120px) {
    html body .sbh-header-inner {
        width: calc(100% - 40px) !important;
    }

    html body .sbh-menu-desktop {
        gap: 20px !important;
    }

    html body .sbh-menu-desktop > li > a {
        font-size: 9px !important;
        letter-spacing: .13em !important;
    }

    html body .sbh-desktop-right {
        gap: 18px !important;
    }
}

@media (max-width: 980px) {
    html body .sbh-header-inner,
    html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
        width: calc(100% - 32px) !important;
        height: 78px !important;
    }

    html body .sbh-desktop-right {
        display: none !important;
    }

    html body .sbh-mobile-toggle {
        display: inline-flex !important;
    }

    html body .sbh-logo img,
    html body .sbh-header.sbh-is-scrolled .sbh-logo img {
        max-width: 180px !important;
        max-height: 50px !important;
    }

    html body .sbh-logo-main {
        font-size: 34px !important;
    }
}

@media (max-width: 782px) {
    html body.admin-bar .sbh-header {
        top: 46px !important;
    }
}

@media (max-width: 480px) {
    html body .sbh-header-inner,
    html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
        height: 72px !important;
    }

    html body .sbh-logo img,
    html body .sbh-header.sbh-is-scrolled .sbh-logo img {
        max-width: 150px !important;
        max-height: 44px !important;
    }

    html body .sbh-toggle-label {
        display: none !important;
    }

    html body .sbh-mobile-panel {
        padding-top: 72px !important;
    }

    html body .sbh-mobile-panel-inner {
        min-height: calc(100dvh - 72px) !important;
        padding-top: 28px !important;
    }

    html body .sbh-menu-mobile > li > a {
        min-height: 61px !important;
        font-size: 31px !important;
    }

    html body .sbh-submenu-toggle {
        top: 11px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .sbh-header *,
    html body .sbh-header *::before,
    html body .sbh-header *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   V1.1.0 – CENTERED DESKTOP MENU / LARGER PREMIUM HEADER
   Menü exakt mittig, Logo links, Aktionen rechts.
========================================================= */

@media (min-width: 981px) {

    html body .sbh-header-inner {
        display: grid !important;
        grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr) !important;
        align-items: center !important;
        justify-content: initial !important;
        gap: 36px !important;
        height: 108px !important;
    }

    html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
        height: 86px !important;
    }

    html body .sbh-logo {
        justify-self: start !important;
        max-width: 260px !important;
    }

    html body .sbh-logo img {
        max-width: 250px !important;
        max-height: 68px !important;
    }

    html body .sbh-header.sbh-is-scrolled .sbh-logo img {
        max-height: 56px !important;
    }

    html body .sbh-logo-main {
        font-size: 44px !important;
    }

    html body .sbh-logo-sub {
        font-size: 20px !important;
    }

    html body .sbh-desktop-center {
        display: block !important;
        justify-self: center !important;
        min-width: 0 !important;
    }

    html body .sbh-menu-desktop {
        gap: 40px !important;
    }

    html body .sbh-menu-desktop > li > a {
        min-height: 54px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 0.16em !important;
    }

    html body .sbh-menu-desktop > li > a::after {
        bottom: 8px !important;
    }

    html body .sbh-menu-desktop .sub-menu {
        top: calc(100% + 14px) !important;
        min-width: 265px !important;
        padding: 15px !important;
    }

    html body .sbh-menu-desktop .sub-menu a {
        padding: 13px 14px !important;
        font-size: 11px !important;
    }

    html body .sbh-desktop-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        justify-self: stretch !important;
        gap: 14px !important;
        min-width: 0 !important;
    }

    html body .sbh-cta {
        min-height: 50px !important;
        padding: 0 21px !important;
        font-size: 10px !important;
        letter-spacing: 0.16em !important;
    }

    html body .sbh-socials {
        gap: 10px !important;
    }

    html body .sbh-socials a {
        width: 46px !important;
        height: 46px !important;
    }

    html body .sbh-socials i {
        font-size: 17px !important;
    }
}

@media (min-width: 981px) and (max-width: 1220px) {

    html body .sbh-header-inner {
        width: calc(100% - 40px) !important;
        grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr) !important;
        gap: 24px !important;
    }

    html body .sbh-menu-desktop {
        gap: 27px !important;
    }

    html body .sbh-menu-desktop > li > a {
        font-size: 10.5px !important;
        letter-spacing: 0.13em !important;
    }

    html body .sbh-logo img {
        max-width: 215px !important;
        max-height: 62px !important;
    }

    html body .sbh-socials a {
        width: 43px !important;
        height: 43px !important;
    }
}

@media (max-width: 980px) {

    html body .sbh-desktop-center,
    html body .sbh-desktop-actions {
        display: none !important;
    }

    html body .sbh-header-inner,
    html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: calc(100% - 32px) !important;
        height: 84px !important;
        gap: 18px !important;
    }

    html body .sbh-mobile-toggle {
        display: inline-flex !important;
    }

    html body .sbh-logo img,
    html body .sbh-header.sbh-is-scrolled .sbh-logo img {
        max-width: 195px !important;
        max-height: 54px !important;
    }

    html body .sbh-mobile-panel {
        padding-top: 84px !important;
    }

    html body .sbh-mobile-panel-inner {
        min-height: calc(100dvh - 84px) !important;
    }

    html body .sbh-menu-mobile > li > a {
        min-height: 72px !important;
        font-size: 38px !important;
    }

    html body .sbh-mobile-topline {
        font-size: 9px !important;
    }

    html body .sbh-mobile-socials a {
        min-height: 58px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {

    html body .sbh-header-inner,
    html body .sbh-header.sbh-is-scrolled .sbh-header-inner {
        height: 78px !important;
    }

    html body .sbh-logo img,
    html body .sbh-header.sbh-is-scrolled .sbh-logo img {
        max-width: 168px !important;
        max-height: 48px !important;
    }

    html body .sbh-mobile-panel {
        padding-top: 78px !important;
    }

    html body .sbh-mobile-panel-inner {
        min-height: calc(100dvh - 78px) !important;
    }

    html body .sbh-menu-mobile > li > a {
        min-height: 66px !important;
        font-size: 34px !important;
    }

    html body .sbh-toggle-icon {
        width: 46px !important;
        height: 46px !important;
    }

    html body .sbh-toggle-icon i:first-child {
        top: 18px !important;
    }

    html body .sbh-toggle-icon i:last-child {
        top: 25px !important;
    }

    html body .sbh-mobile-toggle[aria-expanded="true"] .sbh-toggle-icon i {
        top: 22px !important;
    }
}
