/* Hildhouse Mobile Menu Styles */

/* Burger Menu Button */
.hildhouse-mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 13px;
    position: relative;
    z-index: 10;
}
.hildhouse-mobile-menu-toggle:hover,
.hildhouse-mobile-menu-toggle:focus,
.hildhouse-mobile-menu-toggle:active {
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.hildhouse-mobile-menu-toggle span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hildhouse-mobile-menu-toggle span:nth-child(1) {
    width: 100%;
}

.hildhouse-mobile-menu-toggle span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

/* Menu Overlay - Hidden since menu is full width */
.hildhouse-mobile-menu-overlay {
    display: none;
}

/* Menu Panel */
.hildhouse-mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EBE4D4;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.hildhouse-mobile-menu-panel.active {
    transform: translateX(0);
}

/* Menu Close Button */
.hildhouse-mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 50%;
    z-index: 10;
}

.hildhouse-mobile-menu-close svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hildhouse-mobile-menu-close:hover {
    color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

/* Menu Content */
.hildhouse-mobile-menu-content {
    flex: 1;
    overflow-y: auto;
}

