/* Hamburger Button */
.hamburger-btn {
    flex-shrink: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}

.hamburger-btn:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hamburger-btn svg {
    width: 22px;
    height: 22px;
    color: #26153b;
}

/* Drawer Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    background: white;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f0ebe5;
}

.drawer-header .drawer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #26153b;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f0eb;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.drawer-close:hover {
    background: #ebe4dc;
}

.drawer-close svg {
    width: 18px;
    height: 18px;
    color: #666;
}

.drawer-nav {
    padding: 12px 0;
    flex: 1;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.drawer-nav a:hover {
    background: #fef5ee;
    color: #26153b;
}

.drawer-nav a.active {
    background: #f5f0eb;
    color: #26153b;
    font-weight: 600;
}

.drawer-nav a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
}

.drawer-nav a.active svg {
    opacity: 1;
}

/* Store links at bottom of drawer */
.drawer-store-links {
    padding: 16px 24px 24px;
    border-top: 1px solid #f0ebe5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #f5f0eb;
    color: #26153b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.drawer-store-badge:hover {
    background: #ebe4dc;
}

.drawer-store-badge svg {
    flex-shrink: 0;
    opacity: 0.7;
}
