/* Mobile Drawer Styles */
.mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s; backdrop-filter: blur(2px); }
.mobile-drawer-overlay.show { opacity: 1; visibility: visible; }
.mobile-drawer { position: fixed; top: 0; bottom: 0; right: -320px; width: 320px; max-width: 85vw; background: white; z-index: 1001; transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; overflow: hidden; box-shadow: -4px 0 16px rgba(0,0,0,0.1); }
.mobile-drawer.open { right: 0; }
.mobile-drawer-header { padding: 24px 20px 20px; border-bottom: 1px solid var(--light-gray); background: var(--cream); position: relative; }
.mobile-drawer-close { position: absolute; top: 12px; left: 16px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray); }
.mobile-drawer-logo { font-family: 'Bebas Neue', 'Heebo', sans-serif; font-size: 28px; font-weight: 900; letter-spacing: 2px; color: var(--black); margin-bottom: 4px; }
.mobile-drawer-subtitle { font-size: 11px; color: var(--pink); font-weight: 700; letter-spacing: 1px; }

.mobile-drawer-panels { position: relative; flex: 1; overflow: hidden; }
.drawer-panel { position: absolute; inset: 0; overflow-y: auto; background: white; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding-bottom: 40px; }
.drawer-panel.hidden-left { transform: translateX(100%); }
.drawer-panel.hidden-right { transform: translateX(-100%); }

.drawer-panel-header { padding: 16px 20px; border-bottom: 1px solid var(--light-gray); display: flex; align-items: center; gap: 12px; background: #fafafa; position: sticky; top: 0; z-index: 10; }
.drawer-panel-back { background: none; border: none; font-size: 24px; color: var(--black); cursor: pointer; padding: 0 8px; }
.drawer-panel-title { font-size: 16px; font-weight: 800; font-family: 'Bebas Neue', 'Heebo', sans-serif; letter-spacing: 1px; }

.drawer-sub-link { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid #f0f0f0; color: var(--black); text-decoration: none; font-size: 14px; font-weight: 700; background: none; border: none; width: 100%; text-align: right; cursor: pointer; font-family: inherit; }
.drawer-sub-link:hover { background: var(--cream); color: var(--pink); }
.drawer-sub-link-content { display: flex; align-items: center; gap: 12px; }
.mobile-nav-icon { font-size: 18px; }
.drawer-sub-link-arrow { color: var(--gray); font-size: 16px; }
.section-divider { padding: 24px 20px 8px; font-size: 11px; color: var(--gray); font-weight: 800; background: #fafafa; letter-spacing: 1px; }
