/**
 * Section Toggle — Furniture / Garden Statuary menu switcher
 * Pill-shaped toggle above the main menu; swaps menu lists without reload.
 */

.awd-section-toggle {
    display: flex;
    gap: 0;
    max-width: 290px;
    margin: 20px auto;
    border: 1px solid #fff;
    overflow: hidden;
    background: transparent;
    width: 100%;
}

.awd-section-toggle-btn {
    flex: 1;
    padding: 0.4rem;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.awd-section-toggle-btn.is-active {
    background: #fff;
    color: #1a1a1a;
}

.awd-section-toggle-btn:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.08);
}

.awd-section-toggle-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -2px;
}

/* Menu lists inside the main panel: only the active section's list shows */
.awd-menu-section {
    display: none;
}

.awd-menu-section.is-active {
    display: block;
}
