.mobile-header-wrapper {
    position: relative;
    width: 100%;
}

.mobile-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f7f6f1;
}

.mobile-header-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.mobile-header-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 24px;
}

.mobile-header-toggle svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

.mobile-header-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f7f6f1;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 1px dashed #ccc;
}

.mobile-header-dropdown.is-open {
    display: block;
}

.mobile-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-header-menu li {
    margin: 0;
    padding: 0;
}

.mobile-header-menu a {
    display: block;
    padding: 15px 20px;
    color: #d87e66;
    text-decoration: none;
    border-bottom: 1px dashed #e0e0e0;
    text-align: center;
}

.mobile-header-menu a:hover {
    color: #333;
}