/* Cart Icon Styles */
        .cart-icon {
            position: relative;
            font-size: 1.5rem;
            color: #fff;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #ff6b6b;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
		
		.compact-cart {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0;
        }
        .compact-cart .cart-icon {
            font-size: 1rem;
        }
        .compact-cart .cart-count {
            position: absolute;
            top: -5px;
            right: 9px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #dc3545;
            color: white;
            font-size: 0.65rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
			margin-top:10px;
        }
        
        /* Product Card Styles */
        .item-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .item-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Animation Classes */
        .bounce {
            animation: bounce 0.5s ease;
        }
        
        .pulse {
            animation: pulse 0.5s ease;
        }
        
        .shake {
            animation: shake 0.3s ease;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        /* Flying Item Animation */
        .flying-item {
            position: fixed;
            width: 30px;
            height: 30px;
            background-color: #4e9af1;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1000;
            opacity: 0.8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
        }
        
		.card-img-top {
            width: 250px;
            height: 250px;
            padding: 0px 0px 0px 40px;
        }
		
		
        /* Cart Review Section */
        .cart-review {
            display: none;
            margin-top: 50px;
            border-top: 2px solid #eee;
            padding-top: 30px;
        }
        
        .cart-item-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        .quantity-input {
            width: 60px;
            text-align: center;
        }
        
        .summary-card {
            position: sticky;
            top: 20px;
        }
        
        /* Empty Cart Message */
        .empty-cart-message {
            display: none;
            text-align: center;
            padding: 40px 0;
        }