/* -----------------------------------------
	Header Menu V2 CSS - Stories Apps Style
	Separate file for menu-specific styling
----------------------------------------- */

/* Remove bullet points from mobile navigation */
.mobile-menu-list {
    list-style: none !important;
}

.mobile-menu-list li {
    list-style: none !important;
}

.mobile-menu-list li::before {
    content: none !important;
}

.mobile-menu-list li::marker {
    display: none !important;
}

/* Sticky Bottom Cart - Stories Apps Style - Mobile Only */
.sticky-bottom-cart {
    display: none!important; /* Hidden by default on desktop */
}

/* Show sticky cart only on mobile devices */
@media (max-width: 768px) {
    .sticky-bottom-cart {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999 !important;
        padding: 15px 20px;
        transform: translateY(100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        margin: 0 !important;
    }

    .sticky-bottom-cart.show {
        transform: translateY(0);
        opacity: 1;
    }

    .sticky-cart-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        margin: 0 auto;
    }

    .cart-info {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
    }

    .cart-icon {
        position: relative;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .cart-icon i {
        font-size: 20px;
        color: #000;
        font-weight: bold;
    }

    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ff4444;
        color: white;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        border: 2px solid #000;
    }

    .cart-details {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .cart-text {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
    }

    .cart-total {
        color: #FFD700;
        font-size: 16px;
        font-weight: bold;
    }

    .sticky-cart-btn {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #000;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        border: none;
        cursor: pointer;
    }

    .sticky-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        color: #000;
        text-decoration: none;
    }

    .sticky-cart-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .sticky-cart-btn:hover i {
        transform: translateX(3px);
    }

    /* Animation for cart appearance */
    @keyframes slideUpFromBottom {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .sticky-bottom-cart.show {
        animation: slideUpFromBottom 0.3s ease-out;
    }
}

/* Mobile responsive adjustments for sticky cart */
@media (max-width: 768px) {
    .sticky-bottom-cart {
        padding: 12px 15px;
    }
    
    .cart-icon {
        width: 45px;
        height: 45px;
    }
    
    .cart-icon i {
        font-size: 18px;
    }
    
    .sticky-cart-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cart-text {
        font-size: 13px;
    }
    
    .cart-total {
        font-size: 15px;
    }
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}