/* Header */

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

.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);
}


