/* ==================== BRUTALIST MOBILE DRAWER ==================== */

.mobile-header-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    bottom: 0;
    width: min(90vw, 400px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 4px solid var(--secondary-950);
    box-shadow: 16px 0 0px var(--primary-600);
    z-index: 1101;
    overflow: hidden;
}

.mobile-header-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 4px solid var(--secondary-950);
    background: var(--secondary-950);
    /* Was yellow */
}

.mobile-header-drawer__header-copy {
    min-width: 0;
}

.mobile-header-drawer__eyebrow {
    margin: 0 0 0.5rem 0;
    color: var(--primary-700);
    font-size: 0.85rem;
    font-weight: 900;
}

.mobile-header-drawer__title {
    margin: 0;
    color: #ffffff;
    /* Was black */
    font-size: 1.25rem;
    font-weight: 900;
}

.mobile-header-drawer__close {
    width: 44px;
    height: 44px;
    border: 3px solid var(--secondary-950);
    border-radius: 0;
    background: #ffffff;
    color: var(--secondary-950);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--secondary-950);
}

.mobile-header-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-header-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-header-drawer__nav-link {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 3px solid var(--secondary-950);
    border-radius: 0;
    background: #ffffff;
    color: var(--secondary-950);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--secondary-950);
}

.mobile-header-drawer__nav-link:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--secondary-950);
}

.mobile-header-drawer__section {
    border: 3px solid var(--secondary-950);
    border-radius: 0;
    background: #ffffff;
    box-shadow: 6px 6px 0px var(--secondary-950);
}

.mobile-header-drawer__section-toggle {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: var(--secondary-950);
    color: #ffffff;
    cursor: pointer;
}

.mobile-header-drawer__section-toggle.is-open {
    border-bottom: 3px solid var(--secondary-950);
}

.mobile-header-drawer__section-toggle-label {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-header-drawer__section-toggle-icon {
    font-size: 1.5rem;
    font-weight: 900;
}

.mobile-header-drawer__featured-list,
.mobile-header-drawer__category-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--secondary-950);
    /* Was yellow */
}

.mobile-header-drawer__featured-link,
.mobile-header-drawer__category-link,
.mobile-header-drawer__view-all {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border: 3px solid var(--secondary-950);
    border-radius: 0;
    background: #ffffff;
    color: var(--secondary-950);
    font-size: 0.95rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    box-shadow: 4px 4px 0px var(--secondary-950);
}

.mobile-header-drawer__view-all {
    background: var(--primary-600);
    color: #ffffff;
    justify-content: center;
}