/* Unified LAZY FILMS shop header — menu left, brand right */
.site-header {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

.site-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.site-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #000;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.site-menu-btn:hover {
    background: #f5f5f5;
}

.site-menu-btn:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.site-menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 1px;
    box-shadow: 0 -6px 0 #000, 0 6px 0 #000;
}

.site-header-title {
    font-family: "stratos-black", sans-serif;
    font-size: clamp(18px, 4vw, 24px);
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    text-align: right;
    line-height: 1.1;
}

.site-menu-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 200;
    min-width: 220px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    display: none;
}

.site-menu-panel.is-open {
    display: block;
}

.site-menu-panel a {
    display: block;
    padding: 12px 18px;
    font-family: "stratos-black", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.site-menu-panel a:hover {
    background: #f5f5f5;
    text-decoration: underline;
}

.site-menu-panel a[aria-current="page"] {
    background: #fffbe6;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .site-menu-btn {
        width: 40px;
        height: 40px;
    }

    .site-header-title {
        font-size: 18px;
    }

    .site-menu-panel {
        min-width: min(100%, 260px);
    }
}
