
.nav-actions-pc {
    gap: 15px;
}
.icon-trigger-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    padding: 5px;
}
.icon-trigger-btn:hover {
    color: var(--pink);
    transform: scale(1.05);
}
.badge-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--pink);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ===== 🚪 ON-SCREEN DRAWERS LAYER (SLIDE IN/OUT) ===== */
.global-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1999;
}
.global-overlay.active {
    opacity: 1;
    visibility: visible;
}
.side-drawer {
    position: fixed;
    top: 0;
    height: 100%;
    width: 320px;
    max-width: 100%;
    background: #ffffff;
    z-index: 2000;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    transition: transform 0.4s var(--shadow);
    display: flex;
    flex-direction: column;
}
.left-drawer { left: 0; transform: translateX(-100%); }
.right-drawer { right: 0; transform: translateX(100%); }

.side-drawer.active { transform: translateX(0);z-index:99999 }

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drawer-title {
    font-weight: 800;
    font-size: 16px;
    color: var(--dark);
    letter-spacing: 0.5px;
}
.close-drawer-btn {
    font-size: 20px;
    cursor: pointer;
    color: #94a3b8;
}
.close-drawer-btn:hover { color: var(--pink); }

.drawer-content {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* Drawer Item Design */
.drawer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}
.item-img {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.item-details { flex: 1; }
.item-details h6 { font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.item-details p { font-size: 12px; font-weight: 700; color: var(--pink); margin: 0; }
.remove-item-btn { color: #cbd5e1; cursor: pointer; font-size: 14px; }
.remove-item-btn:hover { color: #ff4757; }

/* Drawer Footer Option */
.drawer-footer {
    padding: 20px;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
}
.btn-drawer {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
}
.primary-btn { background: var(--pink); color: white; box-shadow: 0 5px 15px rgba(255, 117, 160, 0.3); }
.primary-btn:hover { transform: translateY(-2px); }
.secondary-btn { background: #e2e8f0; color: var(--dark); }

/* Left Menu Links Style */
.left-drawer .drawer-content a {
    display: block;
    padding: 12px 15px;
    color: #334155;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 5px;
}
.left-drawer .drawer-content a:hover {
    background: #fff1f5;
    color: var(--pink);
}

/* ===== 🖥️ PC DESKTOP PRESETS ===== */
@media (min-width: 768px) {
    .menu-toggle-btn { display: none !important; }
    .mobile-bottom-nav { display: none !important; }
    .desktop-links {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-top: 0px;
        font-size: 14px;
        font-weight: 600;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        padding-top: 10px;
    }
    .desktop-links a { color: #64748b; }
    .desktop-links a:hover, .highlight-link { color: var(--pink) !important; }
}
.pc-header{position: relative;}
/* ===== 📱 MOBILE UI CONFIGS ===== */
@media (max-width: 767px) {
    .desktop-links { display: none !important; }
    header { padding: 12px 5%; d}
    .pc-header{display: none;}
    /* 📱 MOBILE BOTTOM BAR FIXED */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 65px;
        background: #ffffff;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
        z-index: 1998;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
    }
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #64748b;
        font-size: 11px;
        font-weight: 600;
        flex: 1;
        text-align: center;
    }
    .nav-item i { font-size: 18px; margin-bottom: 3px; }
    .nav-item.active { color: var(--pink); }

    /* FLOATING MIDDLE APP SHOP BUTTON */
    .main-shop-btn { position: relative; top: -14px; }
    .shop-icon-circle {
        width: 50px;
        height: 50px;
        background: var(--pink);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(255, 117, 160, 0.4);
        margin-bottom: 3px;
    }
    .shop-icon-circle i { color: #ffffff !important; font-size: 20px; margin: 0; }
    .main-shop-btn span { color: var(--pink); font-weight: 700; }

    .badge-count {
        position: absolute;
        top: -6px;
        right: -10px;
        background: var(--pink);
        color: white;
        font-size: 9px;
        padding: 1px 5px;
        border-radius: 50%;
        font-weight: 700;
    }
}
.remove-item-btn:hover {
    color: #ff4757 !important;
}
.quantity-controller button:hover {
    color: var(--pink) !important;
    transform: scale(1.2);
}
.drawer-item button:hover {
    background: var(--pink) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 8px rgba(255, 117, 160, 0.2);
}