/* Header */

.lh-site-header {
    width: 100%;
    background: var(--lh-white);
    border-bottom: none;
}

.lh-header-top-bar {
    width: 100%;
    background: #000;
    color: var(--lh-white);
}

.lh-header-top-bar-inner {
    max-width: var(--lh-content-width);
    min-height: 48px;
    margin: 0 auto;
    padding: 0 var(--lh-site-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
    box-sizing: border-box;
}

.lh-header-top-item {
    color: var(--lh-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.lh-header-top-label::after {
    content: " - ";
}

.lh-header-top-item a {
    color: var(--lh-white);
    text-decoration: none;
}

.lh-header-top-item a:hover {
    color: var(--lh-pink);
}

.lh-header-inner {
    max-width: var(--lh-content-width);
    margin: 0 auto;
    padding: 28px var(--lh-site-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

.lh-site-branding {
    flex: 0 0 auto;
}

.lh-site-branding img {
    display: block;
    max-height: 70px;
    width: auto;
}

.lh-site-title {
    color: var(--lh-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 18px;
}

.lh-primary-navigation {
    flex: 1 1 auto;
}

.lh-primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lh-primary-menu li {
    margin: 0;
    padding: 0;
}

.lh-primary-menu a {
    color: var(--lh-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.lh-primary-menu a:hover {
    color: var(--lh-pink);
}

.lh-header-cart {
    flex: 0 0 auto;
}

.lh-cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lh-pink);
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.lh-cart-icon,
.lh-cart-total,
.lh-cart-count {
    color: var(--lh-pink);
}

.lh-cart-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    stroke: var(--lh-pink);
}

.lh-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border: 1px solid var(--lh-pink);
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
}

/* Mobile menu */

.lh-menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
}

.lh-menu-toggle:hover,
.lh-menu-toggle:focus {
    background: transparent;
    outline: none;
}

.lh-menu-toggle-bars {
    position: relative;
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto;
    background: var(--lh-pink);
}

.lh-menu-toggle-bars::before,
.lh-menu-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--lh-pink);
}

.lh-menu-toggle-bars::before {
    top: -8px;
}

.lh-menu-toggle-bars::after {
    top: 8px;
}

.lh-menu-toggle.is-open .lh-menu-toggle-bars {
    background: transparent;
}

.lh-menu-toggle.is-open .lh-menu-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
}

.lh-menu-toggle.is-open .lh-menu-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.lh-mobile-navigation {
    display: none;
    width: 100%;
    background: var(--lh-pink);
}

.lh-mobile-navigation.is-open {
    display: block;
}

.lh-mobile-menu {
    max-width: var(--lh-content-width);
    margin: 0 auto;
    padding: 18px var(--lh-site-padding);
    list-style: none;
    box-sizing: border-box;
}

.lh-mobile-menu li {
    margin: 0;
    padding: 0;
}

.lh-mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--lh-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.lh-mobile-menu a:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 1024px) {
    .lh-header-top-bar-inner {
        gap: 28px;
        justify-content: space-between;
    }

    .lh-header-top-item {
        font-size: 12px;
    }

    .lh-header-inner {
        gap: 24px;
    }

    .lh-primary-menu {
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .lh-header-top-bar-inner {
        min-height: 0;
        padding: 10px 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: center;
    }

    .lh-header-top-item {
        font-size: 11px;
        line-height: 1.35;
        white-space: normal;
    }

    .lh-header-inner {
        padding: 20px;
        gap: 18px;
    }

    .lh-site-branding img {
        max-height: 56px;
    }

    .lh-primary-navigation {
        display: none;
    }

    .lh-header-cart {
        margin-left: auto;
    }

    .lh-menu-toggle {
        display: block;
    }

    .lh-mobile-menu {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .lh-cart-total {
        display: none;
    }

    .lh-site-branding img {
        max-height: 48px;
    }
}
