/* Mobile Navigation: Hamburger + Slide-out Drawer */

.pac-hamburger-btn {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    background: rgba(255,255,255,0.92) !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.pac-hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pac-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.pac-nav-overlay.is-open {
    display: block;
}

.pac-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 60px 24px 24px;
}

.pac-mobile-drawer.is-open {
    right: 0;
}

.pac-mobile-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pac-mobile-drawer ul li {
    border-bottom: 1px solid #f0f0f0;
}

.pac-mobile-drawer ul li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

.pac-mobile-drawer ul li a:hover {
    color: #e74c3c;
}

.pac-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.pac-drawer-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.pac-drawer-cart .cart-count {
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .pac-hamburger-btn {
        display: flex !important;
    }
}
