/**
 * BeautyTech Lite - Mobile Menu Redesign
 * 完全に見直された、使いやすいスマホメニュー実装
 */

/* ========================================
   ヘッダーレイアウトの最適化
======================================== */

.bt-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    position: relative;
    min-height: 70px;
}

/* デスクトップナビゲーション - Mobile First */
.bt-desktop-nav {
    display: none; /* モバイルではデフォルト非表示 */
}

@media (min-width: 769px) {
    .bt-desktop-nav {
        display: flex; /* デスクトップで表示 */
    }
}

/* ========================================
   モバイルハンバーガーボタン（独立配置）
======================================== */

.bt-mobile-menu-toggle {
    /* Mobile First: デフォルトでモバイル表示 */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    
    /* 位置とレイヤー */
    position: relative;
    z-index: 997;
    
    /* スタイル */
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* タッチ操作最適化 */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    outline: none;
}

/* デスクトップで非表示 */
@media (min-width: 769px) {
    .bt-mobile-menu-toggle {
        display: none;
    }
}

/* ハンバーガーライン */
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bt-dark-gray);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* ホバー効果（デスクトップ） */
@media (hover: hover) {
    .bt-mobile-menu-toggle:hover {
        background-color: rgba(200, 123, 163, 0.1);
    }
    
    .bt-mobile-menu-toggle:hover .hamburger-line {
        background-color: var(--bt-rose-gold);
    }
}

/* アクティブ状態（メニュー開いている時）- 3本線→×印に変化 */
.bt-mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.bt-mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.bt-mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ========================================
   オーバーレイ
======================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   モバイルメニュー本体
======================================== */

.bt-mobile-nav {
    /* 基本レイアウト */
    position: fixed;
    top: 0;
    right: 0;
    width: 90vw;
    max-width: 360px;
    height: 100vh;
    z-index: 999;
    
    /* スタイル */
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    
    /* アニメーション */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* レイアウト */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bt-mobile-nav.is-active {
    transform: translateX(0);
}

/* ========================================
   モバイルメニューヘッダー
======================================== */

.bt-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
    flex-shrink: 0;
}

.bt-mobile-nav-header h3 {
    font-family: var(--bt-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--bt-dark-gray);
    margin: 0;
}

/* 閉じるボタン */
.bt-mobile-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.bt-mobile-close:hover {
    background: rgba(200, 123, 163, 0.1);
}

.bt-mobile-close::before,
.bt-mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--bt-dark-gray);
    transition: all 0.2s ease;
}

.bt-mobile-close::before {
    transform: rotate(45deg);
}

.bt-mobile-close::after {
    transform: rotate(-45deg);
}

/* ========================================
   モバイルメニューコンテンツ
======================================== */

.bt-mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

/* メニューリスト */
.bt-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.bt-mobile-menu .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bt-mobile-menu .menu-item:last-child {
    border-bottom: none;
}

/* ホームリンク特別スタイル */
.bt-mobile-menu .menu-item-home {
    background: transparent;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.bt-mobile-menu .menu-item-home a {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    color: var(--bt-dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    gap: 12px;
    transition: all 0.2s ease;
}

.bt-mobile-menu .menu-item-home a:hover,
.bt-mobile-menu .menu-item-home a:focus {
    background: rgba(200, 123, 163, 0.08);
    color: var(--bt-rose-gold);
}

.bt-mobile-menu .menu-item-home .menu-icon {
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* 通常メニュー項目 */
.bt-mobile-menu .menu-item a {
    display: block;
    padding: 20px 24px;
    color: var(--bt-dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    position: relative;
}

.bt-mobile-menu .menu-item a:hover,
.bt-mobile-menu .menu-item a:focus {
    background: rgba(200, 123, 163, 0.08);
    color: var(--bt-rose-gold);
}

/* アクティブ（現在のページ）なメニュー項目 */
.bt-mobile-menu .current-menu-item > a {
    background: rgba(200, 123, 163, 0.12);
    color: var(--bt-rose-gold);
    font-weight: 600;
}

/* 子カテゴリーがアクティブな親メニュー項目 */
.bt-mobile-menu .current-menu-parent > .menu-toggle {
    background: rgba(200, 123, 163, 0.08);
    color: var(--bt-rose-gold);
}

/* アコーディオンボタン */
.bt-mobile-menu .menu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--bt-dark-gray);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}

.bt-mobile-menu .menu-toggle:hover,
.bt-mobile-menu .menu-toggle:focus {
    background: rgba(200, 123, 163, 0.08);
    color: var(--bt-rose-gold);
}

/* 展開状態の親メニュー */
.bt-mobile-menu .menu-toggle[aria-expanded="true"] {
    background: rgba(200, 123, 163, 0.08);
}

.bt-mobile-menu .menu-toggle .toggle-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bt-rose-gold);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(200, 123, 163, 0.3);
    flex-shrink: 0;
}

.bt-mobile-menu .menu-toggle[aria-expanded="true"] .toggle-icon {
    background: var(--bt-dark-gray);
    color: white;
}

/* サブメニュー */
.bt-mobile-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-mobile-menu .sub-menu.is-open {
    max-height: 1000px;
    padding: 8px 0;
}

.bt-mobile-menu .sub-menu .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bt-mobile-menu .sub-menu .menu-item a {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    position: relative;
}

.bt-mobile-menu .sub-menu .menu-item a::before {
    content: "→";
    position: absolute;
    left: 24px;
    color: var(--bt-rose-gold);
    font-weight: bold;
    transition: all 0.2s ease;
}

.bt-mobile-menu .sub-menu .menu-item a:hover::before {
    left: 28px;
}

/* ========================================
   スクロール制御
======================================== */

body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ========================================
   小さな画面での最適化
======================================== */

@media (max-width: 480px) {
    .bt-mobile-nav {
        width: 95vw;
    }
    
    .bt-mobile-menu .menu-item a,
    .bt-mobile-menu .menu-toggle {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .bt-mobile-menu .menu-item-home a {
        padding: 18px;
        font-size: 16px;
    }
    
    .bt-mobile-menu .sub-menu .menu-item a {
        padding: 14px 36px;
        font-size: 14px;
    }
}

/* ========================================
   アクセシビリティ強化
======================================== */

/* フォーカス表示 */
.bt-mobile-menu a:focus,
.bt-mobile-menu button:focus {
    outline: 2px solid var(--bt-rose-gold);
    outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .hamburger-line {
        background-color: #000;
    }
    
    .bt-mobile-menu .menu-item {
        border-bottom-color: #000;
    }
}

/* Reduced motionに対応 */
@media (prefers-reduced-motion: reduce) {
    .bt-mobile-nav,
    .menu-overlay,
    .hamburger-line,
    .bt-mobile-menu .toggle-icon {
        transition: none;
    }
}